:root{
  --bg:#050505;
  --bg-soft:#0b0a07;
  --panel:#0d0b08;
  --panel-2:#131008;
  --gold:#f2a91f;
  --gold-2:#ffd36a;
  --gold-dark:#9a6207;
  --text:#f8f1df;
  --muted:#cfc6b2;
  --green:#2d7a19;
  --green-dark:#16580e;
  --line:rgba(242,169,31,.42);
  --shadow:0 24px 80px rgba(0,0,0,.55);
  --radius:24px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(242,169,31,.13), transparent 26%),
    radial-gradient(circle at 0% 35%, rgba(43,122,25,.20), transparent 24%),
    linear-gradient(180deg,#000 0%,#080806 45%,#000 100%);
  color:var(--text);
  font-family:Georgia, 'Times New Roman', serif;
  line-height:1.6;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.34;
  background-image:
    linear-gradient(30deg, rgba(242,169,31,.055) 12%, transparent 12.5%, transparent 87%, rgba(242,169,31,.055) 87.5%, rgba(242,169,31,.055)),
    linear-gradient(150deg, rgba(242,169,31,.055) 12%, transparent 12.5%, transparent 87%, rgba(242,169,31,.055) 87.5%, rgba(242,169,31,.055));
  background-size:52px 92px;
  background-position:0 0, 26px 46px;
  mask-image:linear-gradient(90deg,transparent 0,#000 12%,#000 88%,transparent 100%);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(0,0,0,.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(242,169,31,.32);
}
.nav-wrap{
  max-width:var(--max);
  margin:auto;
  display:flex;
  align-items:center;
  gap:24px;
  padding:14px 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:270px;
}
.brand img{
  width:70px;
  height:70px;
  object-fit:cover;
  border-radius:50%;
  border:1px solid var(--gold);
  box-shadow:0 0 28px rgba(242,169,31,.28);
}
.brand-ar{
  display:block;
  color:var(--gold-2);
  font-size:28px;
  font-weight:700;
  line-height:1.05;
  direction:rtl;
}
.brand-en{
  display:block;
  color:var(--gold);
  letter-spacing:.09em;
  font-size:14px;
  text-transform:uppercase;
}
.nav-links{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  font-family:Arial, sans-serif;
  font-size:14px;
  text-transform:uppercase;
}
.nav-links a{
  color:#fff;
  padding:10px 0;
  border-bottom:2px solid transparent;
  opacity:.93;
}
.nav-links a:hover,.nav-links a.active{
  color:var(--gold-2);
  border-color:var(--gold);
}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(242,169,31,.08);
  color:var(--gold-2);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:12px 20px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  font-family:Arial, sans-serif;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.02em;
  cursor:pointer;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.08)}
.btn-whatsapp{background:linear-gradient(180deg,#3f8f2e,#16580e);color:#fff;box-shadow:0 14px 28px rgba(21,93,22,.35)}
.btn-gold{background:linear-gradient(180deg,#ffd36a,#df8b18);color:#130d03;box-shadow:0 14px 28px rgba(242,169,31,.25)}
.btn-outline{background:rgba(242,169,31,.06);border:1px solid var(--gold);color:var(--gold-2)}
.btn small{display:block;font-weight:600;font-size:11px;line-height:1.1;text-transform:none;letter-spacing:0}
.btn strong{display:block;font-size:18px;line-height:1}

.container{max-width:var(--max);margin:auto;padding:0 20px}
.section{padding:72px 0;position:relative}
.kicker{
  color:var(--gold);
  font-family:Arial, sans-serif;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
}
.gold-title{
  margin:8px 0 10px;
  color:var(--gold-2);
  font-size:clamp(42px,7vw,86px);
  line-height:.94;
  text-transform:uppercase;
  letter-spacing:.04em;
  text-shadow:0 2px 0 #4c2d02,0 0 24px rgba(242,169,31,.28);
}
.arabic-title{
  direction:rtl;
  font-size:clamp(50px,8vw,100px);
  color:var(--gold-2);
  margin:0;
  line-height:1.05;
  text-shadow:0 6px 35px rgba(242,169,31,.25);
}
.subtitle{color:var(--gold);font-size:clamp(20px,2.5vw,31px);line-height:1.35;margin:0 0 18px}
.lead{font-size:20px;color:#fff;max-width:720px;margin:0 auto 26px}
.text-muted{color:var(--muted)}
.center{text-align:center}

.hero{padding:62px 0 34px;overflow:hidden}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
}
.hero-copy{position:relative;z-index:2;text-align:center}
.hero-copy p{font-size:21px;max-width:670px;margin:20px auto;color:#f5ead0}
.cta-row{display:flex;gap:16px;align-items:center;justify-content:center;flex-wrap:wrap;margin:30px 0}
.hero-visual{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.arch-card{
  position:absolute;
  inset:34px 4px 20px 80px;
  border:2px solid rgba(242,169,31,.72);
  border-radius:48% 48% 18px 18px;
  background:radial-gradient(circle at 50% 18%,rgba(242,169,31,.42),rgba(0,0,0,.72) 28%,rgba(0,0,0,.2) 68%);
  box-shadow:inset 0 0 60px rgba(242,169,31,.12),0 0 50px rgba(242,169,31,.12);
}
.product-frame{
  position:relative;
  width:min(430px,88%);
  padding:18px;
  border-radius:24px;
  background:linear-gradient(140deg,rgba(242,169,31,.20),rgba(0,0,0,.25));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.product-frame img{border-radius:18px;object-fit:cover;max-height:620px;width:100%}
.badge-round{
  position:absolute;
  right:-18px;
  bottom:86px;
  width:158px;
  height:158px;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-align:center;
  color:var(--gold-2);
  font-family:Arial,sans-serif;
  font-weight:800;
  text-transform:uppercase;
  background:#151008;
  border:2px solid var(--gold);
  box-shadow:0 0 26px rgba(242,169,31,.25);
}

.quick-features,.info-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:rgba(0,0,0,.58);
  box-shadow:var(--shadow);
}
.quick-features .feature,.info-strip .strip-item{
  padding:22px;
  border-right:1px solid rgba(242,169,31,.25);
  min-height:122px;
}
.quick-features .feature:last-child,.info-strip .strip-item:last-child{border-right:0}
.icon-circle{
  width:70px;height:70px;border-radius:50%;border:2px solid var(--gold);display:grid;place-items:center;color:var(--gold);font-size:30px;margin-bottom:14px;background:rgba(242,169,31,.04)
}
.feature h3,.strip-item h3,.card h3{margin:0 0 8px;color:var(--gold);font-size:20px;line-height:1.2;text-transform:uppercase}
.feature p,.strip-item p,.card p{margin:0;color:#f3eadb;font-size:15px}

.page-hero{padding:54px 0 18px;text-align:center}
.page-hero .gold-title{font-size:clamp(44px,6vw,76px)}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}
.panel{
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(14,11,5,.92),rgba(0,0,0,.68));
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}
.panel p{font-size:18px;color:#f6ead2;margin:0 0 18px}
.panel p:last-child{margin-bottom:0}
.showcase-img{border-radius:22px;border:1px solid var(--line);box-shadow:var(--shadow);overflow:hidden;background:#000}
.showcase-img img{width:100%;height:100%;object-fit:cover}

.card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:32px}
.card{
  position:relative;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(16,13,8,.94),rgba(0,0,0,.74));
  border-radius:18px;
  padding:26px 20px;
  min-height:220px;
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}
.card .icon-circle{margin:0 auto 18px}
.card.center{text-align:center}
.card:hover{border-color:rgba(255,211,106,.85);transform:translateY(-3px);transition:.2s ease}

.product-section{padding:48px 0 66px}
.product-layout{display:grid;grid-template-columns:.95fr 1.05fr;gap:42px;align-items:start}
.product-gallery{position:sticky;top:112px}
.main-product-image{border:1px solid var(--line);border-radius:24px;background:#090806;padding:16px;box-shadow:var(--shadow)}
.main-product-image img{border-radius:16px;width:100%;max-height:680px;object-fit:cover}
.gallery-row{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:14px}
.gallery-thumb{padding:0;border:1px solid var(--line);background:#000;border-radius:12px;overflow:hidden;cursor:pointer;opacity:.82;transition:.2s ease}
.gallery-thumb:hover,.gallery-thumb.active{opacity:1;border-color:var(--gold-2);box-shadow:0 0 0 2px rgba(242,169,31,.18)}
.gallery-row img{height:96px;width:100%;object-fit:cover;background:#000}
.price-box{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin:22px 0;
  padding:20px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.price-label{font-family:Arial,sans-serif;font-size:13px;text-transform:uppercase;color:#d8bd83}
.old-price{font-size:30px;color:#fff;text-decoration:line-through;text-decoration-color:#ff3a3a;text-decoration-thickness:3px}
.new-price{font-size:42px;color:var(--gold-2);font-weight:800;line-height:1}
.size-pill{display:inline-flex;border:1px solid var(--gold);border-radius:8px;padding:8px 18px;color:var(--gold-2);font-size:22px;margin-top:8px}
.notice{
  border:1px solid rgba(64,143,46,.65);
  background:linear-gradient(180deg,rgba(45,122,25,.18),rgba(0,0,0,.45));
  color:#efffe9;
  padding:15px 18px;
  border-radius:14px;
  font-family:Arial,sans-serif;
  margin:18px 0;
}
.bullet-list{padding:0;margin:18px 0;list-style:none;display:grid;gap:10px}
.bullet-list li{position:relative;padding-left:30px;color:#f8ecd3;font-size:17px}
.bullet-list li::before{content:"✦";position:absolute;left:0;color:var(--gold)}

.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-grid .full{grid-column:1/-1}
.input,textarea,select{
  width:100%;
  min-height:54px;
  border:1px solid rgba(242,169,31,.55);
  background:#050505;
  color:#fff;
  border-radius:10px;
  padding:14px 16px;
  font-family:Arial,sans-serif;
  font-size:15px;
  outline:none;
}
textarea{min-height:160px;resize:vertical}
.input:focus,textarea:focus,select:focus{border-color:var(--gold-2);box-shadow:0 0 0 3px rgba(242,169,31,.14)}
.contact-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:32px;align-items:start}
.contact-item{display:flex;gap:16px;margin-bottom:22px;align-items:flex-start}
.contact-item .icon-circle{width:62px;height:62px;flex:0 0 62px;margin:0;font-size:25px}
.contact-item h3{color:var(--gold);margin:0 0 4px;font-family:Arial,sans-serif;font-size:17px;text-transform:none}
.contact-item p{margin:0;color:#fff;font-size:17px;line-height:1.45}
.form-note{color:var(--muted);font-family:Arial,sans-serif;font-size:13px;margin-top:14px;text-align:center}

.order-card{max-width:850px;margin:0 auto}
.order-summary{display:grid;grid-template-columns:110px 1fr;gap:20px;align-items:center;margin-bottom:22px;padding-bottom:20px;border-bottom:1px solid var(--line)}
.order-summary img{width:110px;height:130px;object-fit:cover;border-radius:12px;border:1px solid var(--line)}

.site-footer{border-top:1px solid var(--line);background:#000;padding:24px 0;color:#f4ead7}
.footer-grid{max-width:var(--max);margin:auto;padding:0 20px;display:grid;grid-template-columns:1fr auto 1fr;gap:20px;align-items:center}
.footer-logo{display:flex;align-items:center;gap:12px}
.footer-logo img{width:48px;height:48px;border-radius:10px;border:1px solid var(--gold);object-fit:cover}
.footer-center{text-align:center;color:#fff;font-size:17px}
.socials{display:flex;justify-content:flex-end;gap:12px}
.socials a{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;font-family:Arial,sans-serif;font-weight:800;background:#111;border:1px solid var(--line)}
.socials a.whatsapp{background:#1f8f2e;border-color:#1f8f2e}
.socials a.order{background:var(--gold);color:#111;border-color:var(--gold)}

.upload-box{
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  background:rgba(0,0,0,.55);
  margin-top:28px;
  font-family:Arial,sans-serif;
  color:#f5ead4;
}
.upload-box pre{white-space:pre-wrap;margin:0;color:#ffd36a;font-size:14px;line-height:1.55}

@media(max-width:1050px){
  .nav-wrap{flex-wrap:wrap;justify-content:center}
  .brand{min-width:auto;flex:1}
  .nav-links{order:3;flex-basis:100%;justify-content:center;flex-wrap:wrap;gap:16px}
  .header-actions{margin-left:auto}
  .hero-grid,.two-col,.product-layout,.contact-layout{grid-template-columns:1fr}
  .product-gallery{position:static}
  .hero-visual{min-height:auto}
  .arch-card{display:none}
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .quick-features,.info-strip{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .nav-wrap{padding:12px 14px}
  .brand img{width:56px;height:56px}
  .brand-ar{font-size:22px}
  .brand-en{font-size:12px}
  .header-actions{width:100%;justify-content:center;flex-wrap:wrap}
  .btn{width:100%;max-width:330px}
  .section{padding:46px 0}
  .hero{padding-top:36px}
  .arabic-title{font-size:46px}
  .gold-title{font-size:42px}
  .hero-copy p,.lead{font-size:18px}
  .quick-features,.info-strip,.card-grid,.price-box,.form-grid{grid-template-columns:1fr}
  .quick-features .feature,.info-strip .strip-item{border-right:0;border-bottom:1px solid rgba(242,169,31,.25)}
  .quick-features .feature:last-child,.info-strip .strip-item:last-child{border-bottom:0}
  .form-grid .full{grid-column:auto}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-logo,.socials{justify-content:center}
  .gallery-row{grid-template-columns:repeat(2,1fr)}
  .badge-round{right:8px;bottom:20px;width:125px;height:125px;font-size:14px}
}


/* Final mobile store layout */
@media(max-width:900px){
  .site-header{position:sticky;top:0}
  .nav-wrap{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:12px;
    padding:10px 14px;
  }
  .brand{min-width:0;gap:10px;flex:initial}
  .brand img{width:54px;height:54px}
  .brand-ar{font-size:21px}
  .brand-en{font-size:11px;letter-spacing:.07em}
  .menu-toggle{display:inline-grid;place-items:center;justify-self:end}
  .nav-links,
  .header-actions{
    display:none;
    grid-column:1/-1;
    width:100%;
  }
  .site-header.menu-open .nav-links,
  .site-header.menu-open .header-actions{display:flex}
  .site-header.menu-open .nav-links{
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:rgba(10,8,4,.98);
    border:1px solid var(--line);
    border-radius:16px;
    padding:8px;
    margin-top:4px;
  }
  .site-header.menu-open .nav-links a{
    padding:12px 14px;
    border-bottom:1px solid rgba(242,169,31,.18);
  }
  .site-header.menu-open .nav-links a:last-child{border-bottom:0}
  .site-header.menu-open .header-actions{flex-direction:column;gap:10px}
  .site-header.menu-open .header-actions .btn{width:100%;max-width:none}
  .hero-grid,.two-col,.product-layout,.contact-layout{grid-template-columns:1fr;gap:28px}
  .product-gallery{position:static;top:auto}
  .hero-copy{text-align:center}
}

@media(max-width:720px){
  .container{padding:0 14px}
  .page-hero{padding:34px 0 10px}
  .page-hero .gold-title,.gold-title{font-size:38px;line-height:1.04}
  .arabic-title{font-size:44px}
  .subtitle{font-size:20px}
  .lead,.hero-copy p,.panel p{font-size:16px;line-height:1.65}
  .hero{padding:30px 0 22px}
  .hero-visual{margin-top:8px}
  .product-frame{width:100%;padding:10px;border-radius:18px}
  .product-frame img{max-height:520px;object-fit:cover}
  .quick-features,.info-strip,.card-grid,.price-box,.form-grid{grid-template-columns:1fr}
  .card-grid{gap:14px}
  .card,.panel{padding:22px 16px;border-radius:18px}
  .product-section{padding:26px 0 42px}
  .main-product-image{padding:10px;border-radius:18px}
  .main-product-image img{max-height:560px;object-fit:contain;background:#060606}
  .gallery-row{grid-template-columns:repeat(4,1fr);gap:8px}
  .gallery-thumb{border-radius:10px}
  .gallery-row img{height:74px}
  .price-box{gap:14px;padding:16px;margin:18px 0}
  .old-price{font-size:26px}
  .new-price{font-size:36px}
  .form-grid{gap:12px}
  .input,textarea,select{font-size:16px;min-height:52px}
  .btn{width:100%;max-width:none;min-height:52px}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-logo,.socials{justify-content:center}
  .showcase-img img{width:100%;height:auto;object-fit:cover}
}

@media(max-width:430px){
  .brand-ar{font-size:19px}
  .brand-en{font-size:10px}
  .page-hero .gold-title,.gold-title{font-size:34px}
  .arabic-title{font-size:38px}
  .gallery-row img{height:64px}
  .badge-round{width:112px;height:112px;font-size:12px}
}

/* Latest responsive polish */
.header-actions .btn-gold span{white-space:nowrap}
.header-actions .btn{padding-left:16px;padding-right:16px}
.product-gallery .main-product-image{width:100%}
.gallery-thumb img{display:block}

@media(max-width:720px){
  .gallery-row{
    display:flex;
    overflow-x:auto;
    gap:10px;
    padding:2px 2px 8px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .gallery-thumb{
    flex:0 0 82px;
    scroll-snap-align:start;
  }
  .gallery-row img{height:82px}
  .product-layout{gap:22px}
  .product-gallery{order:1}
  .product-layout .panel{order:2}
  .cta-row{gap:10px;margin:20px 0}
}

@media(max-width:380px){
  .gallery-thumb{flex-basis:74px}
  .gallery-row img{height:74px}
}


/* FINAL HEADER + PRODUCT GALLERY CORRECTIONS */
.site-header .nav-wrap{
  flex-wrap:nowrap;
  max-width:1360px;
  gap:16px;
}
.nav-links{
  white-space:nowrap;
  flex-wrap:nowrap;
  gap:16px;
  font-size:13px;
}
.nav-links a,
.header-actions .btn,
.brand-en{white-space:nowrap;}
.header-actions{flex:0 0 auto;}
.btn-order-now{
  gap:10px;
  padding-left:18px;
  padding-right:18px;
}
.btn-order-now span{white-space:nowrap;}
.btn-icon{
  width:22px;
  height:22px;
  display:block;
  flex:0 0 22px;
}
.product-gallery.two-images .gallery-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(120px,1fr));
  gap:12px;
  overflow:visible;
  padding:0;
}
.product-gallery.two-images .gallery-thumb{flex:auto;}
.main-product-image img{
  object-fit:contain;
  background:#060606;
  image-rendering:auto;
}
.product-gallery.two-images .gallery-row img{
  height:110px;
  object-fit:contain;
  background:#070707;
}
@media(max-width:1120px){
  .site-header{position:sticky;top:0;}
  .nav-wrap{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:12px;
    padding:10px 14px;
    max-width:var(--max);
  }
  .brand{min-width:0;gap:10px;flex:initial;}
  .brand img{width:54px;height:54px;}
  .brand-ar{font-size:21px;}
  .brand-en{font-size:11px;letter-spacing:.07em;}
  .menu-toggle{display:inline-grid;place-items:center;justify-self:end;}
  .nav-links,
  .header-actions{display:none;grid-column:1/-1;width:100%;}
  .site-header.menu-open .nav-links,
  .site-header.menu-open .header-actions{display:flex;}
  .site-header.menu-open .nav-links{
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:rgba(10,8,4,.98);
    border:1px solid var(--line);
    border-radius:16px;
    padding:8px;
    margin-top:4px;
    white-space:normal;
  }
  .site-header.menu-open .nav-links a{
    padding:12px 14px;
    border-bottom:1px solid rgba(242,169,31,.18);
    white-space:normal;
  }
  .site-header.menu-open .nav-links a:last-child{border-bottom:0;}
  .site-header.menu-open .header-actions{flex-direction:column;gap:10px;}
  .site-header.menu-open .header-actions .btn{width:100%;max-width:none;}
}
@media(min-width:1121px){
  .menu-toggle{display:none!important;}
  .nav-wrap{display:flex;}
  .nav-links,.header-actions{display:flex!important;}
}
@media(max-width:720px){
  .product-gallery.two-images .gallery-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    overflow:visible;
    gap:10px;
    padding:0;
  }
  .product-gallery.two-images .gallery-row img{height:96px;}
  .btn-icon{width:22px;height:22px;flex-basis:22px;}
}


/* Pricing and final mobile header updates */
.price-box-offers{grid-template-columns:1fr 1.2fr 1.35fr;}
.deal-line{color:var(--gold-2);font-size:22px;font-weight:800;line-height:1.45;margin-top:4px;}
.order-offers{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:0 0 22px;}
.order-offers div{border:1px solid var(--line);border-radius:14px;padding:14px;background:rgba(242,169,31,.06);}
.order-offers strong{display:block;color:var(--gold-2);font-family:Arial,sans-serif;text-transform:uppercase;font-size:15px;margin-bottom:4px;}
.order-offers span{display:block;color:#f8ecd3;font-size:15px;line-height:1.45;}
.btn-order-now span{white-space:nowrap;}
@media(max-width:1120px){
  .site-header .header-actions{display:flex;grid-column:1/-1;width:100%;justify-content:center;margin:0;}
  .site-header .header-actions .btn{width:100%;max-width:390px;white-space:nowrap;}
  .site-header .nav-links{display:none;grid-column:1/-1;width:100%;}
  .site-header.menu-open .nav-links{display:flex;}
}
@media(max-width:720px){
  .price-box-offers,.order-offers{grid-template-columns:1fr;}
  .deal-line{font-size:20px;}
}


/* Latest mobile/order updates */
.header-actions .btn-order-now span{white-space:nowrap;}
.home-product-slider{overflow:hidden;}
.home-product-slider .home-slide{
  position:absolute;
  inset:18px;
  width:calc(100% - 36px);
  height:calc(100% - 36px);
  object-fit:cover;
  border-radius:18px;
  opacity:0;
  transition:opacity .65s ease;
}
.home-product-slider .home-slide.active{opacity:1;}
.home-product-slider .badge-round{z-index:3;}
.deal-line.best-deal{
  display:inline-block;
  padding:8px 10px;
  margin:4px 0;
  border-radius:10px;
  background:linear-gradient(180deg,rgba(45,122,25,.45),rgba(0,0,0,.25));
  border:1px solid rgba(104,225,82,.65);
  color:#c9ffb7;
}
.deal-line.best-deal span{font-size:11px;color:#fff;background:#2d7a19;border-radius:999px;padding:3px 7px;margin-left:6px;white-space:nowrap;}
.order-offers{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:0 0 22px;
}
.order-offers > div{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  background:rgba(0,0,0,.45);
  font-family:Arial,sans-serif;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.order-offers strong{color:var(--gold-2);font-size:16px;text-transform:uppercase;}
.order-offers span{color:#fff;font-size:13px;line-height:1.35;}
.order-offers em{font-style:normal;color:#c9ffb7;font-size:12px;font-weight:800;text-transform:uppercase;}
.order-offers .featured-offer,
.order-offers .selected-offer{
  border-color:#67d552;
  box-shadow:0 0 0 2px rgba(103,213,82,.20),0 12px 30px rgba(45,122,25,.20);
  background:linear-gradient(180deg,rgba(45,122,25,.33),rgba(0,0,0,.55));
}
.order-total-card{
  margin-top:16px;
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(103,213,82,.58);
  background:linear-gradient(180deg,rgba(45,122,25,.20),rgba(0,0,0,.46));
  font-family:Arial,sans-serif;
}
.order-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.order-total-row span{color:#dfd5c0;}
.order-total-row strong{color:var(--gold-2);font-size:18px;text-align:right;}
.order-total-row.total{border-bottom:0;margin-top:5px;}
.order-total-row.total strong{font-size:26px;color:#c9ffb7;}
.order-total-card p{margin:10px 0 0;color:#c9ffb7;font-size:13px;}

@media(max-width:1100px){
  .nav-wrap{
    grid-template-columns:minmax(0,1fr) auto auto !important;
  }
  .header-actions{
    display:flex !important;
    grid-column:auto !important;
    width:auto !important;
    justify-self:end;
    margin-left:0;
  }
  .header-actions .btn-order-now{
    width:auto !important;
    max-width:none !important;
    min-height:44px;
    padding:9px 12px;
    font-size:12px;
    line-height:1;
    white-space:nowrap;
  }
  .nav-links{
    display:none !important;
    grid-column:1/-1;
    width:100%;
  }
  .site-header.menu-open .nav-links{display:flex !important;}
  .site-header.menu-open .header-actions{display:flex !important;flex-direction:row !important;width:auto !important;}
}
@media(max-width:720px){
  .brand{gap:8px;}
  .brand img{width:46px;height:46px;}
  .brand-ar{font-size:18px;}
  .brand-en{font-size:9.5px;letter-spacing:.05em;}
  .menu-toggle{width:42px;height:42px;font-size:24px;}
  .header-actions .btn-order-now{font-size:11.5px;padding:8px 10px;min-height:42px;}
  .order-offers{grid-template-columns:repeat(2,1fr);}
  .order-total-row strong{font-size:16px;}
  .order-total-row.total strong{font-size:22px;}
}
@media(max-width:390px){
  .brand-ar{font-size:16px;}
  .brand-en{display:none;}
  .header-actions .btn-order-now{font-size:10.5px;padding:7px 8px;}
  .menu-toggle{width:38px;height:38px;}
}


/* Mobile home video and hero slider */
.mobile-video-card{display:none; width:100%; margin:0 0 14px; border:1px solid var(--line); border-radius:20px; overflow:hidden; background:#000; box-shadow:var(--shadow);}
.mobile-home-video{display:block; width:100%; height:auto; max-height:420px; object-fit:cover; background:#000;}
.home-product-slider{position:relative; min-height:520px; display:flex; align-items:center; justify-content:center; overflow:hidden;}
.home-product-slider .home-slide{position:absolute; inset:18px; width:calc(100% - 36px); height:calc(100% - 36px); object-fit:contain; border-radius:18px; opacity:0; transition:opacity .8s ease; background:#050505;}
.home-product-slider .home-slide.active{opacity:1;}
.home-product-slider .badge-round{z-index:4;}
@media(min-width:721px){
  .mobile-video-card{display:none !important;}
}
@media(max-width:720px){
  .hero-visual{display:block;}
  .mobile-video-card{display:block;}
  .product-frame.home-product-slider{width:100%; padding:10px; min-height:360px;}
  .home-product-slider .home-slide{inset:10px; width:calc(100% - 20px); height:calc(100% - 20px); object-fit:contain;}
  .home-product-slider .badge-round{right:8px; bottom:18px;}
}


/* Home video only layout and updated product/order pages */
.home-video-section{padding:34px 0 44px;}
.home-video-wrap{width:100%;max-width:980px;margin:0 auto;border:1px solid var(--line);border-radius:22px;overflow:hidden;background:#000;box-shadow:var(--shadow);}
.home-main-video{display:block;width:100%;height:auto;max-height:none;object-fit:contain;background:#000;}
.equal-product-image{aspect-ratio:1023/1537;display:flex;align-items:center;justify-content:center;}
.equal-product-image img{width:100%;height:100%;object-fit:contain;}
.two-deals-only{grid-template-columns:1fr 1.15fr 1.15fr;}
.order-offers.two-offers{grid-template-columns:repeat(2,1fr);}
@media(max-width:720px){
  .home-video-section{padding:16px 0 24px;}
  .home-video-wrap{border-radius:16px;}
  .home-main-video{width:100%;height:auto;max-height:none;object-fit:contain;}
  .two-deals-only,.order-offers.two-offers{grid-template-columns:1fr;}
  .equal-product-image{aspect-ratio:1023/1537;}
}


/* Cash on delivery highlight */
.cod-highlight{
  margin:0 0 18px;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid rgba(103,213,82,.75);
  background:linear-gradient(180deg,rgba(45,122,25,.38),rgba(0,0,0,.42));
  color:#c9ffb7;
  font-family:Arial,sans-serif;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  text-align:center;
  box-shadow:0 0 0 2px rgba(103,213,82,.12),0 14px 32px rgba(45,122,25,.22);
}
@media(max-width:720px){
  .cod-highlight{font-size:14px;padding:12px 14px;}
}

/* Searchable Pakistan city dropdown */
.city-autocomplete{
  position:relative;
  width:100%;
}
.city-suggestions{
  display:none;
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 6px);
  z-index:50;
  max-height:240px;
  overflow:auto;
  border:1px solid rgba(242,169,31,.65);
  border-radius:12px;
  background:#050505;
  box-shadow:0 18px 45px rgba(0,0,0,.55);
  padding:6px;
}
.city-suggestions.show{display:block;}
.city-suggestions button{
  width:100%;
  display:block;
  text-align:left;
  border:0;
  background:transparent;
  color:#fff;
  font-family:Arial,sans-serif;
  font-size:15px;
  padding:11px 12px;
  border-radius:8px;
  cursor:pointer;
}
.city-suggestions button:hover,
.city-suggestions button:focus{
  background:rgba(242,169,31,.18);
  color:var(--gold-2);
  outline:none;
}
@media(max-width:720px){
  .city-suggestions{
    max-height:210px;
    top:calc(100% + 5px);
  }
  .city-suggestions button{
    font-size:16px;
    padding:12px;
  }
}


/* Lightweight HTML replacements for old screenshot sections */
.html-content-section{padding-top:56px;}
.coded-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}
.coded-card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 80% 12%,rgba(255,211,106,.18),transparent 28%),
    linear-gradient(180deg,rgba(18,14,8,.96),rgba(0,0,0,.74));
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}
.coded-card::before{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(242,169,31,.20);
  border-radius:22px;
  pointer-events:none;
}
.coded-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  min-height:46px;
  padding:8px 18px;
  border-radius:999px;
  border:1px solid rgba(255,211,106,.65);
  color:var(--gold-2);
  background:rgba(242,169,31,.08);
  font-weight:800;
  font-size:24px;
  box-shadow:0 0 24px rgba(242,169,31,.12);
}
.coded-title{
  margin:18px 0 12px;
  color:var(--gold-2);
  font-size:clamp(36px,4vw,58px);
  line-height:1.02;
  text-transform:uppercase;
  letter-spacing:.04em;
  text-shadow:0 2px 0 #4c2d02,0 0 24px rgba(242,169,31,.20);
}
.coded-lead{
  font-size:21px;
  color:#fff4dc;
  line-height:1.55;
  margin:0 0 18px;
}
.coded-card p{color:#f3eadb;}
.coded-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
  position:relative;
  z-index:2;
}
.coded-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 16px;
  border-radius:999px;
  font-family:Arial,sans-serif;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,.12);
}
.order-action{background:linear-gradient(180deg,#ffd36a,#df8b18);color:#130d03;}
.whatsapp-action{background:linear-gradient(180deg,#3f8f2e,#16580e);color:#fff;}
.facebook-action{background:linear-gradient(180deg,#1d5fb8,#0b3571);color:#fff;}
.coded-mini-grid,
.benefit-list-html{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  position:relative;
  z-index:2;
}
.coded-mini-grid div,
.benefit-list-html div{
  border:1px solid rgba(242,169,31,.30);
  background:rgba(0,0,0,.34);
  border-radius:18px;
  padding:18px;
  min-height:145px;
}
.coded-mini-grid span,
.benefit-list-html span{
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid var(--gold);
  color:var(--gold-2);
  font-size:26px;
  margin-bottom:12px;
  background:rgba(242,169,31,.05);
}
.coded-mini-grid strong,
.benefit-list-html strong{
  display:block;
  color:var(--gold-2);
  font-family:Arial,sans-serif;
  text-transform:uppercase;
  font-size:15px;
  line-height:1.25;
  margin-bottom:6px;
}
.coded-mini-grid p,
.benefit-list-html p{
  margin:0;
  color:#f3eadb;
  font-size:14px;
  line-height:1.45;
}
.coded-product-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(103,213,82,.50);
  background:rgba(45,122,25,.18);
  color:#c9ffb7;
  font-family:Arial,sans-serif;
  font-weight:800;
  text-transform:uppercase;
  text-align:center;
}
@media(max-width:900px){
  .coded-layout{grid-template-columns:1fr;}
  .coded-card{padding:24px 18px;border-radius:22px;}
  .coded-mini-grid,.benefit-list-html{grid-template-columns:1fr;}
  .coded-title{font-size:34px;}
  .coded-lead{font-size:17px;}
  .coded-actions{flex-direction:column;}
  .coded-action{width:100%;}
}


/* Desktop-only refinements requested after mobile approval */
@media(min-width:721px){
  .home-video-section{padding:26px 0 36px;}
  .home-video-wrap{max-width:760px;}
  .home-main-video{max-height:68vh;object-fit:contain;}
}

/* Offer highlight correction: only the selected quantity is highlighted */
.order-offers .featured-offer{
  border-color:var(--line);
  box-shadow:none;
  background:rgba(0,0,0,.45);
}
.order-offers .featured-offer em{
  color:#c9ffb7;
}
.order-offers .selected-offer{
  border-color:#67d552 !important;
  box-shadow:0 0 0 2px rgba(103,213,82,.20),0 12px 30px rgba(45,122,25,.20) !important;
  background:linear-gradient(180deg,rgba(45,122,25,.33),rgba(0,0,0,.55)) !important;
}


/* Desktop home video: portrait frame, no mobile changes */
@media(min-width:721px){
  .home-video-section{
    padding:24px 0 36px;
  }
  .home-video-wrap{
    width:min(430px, 92vw);
    max-width:430px;
    aspect-ratio:9/16;
    margin:0 auto;
    border-radius:22px;
  }
  .home-main-video{
    width:100%;
    height:100%;
    max-height:none;
    object-fit:contain;
    background:#000;
  }
}


/* Desktop video correction: keep horizontal width, adjust vertical height only */
@media(min-width:721px){
  .home-video-section{
    padding:24px 0 36px;
  }
  .home-video-wrap{
    width:min(760px, 92vw);
    max-width:760px;
    height:min(78vh, 720px);
    max-height:720px;
    aspect-ratio:auto;
    margin:0 auto;
    border-radius:22px;
  }
  .home-main-video{
    width:100%;
    height:100%;
    max-height:none;
    object-fit:contain;
    background:#000;
  }
}


/* Mobile-only: remove small top badges in About, Benefits and Ingredients cards */
@media(max-width:720px){
  .html-content-section .coded-badge{
    display:none !important;
  }
}


/* Global removal of coded badges requested for desktop and mobile */
.coded-badge{display:none !important;}

/* Homepage product image slider replacing the old video */
.home-image-slider{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at 50% 20%, rgba(242,169,31,.18), rgba(0,0,0,.95) 58%);
}
.home-image-slider .home-slide{
  position:absolute;
  inset:18px;
  width:calc(100% - 36px);
  height:calc(100% - 36px);
  object-fit:contain;
  border-radius:18px;
  opacity:0;
  transition:opacity .75s ease;
}
.home-image-slider .home-slide.active{
  opacity:1;
  z-index:1;
}
@media(max-width:720px){
  .home-image-slider.home-video-wrap{
    min-height:440px;
    height:62vh;
  }
  .home-image-slider .home-slide{
    inset:10px;
    width:calc(100% - 20px);
    height:calc(100% - 20px);
    border-radius:14px;
  }
}


/* Desktop product-slider sizing fix: prevents the active image from expanding full-width and keeps product photos sharp. */
.home-video-wrap.home-image-slider.home-product-slider{
  width:min(100%,620px);
  max-width:620px;
  min-height:700px;
  height:700px;
  aspect-ratio:auto;
}
.home-video-wrap.home-image-slider.home-product-slider .home-slide,
.home-video-wrap.home-image-slider.home-product-slider .home-slide.active{
  position:absolute !important;
  inset:18px !important;
  width:calc(100% - 36px) !important;
  height:calc(100% - 36px) !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  border-radius:18px;
  background:#050505;
}
.home-video-wrap.home-image-slider.home-product-slider .home-slide.active{
  opacity:1;
  z-index:2;
}
@media(max-width:720px){
  .home-video-wrap.home-image-slider.home-product-slider{
    width:100%;
    max-width:100%;
    min-height:440px;
    height:62vh;
  }
  .home-video-wrap.home-image-slider.home-product-slider .home-slide,
  .home-video-wrap.home-image-slider.home-product-slider .home-slide.active{
    inset:10px !important;
    width:calc(100% - 20px) !important;
    height:calc(100% - 20px) !important;
    border-radius:14px;
  }
}


/* SEO content additions - 20260627-seo */
.seo-intro-section{padding:58px 0 36px}
.seo-main-title{font-size:clamp(38px,6vw,74px)}
.seo-content{max-width:1040px}
.seo-content .lead{max-width:900px}
.seo-keyword-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:30px auto 0;max-width:960px}
.seo-keyword-grid div,.faq-list details{border:1px solid var(--line);background:linear-gradient(180deg,rgba(16,13,8,.92),rgba(0,0,0,.74));border-radius:16px;padding:20px;box-shadow:0 12px 28px rgba(0,0,0,.28)}
.seo-keyword-grid strong{display:block;color:var(--gold-2);font-size:20px;margin-bottom:6px}
.seo-keyword-grid span{display:block;color:var(--muted);font-family:Arial,sans-serif;font-size:14px}
.seo-detail-section,.seo-content-section{padding:44px 0}
.seo-two-col{align-items:stretch}
.seo-panel h3{margin:0 0 10px;color:var(--gold-2);font-size:22px}
.seo-panel p{font-size:17px}
.seo-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:26px}
.seo-disclaimer{text-align:center;color:var(--muted);font-family:Arial,sans-serif;margin:28px auto 0;max-width:760px}
.spec-table{width:100%;border-collapse:collapse;color:#f8ecd3;font-size:16px}
.spec-table th,.spec-table td{border-bottom:1px solid rgba(242,169,31,.24);padding:12px 10px;text-align:left;vertical-align:top}
.spec-table th{color:var(--gold-2);width:38%;font-family:Arial,sans-serif;text-transform:uppercase;font-size:12px;letter-spacing:.06em}
.faq-section{padding:44px 0 72px}
.faq-list{display:grid;gap:14px;max-width:960px;margin:26px auto 0}
.faq-list summary{cursor:pointer;color:var(--gold-2);font-size:19px;font-weight:700}
.faq-list p{margin:12px 0 0;color:#f3eadb;font-size:16px}
.footer-links{max-width:var(--max);margin:18px auto 0;padding:16px 20px 0;border-top:1px solid rgba(242,169,31,.18);display:flex;justify-content:center;flex-wrap:wrap;gap:16px;font-family:Arial,sans-serif;font-size:13px;text-transform:uppercase;color:var(--gold-2)}
.footer-links a:hover{color:#fff}
.footer-seo-note{max-width:var(--max);margin:14px auto 0;padding:0 20px;text-align:center;color:var(--muted);font-family:Arial,sans-serif;font-size:13px}
@media(max-width:900px){.seo-keyword-grid,.seo-grid-3{grid-template-columns:1fr}.seo-detail-section,.seo-content-section{padding:34px 0}.footer-links{gap:12px;font-size:12px}}
