.aboulay-trade-wrap{
  max-width:1200px;
  margin:40px auto;
  padding:20px;
}

.aboulay-trade-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:24px;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  margin-bottom:24px;
}

.aboulay-trade-heading{
  text-align:center;
  margin-bottom:28px;
}

.aboulay-trade-heading h2{
  margin:0 0 10px;
  font-size:36px;
  color:#13233a;
}

.aboulay-trade-heading p{
  margin:0 auto;
  max-width:860px;
  color:#4b5563;
  line-height:1.7;
}

.aboulay-trade-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.aboulay-trade-item{
  background:#fafafa;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.aboulay-trade-item h3{
  margin:0;
  font-size:22px;
  color:#13233a;
}

.aboulay-trade-meta{
  font-size:14px;
  color:#0f766e;
  font-weight:700;
}

.aboulay-trade-text{
  color:#4b5563;
  line-height:1.7;
}

.aboulay-trade-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.aboulay-btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  background:#0f766e;
  color:#fff !important;
  text-decoration:none;
  border:none;
  cursor:pointer;
  font-weight:700;
}

.aboulay-btn.alt{
  background:#111827;
}

.aboulay-btn.warn{
  background:#b91c1c;
}

.aboulay-form{
  display:grid;
  gap:14px;
}

.aboulay-form input,
.aboulay-form select,
.aboulay-form textarea{
  width:100%;
  box-sizing:border-box;
  padding:14px 16px;
  border:1px solid #d1d5db;
  border-radius:12px;
}

.aboulay-form .row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.aboulay-form .row3{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:14px;
}

.aboulay-search-bar{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr auto;
  gap:12px;
}

.aboulay-notice{
  padding:12px 14px;
  border-radius:12px;
  margin:14px 0;
  font-weight:600;
}

.aboulay-success{
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

.aboulay-error{
  background:#fef2f2;
  color:#991b1b;
  border:1px solid #fecaca;
}

.aboulay-trade-details{
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
  padding:12px 14px;
}

.aboulay-trade-details summary{
  cursor:pointer;
  font-weight:700;
  color:#13233a;
}

@media (max-width:900px){
  .aboulay-form .row2,
  .aboulay-form .row3,
  .aboulay-search-bar{
    grid-template-columns:1fr;
  }

  .aboulay-trade-heading h2{
    font-size:30px;
  }
}