/* ==========================================================
   JAMILYAH — NATIONAL DAY 96 / V2
   استبدل كود CSS السابق بالكامل بهذا الكود
   ========================================================== */

:root{
  --j96-green:#1F4E34;
  --j96-green-2:#173F30;
  --j96-brown:#3B2A20;
  --j96-gold:#A6845D;
  --j96-sand:#D8C6A5;
  --j96-cream:#F3EEE6;
  --j96-white:#FFFDF8;
}

body{
  background:var(--j96-cream) !important;
}

/* الهوية العامة */
.s-button-primary,
.btn-primary,
button[type="submit"],
salla-button[fill="solid"]::part(button){
  background:var(--j96-green) !important;
  border-color:var(--j96-green) !important;
  color:#fff !important;
  border-radius:10px !important;
}

.product-card,
.s-product-card-entry,
.product-entry{
  border-radius:14px !important;
  overflow:hidden !important;
  background:#fff !important;
  border:1px solid rgba(59,42,32,.10) !important;
  box-shadow:0 10px 28px rgba(59,42,32,.08) !important;
}

.product-card:hover,
.s-product-card-entry:hover,
.product-entry:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(59,42,32,.13) !important;
}

.product-card .price,
.s-product-card-entry .price,
.product-entry .price{
  color:var(--j96-green) !important;
  font-weight:800 !important;
}

/* نخفي النسخة القديمة التي أضافها كودنا السابق */
#jamliyah-nd96,
.j-nd96-chips{
  display:none !important;
}

/* الحملة الجديدة */
#j96-campaign{
  direction:rtl;
  max-width:1480px;
  margin:0 auto;
  padding:0 14px 28px;
  color:var(--j96-brown);
}

#j96-campaign *{
  box-sizing:border-box;
}

.j96-hero{
  position:relative;
  overflow:hidden;
  border-radius:0;
  background:#eadbc8;
  box-shadow:0 12px 32px rgba(59,42,32,.08);
}

.j96-hero img{
  display:block;
  width:100%;
  height:auto;
}

.j96-actions{
  position:absolute;
  inset:auto 7% 11% auto;
  display:flex;
  gap:10px;
  align-items:center;
}

.j96-shop,
.j96-copy{
  border:0;
  border-radius:9px;
  padding:12px 18px;
  font-weight:800;
  cursor:pointer;
  font-family:inherit;
}

.j96-shop{
  background:var(--j96-green);
  color:#fff !important;
  text-decoration:none;
}

.j96-copy{
  background:rgba(255,253,248,.94);
  color:var(--j96-green);
  border:1px solid rgba(31,78,52,.25);
}

.j96-copy.is-copied::after{
  content:" ✓ تم النسخ";
}

.j96-benefits{
  margin-top:14px;
  border-radius:14px;
  overflow:hidden;
  background:var(--j96-brown);
}

.j96-benefits img{
  display:block;
  width:100%;
  height:auto;
}

.j96-content{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 255px;
  gap:14px;
  margin-top:14px;
  align-items:stretch;
}

.j96-categories,
.j96-promo{
  overflow:hidden;
  border-radius:14px;
  background:#eadbc8;
}

.j96-categories img,
.j96-promo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.j96-bottom{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:14px;
  margin-top:14px;
}

.j96-bottom > div{
  overflow:hidden;
  border-radius:12px;
}

.j96-bottom img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* عنوان قسم المنتجات الحقيقي بعد الحملة */
.j96-products-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:26px 0 15px;
  color:var(--j96-brown);
  font-size:22px;
  font-weight:900;
}

.j96-products-title:before,
.j96-products-title:after{
  content:"";
  height:1px;
  width:min(220px,18vw);
  background:linear-gradient(90deg,transparent,var(--j96-gold));
}

.j96-products-title:after{
  transform:scaleX(-1);
}

/* موبايل */
@media (max-width:767px){
  #j96-campaign{
    padding:0 0 20px;
  }

  .j96-hero{
    border-radius:0;
  }

  .j96-hero img{
    width:145%;
    max-width:none;
    transform:translateX(15%);
  }

  .j96-actions{
    position:static;
    padding:12px;
    justify-content:center;
    background:#eadbc8;
  }

  .j96-shop,
  .j96-copy{
    flex:1;
    text-align:center;
    padding:11px 8px;
    font-size:13px;
  }

  .j96-benefits{
    margin:10px 10px 0;
  }

  .j96-content{
    grid-template-columns:1fr;
    margin:10px 10px 0;
    gap:10px;
  }

  .j96-promo{
    display:none;
  }

  .j96-bottom{
    grid-template-columns:1fr;
    margin:10px 10px 0;
    gap:10px;
  }

  .j96-products-title{
    font-size:18px;
    margin:20px 12px 12px;
  }
}