/* ============================================================
   ZM HYBRID STORE — design tokens
   Color:  maroon #6E1423 (primary) · red #D62839 (cta/accent)
           cream #FBF6F1 (surface alt) · ink #241C1C (text)
           gold #C89B3C (badge/detail) · line #E9DFD8 (hairline)
   Type:   Fraunces (display serif) + Manrope (body sans)
   ============================================================ */

:root{
  --maroon: #FF6A00;
  --maroon-dark: #E85A00;
  --red: #FF3D1A;
  --cream: #FFF7EF;
  --ink: #201A16;
  --ink-soft: #776b62;
  --gold: #FFB300;
  --line: #FFE3C2;
  --surface: #FFFFFF;
  --radius: 12px;
  --shadow: 0 12px 30px rgba(255, 106, 0, .18);
  font-size: 16px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family:'Manrope', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  margin:0;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
p{ margin:0; }
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
button{ font-family: inherit; cursor:pointer; }
:focus-visible{ outline: 2px solid var(--maroon); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container{ max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 13px 26px; border-radius: var(--radius); font-weight:700;
  font-size: .92rem; border:1.5px solid transparent; cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  text-align:center;
}
.btn{ border-radius: 999px; }
.btn--primary{ background: var(--maroon); color:#fff; }
.btn--primary:hover{ background: var(--maroon-dark); }
.btn--dark{ background: var(--ink); color:#fff; }
.btn--dark:hover{ background:#000; }
.btn--outline{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover{ border-color: var(--maroon); color: var(--maroon); }
.btn--block{ width:100%; }
.btn:disabled{ opacity:.5; cursor:not-allowed; }

/* ============ URDU ACCENT TEXT ============ */
.ur{
  font-family:'Noto Nastaliq Urdu','Fraunces',serif; direction: rtl; unicode-bidi: isolate;
  font-size: .82em; color: var(--ink-soft); font-weight:400; margin-inline-start: 6px;
}
.hero__urdu{
  font-family:'Noto Nastaliq Urdu', serif; direction: rtl; text-align: right; font-size: 1.05rem;
  color: #f0dede; margin-top: 16px; max-width: 40ch; line-height: 2;
}
.recommend-tag{
  background: var(--gold); color:#3a2a05; font-size:.66rem; font-weight:800; padding:2px 7px;
  border-radius: 999px; margin-inline-start: auto; letter-spacing:.02em;
}
.pay-method--recommended{ border-color: var(--maroon); background: #fdf5f2; }
.pay-method{ justify-content: flex-start; }

/* ============ FLOATING WHATSAPP BUTTON ============ */
.wa-float{
  position: fixed; bottom: 22px; right: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 22px rgba(37,211,102,.45);
  transition: transform .15s ease;
}
.wa-float:hover{ transform: scale(1.07); }
@media (max-width:560px){ .wa-float{ width:52px; height:52px; bottom:16px; right:16px; } }

/* ============ ANNOUNCEMENT BAR ============ */
.announce{
  background: var(--maroon); color:#fff; overflow:hidden;
  font-size: .78rem; letter-spacing:.02em; padding: 8px 0;
}
.announce__track{
  display:flex; gap:56px; white-space:nowrap;
  animation: scroll-left 22s linear infinite;
  width: max-content;
}
@keyframes scroll-left{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ============ HEADER ============ */
.site-header{ position: sticky; top:0; z-index: 60; background: var(--surface); border-bottom:1px solid var(--line); }
.site-header__inner{
  max-width:1180px; margin:0 auto; padding: 16px 24px 10px;
  display:flex; align-items:center; gap: 22px;
}
.brand{ display:flex; align-items:baseline; gap:8px; margin-right:auto; }
.brand__mark{
  font-family:'Fraunces', serif; font-weight:700; font-size:1.05rem;
  background: var(--maroon); color:#fff; padding: 5px 9px; border-radius: 8px;
}
.brand__name{ font-family:'Fraunces', serif; font-weight:600; font-size:1.18rem; }

/* secondary nav row — sits under the utility row, centered, like a category ribbon */
.main-nav{
  display:flex; gap: 26px; justify-content:center; align-items:center;
  max-width:1180px; margin:2px auto 0; padding: 10px 24px 12px;
  border-top:1px solid var(--line);
}
.main-nav a{ font-size:.88rem; font-weight:600; color: var(--ink); position:relative; padding: 4px 0; }
.main-nav a:hover{ color: var(--maroon); }
.main-nav a.active{ color: var(--maroon); }
.main-nav a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-3px; height:2px; background: var(--maroon);
}

.header-actions{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.icon-btn{
  position:relative; background:none; border:none; color: var(--ink);
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  border-radius:50%; flex-direction:column;
}
.icon-btn:hover{ background: var(--cream); }
.badge{
  position:absolute; top:1px; right:1px; background: var(--maroon); color:#fff;
  font-size:.62rem; font-weight:800; min-width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding:0 2px;
}
.nav-toggle{ display:none; }
.account-header-link{ display:flex; flex-direction:column; align-items:center; gap:3px; font-size:.7rem; font-weight:700; color:var(--ink); width:auto; height:auto; padding:2px 4px; }
.account-header-link svg{ width:20px; height:20px; }
.account-header-link:hover{ color: var(--maroon); }
.icon-btn--labeled{ width:auto; height:auto; padding:2px 4px; gap:3px; }
.icon-btn--labeled small{ font-size:.7rem; font-weight:700; color:var(--ink); }
.icon-btn--labeled:hover small{ color: var(--maroon); }
.icon-btn--labeled .badge{ top:-4px; right:-2px; }

.search-bar{
  max-width: 760px; margin: 0 auto 14px; padding: 0 24px; display:flex; gap:0;
  align-items:center; background: var(--cream); border:1.5px solid var(--line);
  border-radius: 999px; height:46px; overflow:hidden;
}
.search-bar select{
  border:none; background:transparent; font-family:inherit; font-size:.8rem; font-weight:600;
  color: var(--ink-soft); padding:0 10px 0 18px; border-right:1px solid var(--line); margin-right:10px; max-width:150px; height:100%;
}
.search-bar input{
  flex:1; padding:0 4px; border:none; background:transparent; font-size:.92rem;
  font-family:inherit; outline:none; height:100%;
}
.search-bar button{
  padding: 0 24px; background: var(--maroon); color:#fff; border:none; border-radius:999px; font-weight:700;
  font-size:.86rem; height:38px; margin:0 4px; display:flex; align-items:center; justify-content:center;
}
.search-bar button:hover{ background: var(--maroon-dark); }
@media (max-width:700px){
  .search-bar{ max-width:100%; margin:0 auto 10px; padding:0 12px; }
  .search-bar select{ display:none; }
}

/* ============ CATEGORY ICON STRIP ============ */
.cat-icon-row{
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  padding: 26px 0 6px;
}
.cat-icon{
  display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center;
  width: 108px; color: var(--ink);
}
.cat-icon__circle{
  width:64px; height:64px; border-radius:50%; background: #EFEAFF;
  display:flex; align-items:center; justify-content:center; border:1px solid var(--line);
  box-shadow: 0 4px 14px rgba(255,106,0,.08);
  transition: background .15s ease, transform .15s ease;
}
.cat-icon__circle svg{ width:30px; height:30px; }
.cat-icon:hover .cat-icon__circle{ background: var(--maroon); transform: translateY(-3px); }
.cat-icon:hover .cat-icon__circle svg *{ stroke: #fff !important; }
.cat-icon span{ font-size:.82rem; font-weight:700; }
.cat-icon small{ display:block; font-size:.72rem; color: var(--ink-soft); font-weight:500; }

/* ============ HERO ============ */
.hero{
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-dark) 65%, #2c0810 100%);
  color:#fff; position:relative; overflow:hidden;
}
.hero__inner{
  max-width:1180px; margin:0 auto; padding: 76px 24px 88px;
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items:center;
  position:relative; z-index:2;
}
.hero__eyebrow{ display:flex; align-items:center; gap:10px; font-size:.82rem; color: #e6ddff; margin-bottom:18px; font-weight:700;}
.hero__eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:#ffb1c6; box-shadow:0 0 0 4px rgba(255,177,198,.3); }
.hero h1{
  font-size: clamp(2.2rem, 4.2vw, 3.4rem); color:#fff; margin-bottom: 18px;
}
.hero h1 em{ font-style: italic; color: #F5D48A; }
.hero p.lede{ font-size:1.05rem; color:#ffe0bf; max-width: 46ch; margin-bottom: 30px; }
.hero__cta{ display:flex; gap:14px; flex-wrap:wrap; }
.hero__stats{ display:flex; gap: 30px; margin-top:38px; }
.hero__stats div{ }
.hero__stats strong{ display:block; font-family:'Fraunces', serif; font-size:1.5rem; }
.hero__stats span{ font-size:.78rem; color:#d9cdf7; }

.hero__art{
  position:relative; aspect-ratio: 1/1; display:flex; align-items:center; justify-content:center;
}
.hero__art .ring{
  position:absolute; inset:0; border-radius:50%;
  background: radial-gradient(circle at 32% 28%, rgba(241,199,122,.35), transparent 60%),
              radial-gradient(circle at 70% 75%, rgba(214,40,57,.4), transparent 55%);
  border: 1.5px dashed rgba(255,255,255,.25);
}
.hero__art svg{ position:relative; z-index:2; width: 62%; height:62%; }

/* ============ FEATURES BAR ============ */
.features{
  background: var(--surface); border-bottom:1px solid var(--line);
}
.features__inner{
  max-width:1180px; margin:0 auto; padding: 26px 24px;
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature{ display:flex; gap:14px; align-items:flex-start; }
.feature__icon{
  width:40px; height:40px; border-radius:50%; background: var(--cream); color: var(--maroon);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.feature h4{ font-size:.95rem; margin-bottom:3px; }
.feature p{ font-size:.82rem; color: var(--ink-soft); }

/* ============ SECTION HEADS ============ */
.section{ padding: 62px 0; }
.section--tight{ padding: 40px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; margin-bottom: 34px; gap:20px; flex-wrap:wrap;
}
.section-head h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); }
.section-head p{ color: var(--ink-soft); margin-top:6px; font-size:.95rem; }
.section-head .btn{ flex-shrink:0; }

/* ============ CATEGORY TABS ============ */
.cat-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 30px; }
.cat-tab{
  padding: 9px 18px; border-radius: 999px; border:1.5px solid var(--line); background:#fff;
  font-size:.85rem; font-weight:700; color: var(--ink-soft); white-space:nowrap;
}
.cat-tab:hover{ border-color: var(--maroon); color: var(--maroon); }
.cat-tab.active{ background: var(--maroon); border-color: var(--maroon); color:#fff; }

/* ============ PRODUCT GRID ============ */
.grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  display:flex; flex-direction:column; transition: box-shadow .18s ease, transform .18s ease;
  position:relative;
}
.card:hover{ box-shadow: var(--shadow); transform: translateY(-3px); }
.card__media{
  aspect-ratio: 1/1; position:relative; display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.card__media svg{ width:52%; height:52%; }
.card__badge{
  position:absolute; top:10px; left:10px; background: var(--red); color:#fff; font-size:.7rem;
  font-weight:800; padding:4px 8px; border-radius:2px; z-index:2;
}
.card__wish{
  position:absolute; top:8px; right:8px; z-index:2; background: rgba(255,255,255,.9); border:none;
  width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; color: var(--ink);
}
.card__wish.active{ color: var(--red); }
.card__body{ padding: 15px 16px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }
.card__cat{ font-size:.7rem; color: var(--ink-soft); font-weight:700; }
.card__title{ font-size:.92rem; font-weight:700; line-height:1.35; min-height: 2.5em; }
.card__title a:hover{ color: var(--maroon); }
.card__price{ display:flex; align-items:baseline; gap:8px; margin-top:2px; }
.card__price .now{ font-weight:800; color: var(--maroon); font-size:1.02rem; }
.card__price .was{ text-decoration: line-through; color:#aaa19d; font-size:.82rem; }
.card__add{
  margin-top:10px; border:1.5px solid var(--ink); background:transparent; padding:9px; border-radius: var(--radius);
  font-weight:700; font-size:.82rem; transition: background .15s ease, color .15s ease;
}
.card__add:hover{ background: var(--ink); color:#fff; }

/* product media background per category */
.media--beauty{ background: linear-gradient(155deg,#f7e7e3,#f1d2cb); }
.media--home{ background: linear-gradient(155deg,#eef1ea,#dde4d3); }
.media--watch{ background: linear-gradient(155deg,#efe6d8,#dfcda9); }
.media--fragrance{ background: linear-gradient(155deg,#ece3f2,#d9c7e8); }
.media--electronics{ background: linear-gradient(155deg,#e3edf2,#c7dbe8); }

/* ============ BANNER SPLIT ============ */
.banner-split{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.banner-card{
  position:relative; border-radius: var(--radius); overflow:hidden; min-height: 240px;
  display:flex; flex-direction:column; justify-content:flex-end; padding: 30px; color:#fff;
}
.banner-card::before{ content:''; position:absolute; inset:0; background: rgba(30,10,14,.32); z-index:1; }
.banner-card > *{ position:relative; z-index:2; }
.banner-card--a{ background: linear-gradient(120deg,#3a0d16,#7a1c2c 70%); }
.banner-card--b{ background: linear-gradient(120deg,#3c3418,#8a6d2e 70%); }
.banner-card h3{ font-size:1.5rem; margin-bottom:8px; color:#fff; }
.banner-card p{ font-size:.85rem; color:#eadcd8; margin-bottom:16px; }

/* ============ TESTIMONIALS / TRUST ============ */
.trust{ background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust__inner{ max-width:1180px; margin:0 auto; padding:50px 24px; display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.trust-card{ padding:22px; background: var(--cream); border-radius: var(--radius); }
.trust-card .stars{ color: var(--gold); font-size:.85rem; margin-bottom:10px; letter-spacing:2px; }
.trust-card p{ font-size:.88rem; color: var(--ink-soft); margin-bottom:14px; line-height:1.55; }
.trust-card strong{ font-size:.85rem; }

/* ============ BREADCRUMB ============ */
.breadcrumb{ font-size:.8rem; color: var(--ink-soft); margin-bottom:22px; }
.breadcrumb a:hover{ color: var(--maroon); }

/* ============ CATALOG LAYOUT ============ */
.catalog-layout{ display:grid; grid-template-columns: 220px 1fr; gap: 36px; align-items:flex-start; }
.filters{ position:sticky; top:90px; }
.filters h4{ font-size:.8rem; text-transform:uppercase; letter-spacing:.06em; color: var(--ink-soft); margin-bottom:12px; }
.filters .filter-group{ margin-bottom: 26px; }
.filter-opt{ display:flex; align-items:center; gap:9px; font-size:.88rem; padding: 6px 0; color: var(--ink); }
.filter-opt input{ accent-color: var(--maroon); }
.catalog-toolbar{ display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; flex-wrap:wrap; gap:10px; }
.catalog-toolbar select{ padding:8px 10px; border:1.5px solid var(--line); border-radius: var(--radius); font-family:inherit; }
.result-count{ font-size:.85rem; color: var(--ink-soft); }
.empty-state{ text-align:center; padding: 70px 20px; color: var(--ink-soft); }

/* ============ PRODUCT DETAIL ============ */
.pdp{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:flex-start; }
.pdp__gallery{ position:sticky; top: 90px; }
.pdp__main-media{ aspect-ratio:1/1; border-radius: var(--radius); overflow:hidden; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.pdp__main-media svg{ width:44%; height:44%; }
.pdp__thumbs{ display:flex; gap:10px; }
.pdp__thumb{ width:64px; height:64px; border-radius:3px; border:1.5px solid var(--line); cursor:pointer; display:flex; align-items:center; justify-content:center; }
.pdp__thumb.active{ border-color: var(--maroon); }
.pdp__thumb svg{ width:60%; height:60%; }

.pdp__cat{ font-size:.78rem; color: var(--maroon); font-weight:800; letter-spacing:.03em; margin-bottom:8px; }
.pdp h1{ font-size: 1.7rem; margin-bottom: 12px; }
.pdp__price{ display:flex; align-items:baseline; gap:12px; margin-bottom:8px; }
.pdp__price .now{ font-size:1.5rem; font-weight:800; color: var(--maroon); }
.pdp__price .was{ text-decoration:line-through; color:#aaa19d; font-size:1rem; }
.pdp__price .off{ background:#fdecec; color: var(--red); font-size:.76rem; font-weight:800; padding:3px 8px; border-radius:2px; }
.pdp__viewers{ display:flex; align-items:center; gap:7px; font-size:.82rem; color: var(--ink-soft); margin-bottom:20px; }
.pdp__viewers .pulse{ width:7px; height:7px; border-radius:50%; background:#2fb35c; box-shadow:0 0 0 3px rgba(47,179,92,.25); flex-shrink:0; }

.pdp__banner{
  background: linear-gradient(90deg, var(--maroon), var(--red));
  color:#fff; text-align:center; padding:9px; font-size:.8rem; font-weight:800; letter-spacing:.03em;
  border-radius: var(--radius); margin-bottom:22px;
}

.qty-row{ display:flex; align-items:center; gap:16px; margin-bottom:18px; }
.qty-selector{ display:flex; align-items:center; border:1.5px solid var(--line); border-radius: var(--radius); }
.qty-selector button{ width:38px; height:40px; background:none; border:none; font-size:1.1rem; }
.qty-selector button:hover{ background: var(--cream); }
.qty-selector span{ width:36px; text-align:center; font-weight:700; }
.stock-note{ font-size:.82rem; color: var(--ink-soft); }

.pdp__actions{ display:flex; gap:12px; margin-bottom:26px; flex-wrap:wrap; }
.pdp__actions .btn{ flex:1; min-width:160px; }
.icon-fav{
  width:48px; height:48px; border-radius: var(--radius); border:1.5px solid var(--line); background:none;
  display:flex; align-items:center; justify-content:center; color: var(--ink); flex-shrink:0;
}
.icon-fav.active{ color: var(--red); border-color: var(--red); }

.pdp__perks{ display:flex; flex-direction:column; gap:10px; margin-bottom:28px; padding:18px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); }
.pdp__perk{ display:flex; gap:10px; font-size:.85rem; align-items:flex-start; }
.pdp__perk svg{ flex-shrink:0; color: var(--maroon); margin-top:1px; }

.pdp__tabs{ border-top:1px solid var(--line); }
.pdp__tab-heads{ display:flex; gap:26px; border-bottom:1px solid var(--line); }
.pdp__tab-head{ padding:14px 0; font-size:.88rem; font-weight:700; color: var(--ink-soft); background:none; border:none; border-bottom:2px solid transparent; margin-bottom:-1px; }
.pdp__tab-head.active{ color: var(--ink); border-color: var(--maroon); }
.pdp__tab-panel{ display:none; padding: 22px 0; font-size:.92rem; line-height:1.7; color: var(--ink-soft); }
.pdp__tab-panel.active{ display:block; }
.pdp__tab-panel ul{ padding-left:20px; margin:0; }
.pdp__tab-panel li{ margin-bottom:6px; }

/* ============ CART PAGE ============ */
.cart-page{ display:grid; grid-template-columns: 1fr 340px; gap:40px; align-items:flex-start; }
.cart-row{
  display:grid; grid-template-columns: 74px 1fr auto auto; gap:16px; align-items:center;
  padding: 18px 0; border-bottom:1px solid var(--line);
}
.cart-row__media{ width:74px; height:74px; border-radius:3px; display:flex; align-items:center; justify-content:center; }
.cart-row__media svg{ width:55%; height:55%; }
.cart-row__title{ font-weight:700; font-size:.92rem; margin-bottom:4px; }
.cart-row__cat{ font-size:.75rem; color: var(--ink-soft); }
.cart-row__remove{ background:none; border:none; color: var(--ink-soft); font-size:.78rem; text-decoration:underline; margin-top:6px; }
.cart-row__price{ font-weight:800; color: var(--maroon); white-space:nowrap; }

.order-summary{ background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px; position:sticky; top:90px; }
.order-summary h3{ font-size:1.1rem; margin-bottom:18px; }
.summary-line{ display:flex; justify-content:space-between; font-size:.9rem; margin-bottom:10px; color: var(--ink-soft); }
.summary-line strong{ color: var(--ink); }
.summary-total{ display:flex; justify-content:space-between; font-size:1.05rem; font-weight:800; padding-top:14px; margin-top:6px; border-top:1px solid var(--line); }

/* ============ CHECKOUT ============ */
.checkout-layout{ display:grid; grid-template-columns: 1fr 380px; gap:44px; align-items:flex-start; }
.form-group{ margin-bottom:16px; }
.form-group label{ display:block; font-size:.82rem; font-weight:700; margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:11px 13px; border:1.5px solid var(--line); border-radius: var(--radius); font-family:inherit; font-size:.92rem;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.pay-methods{ display:flex; flex-direction:column; gap:10px; margin: 18px 0 22px; }
.pay-method{ display:flex; align-items:center; gap:10px; border:1.5px solid var(--line); border-radius:var(--radius); padding:13px 14px; font-size:.9rem; font-weight:600; }
.pay-method input{ accent-color: var(--maroon); }
.summary-mini-row{ display:flex; gap:12px; font-size:.85rem; padding:10px 0; border-bottom:1px solid var(--line); }
.summary-mini-row img{ width:0; }
.summary-mini-media{ width:46px; height:46px; border-radius:3px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.summary-mini-media svg{ width:55%; height:55%; }

/* ============ CONTACT ============ */
.contact-layout{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-item{ display:flex; gap:14px; margin-bottom: 24px; }
.contact-info-item .icon-circle{ width:42px; height:42px; border-radius:50%; background: var(--cream); color: var(--maroon); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-item h4{ font-size:.95rem; margin-bottom:3px; }
.contact-info-item p{ font-size:.87rem; color: var(--ink-soft); }

/* ============ POLICY PAGES ============ */
.policy-body{ max-width: 720px; font-size:.95rem; line-height:1.8; color: var(--ink-soft); }
.policy-body h3{ color: var(--ink); font-size:1.15rem; margin: 26px 0 10px; }
.policy-body h3:first-child{ margin-top:0; }

/* ============ MISC ============ */
.page-head{ text-align:left; margin-bottom: 38px; }
.page-head h1{ font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom:10px; }
.page-head p{ color: var(--ink-soft); max-width: 60ch; }

.drawer-overlay{
  position:fixed; inset:0; background: rgba(30,10,14,.4); z-index: 90; opacity:0; pointer-events:none; transition: opacity .2s ease;
}
.drawer-overlay.open{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width: 400px; max-width: 92vw; background:#fff; z-index:95;
  transform: translateX(100%); transition: transform .25s ease; display:flex; flex-direction:column; box-shadow: -10px 0 40px rgba(0,0,0,.15);
}
.cart-drawer.open{ transform: translateX(0); }
.cart-drawer__head{ display:flex; justify-content:space-between; align-items:center; padding: 20px 22px; border-bottom:1px solid var(--line); }
.cart-drawer__items{ flex:1; overflow-y:auto; padding: 10px 22px; }
.cart-drawer__foot{ padding: 18px 22px 24px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:10px; }
.cart-subtotal{ display:flex; justify-content:space-between; font-size:.95rem; margin-bottom:6px; }
.mini-row{ display:grid; grid-template-columns: 56px 1fr auto; gap:12px; padding: 14px 0; border-bottom:1px solid var(--line); align-items:center; }
.mini-row__media{ width:56px; height:56px; border-radius:3px; display:flex; align-items:center; justify-content:center; }
.mini-row__media svg{ width:55%; height:55%; }
.mini-row__title{ font-size:.85rem; font-weight:700; margin-bottom:4px; }
.mini-row__ctrl{ display:flex; align-items:center; gap:8px; }
.mini-row__ctrl button{ width:24px; height:24px; border:1px solid var(--line); background:none; border-radius:3px; }
.mini-row__price{ font-weight:800; font-size:.85rem; color: var(--maroon); white-space:nowrap; }
.empty-cart{ text-align:center; padding: 60px 10px; color: var(--ink-soft); font-size:.9rem; }

.toast{
  position:fixed; bottom:26px; left:50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color:#fff;
  padding: 13px 22px; border-radius: 4px; font-size:.88rem; font-weight:600; z-index: 200; opacity:0; pointer-events:none;
  transition: opacity .2s ease, transform .2s ease; display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }

/* ============ FOOTER ============ */
.site-footer{ background: var(--ink); color:#e7dedb; margin-top: 40px; }
.footer-grid{
  max-width:1180px; margin:0 auto; padding: 60px 24px 30px;
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 34px;
}
.footer-brand p{ font-size:.85rem; color:#b7aaa6; margin-top:14px; line-height:1.6; max-width:34ch; }
.brand--footer .brand__name{ color:#fff; }
.footer-col h4{ font-family:'Manrope',sans-serif; font-size:.8rem; text-transform:uppercase; letter-spacing:.07em; color:#c9beb9; margin-bottom:16px; }
.footer-col a{ display:block; font-size:.87rem; color:#d9d0cc; padding: 5px 0; }
.footer-col a:hover{ color:#fff; }
.footer-note{ font-size:.8rem; color:#b7aaa6; margin-top:10px; }
.newsletter{ display:flex; gap:8px; margin-top:14px; }
.newsletter input{ flex:1; padding:10px 12px; border-radius:3px; border:1px solid #4a3f3c; background:#332a28; color:#fff; font-family:inherit; }
.newsletter button{ padding:10px 16px; background: var(--red); color:#fff; border:none; border-radius:3px; font-weight:700; }
.footer-bottom{
  border-top:1px solid #3a302d; padding: 18px 24px; max-width:1180px; margin:0 auto;
  display:flex; justify-content:space-between; font-size:.78rem; color:#a89c97; flex-wrap:wrap; gap:8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .main-nav{ display:none; }
  .main-nav.open-mobile{
    display:flex !important; position:absolute; top:100%; left:0; right:0; background:#fff;
    flex-direction:column; gap:0; padding: 6px 24px 16px; border-bottom:1px solid var(--line); box-shadow: var(--shadow);
  }
  .main-nav.open-mobile a{ padding: 12px 0; border-bottom:1px solid var(--line); }
  .site-header{ position:sticky; }
  .nav-toggle{ display:flex; }
  .hero__inner{ grid-template-columns:1fr; }
  .hero__art{ display:none; }
  .catalog-layout{ grid-template-columns: 1fr; }
  .filters{ position:static; display:flex; flex-wrap:wrap; gap:20px; }
  .pdp{ grid-template-columns:1fr; }
  .pdp__gallery{ position:static; }
  .cart-page, .checkout-layout, .contact-layout{ grid-template-columns:1fr; }
  .grid{ grid-template-columns: repeat(2,1fr); }
  .features__inner{ grid-template-columns:1fr; }
  .trust__inner{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .grid{ grid-template-columns: repeat(2,1fr); gap:14px; }
  .banner-split{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero__inner{ padding: 50px 20px 60px; }
  .qty-row{ flex-wrap:wrap; }
}


/* ===== PHASE 8 CUSTOMER STORE PRO ===== */
.pdp__real-image{width:100%;height:100%;object-fit:contain;background:#fff;border-radius:inherit;}
.pdp__gallery .pdp__main-media{background:#fff;overflow:hidden;}
.pdp__thumb{padding:0;border:1px solid var(--line);background:#fff;overflow:hidden;cursor:pointer;}
.pdp__thumb img{width:100%;height:100%;object-fit:cover;}
.pdp__thumb.active{border-color:var(--maroon);box-shadow:0 0 0 1px var(--maroon);}
.pdp__short{margin:12px 0 4px;color:var(--ink-soft);line-height:1.65;max-width:62ch;}
.pdp__variants{margin:22px 0 8px;}
.variant-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px;}
.variant-chip{padding:9px 13px;border:1px solid var(--line);background:#fff;border-radius:999px;font-weight:700;font-size:.82rem;color:var(--ink);}
.variant-chip.active{border-color:var(--maroon);background:#f8edef;color:var(--maroon);}
.variant-chip.disabled{opacity:.45;cursor:not-allowed;text-decoration:line-through;}
.card__media img{background:#fff;}
.cart-row__media img{width:100%;height:100%;object-fit:cover;border-radius:inherit;}
.mini-row__title small{color:var(--ink-soft);font-size:.75rem;font-weight:500;}
@media(max-width:760px){.pdp__short{font-size:.9rem}.variant-list{gap:6px}.variant-chip{font-size:.78rem;padding:8px 10px;}}
/* ---------- PHASE 9 — account & order UX ---------- */
.account-form{max-width:560px;margin:0 auto;background:#fff;border:1px solid var(--line);border-radius:18px;padding:28px;box-shadow:0 12px 40px rgba(30,10,15,.06)}
.account-form h2{margin:0 0 20px}.form-msg{min-height:20px;margin:12px 0;color:var(--maroon);font-size:.9rem}.account-divider{text-align:center;margin:18px 0;color:var(--ink-soft);border-top:1px solid var(--line);padding-top:18px}.account-banner{display:flex;justify-content:space-between;align-items:center;gap:15px;background:#fff;border:1px solid var(--line);border-radius:16px;padding:16px;margin-bottom:16px}.account-orders{background:#fff;border:1px solid var(--line);border-radius:18px;padding:22px}.section-head{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:15px}.section-head h2{margin:0}.order-card{display:flex;justify-content:space-between;align-items:center;gap:18px;padding:17px 4px;border-top:1px solid var(--line);color:inherit;text-decoration:none}.order-card>div{display:flex;gap:10px;align-items:center;flex-wrap:wrap}.order-card span{color:var(--ink-soft);font-size:.82rem}.badge--status{text-transform:capitalize}.account-help{max-width:560px;margin:24px auto 0;padding:22px;border-radius:18px;background:#faf5f5;border:1px solid var(--line)}.account-help h3{margin-top:0}.order-detail{max-width:1000px;margin:0 auto}.order-detail-head{display:flex;justify-content:space-between;align-items:center;gap:20px;margin-bottom:24px}.order-detail-head h2{margin:3px 0}.status-timeline{display:grid;grid-template-columns:repeat(6,1fr);gap:8px;margin:0 0 24px}.status-step{text-align:center;color:var(--ink-soft);font-size:.78rem}.status-step span{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;border:1px solid var(--line);margin:0 auto 7px;background:#fff}.status-step.done span{background:var(--maroon);color:#fff;border-color:var(--maroon)}.status-step.current strong{color:var(--maroon)}.order-detail-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:16px}.order-detail .box{background:#fff;border:1px solid var(--line);border-radius:16px;padding:20px;margin-bottom:16px}.order-item{display:flex;justify-content:space-between;gap:15px;padding:12px 0;border-bottom:1px solid var(--line)}.order-item:last-child{border-bottom:0}.history-row{display:grid;grid-template-columns:180px 120px 1fr;gap:10px;padding:10px 0;border-bottom:1px solid var(--line);font-size:.86rem}.history-row:last-child{border-bottom:0}.account-link{text-decoration:none;color:inherit;display:grid;place-items:center;font-size:22px}.muted{color:var(--ink-soft)}
@media(max-width:760px){.status-timeline{grid-template-columns:repeat(3,1fr);row-gap:15px}.order-detail-grid{grid-template-columns:1fr}.order-card{align-items:flex-start;flex-direction:column}.history-row{grid-template-columns:1fr}.account-form{padding:20px}.section-head{align-items:flex-start;flex-direction:column}}

/* ---------- PHASE 10: COUPON / CHECKOUT PRO ---------- */
.coupon-box{margin-top:24px;padding:18px;border:1px solid var(--line);border-radius:var(--radius);background:#fff}
.coupon-box__title{font-weight:800;margin-bottom:10px}
.coupon-box__row{display:flex;gap:10px;align-items:stretch}
.coupon-box__row input{flex:1;min-width:0;height:46px;border:1px solid var(--line);border-radius:8px;padding:0 13px;font:inherit;background:#fff}
.coupon-box__row .btn{white-space:nowrap;min-width:128px}
.coupon-msg{min-height:20px;margin:8px 0 0;font-size:.82rem;color:var(--ink-soft)}
.coupon-msg--success{color:#16724b}
.coupon-msg--error{color:#b42318}
.summary-line--discount{color:#16724b}
.summary-line--discount strong{color:#16724b}
.checkout-coupon{margin-top:18px}
@media (max-width:620px){
  .coupon-box__row{flex-direction:column}
  .coupon-box__row .btn{width:100%}
}


/* Phase 11 CMS banners */
.cms-banner-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.cms-banner{min-height:250px;border-radius:14px;background:#6E1423 center/cover no-repeat;display:flex;align-items:flex-end;padding:26px;color:#fff;overflow:hidden}
.cms-banner h3{font-family:Fraunces,serif;font-size:28px;margin:8px 0}
.cms-banner p{max-width:360px;margin:0 0 16px;color:rgba(255,255,255,.9)}
@media(max-width:850px){.cms-banner-grid{grid-template-columns:1fr}.cms-banner{min-height:210px}}


/* Phase 12 Account / Login header */
.account-header-link{display:inline-flex;align-items:center;gap:7px;min-height:40px;padding:0 10px;border:1px solid var(--line,#e5e7eb);border-radius:10px;color:inherit;text-decoration:none;font-size:13px;font-weight:700;white-space:nowrap;background:var(--surface,#fff);transition:.18s ease}
.account-header-link:hover{transform:translateY(-1px);border-color:currentColor}
@media (max-width:760px){.account-header-link{width:40px;justify-content:center;padding:0;border-radius:10px}.account-header-link span{display:none}}

/* Phase 13 — Search & Storefront Discovery Pro */
.catalog-mobile-actions{display:none;align-items:center;justify-content:space-between;gap:12px;margin:0 0 16px}
.filter-mobile-head{display:none}
.filters select,.filters input[type=number]{width:100%;box-sizing:border-box;border:1px solid #ddd;border-radius:8px;padding:9px 10px;background:#fff;font:inherit}
.price-filter{display:grid;grid-template-columns:1fr auto 1fr;gap:7px;align-items:center}
.filter-hint{font-size:11px;color:#777;margin-top:6px}
.filter-check{display:flex;align-items:center;gap:8px;margin:8px 0;font-size:14px}
.filter-clear{width:100%;margin-top:4px}
.catalog-pagination{display:flex;justify-content:center;gap:7px;margin:28px 0 8px}
.page-btn{min-width:38px;height:38px;border:1px solid #ddd;background:#fff;border-radius:8px;cursor:pointer}
.page-btn.active,.page-btn:hover{background:#111;color:#fff;border-color:#111}
.search-bar{position:relative}
.search-suggestions{display:none;position:absolute;left:0;right:0;top:calc(100% + 6px);background:#fff;border:1px solid #ddd;border-radius:10px;box-shadow:0 12px 30px rgba(0,0,0,.12);z-index:100;padding:5px}
.search-suggestions.open{display:block}
.search-suggestions a{display:flex;justify-content:space-between;gap:12px;padding:10px 12px;border-radius:7px;color:inherit;text-decoration:none}
.search-suggestions a:hover{background:#f5f5f5}
.search-suggestions small{white-space:nowrap;font-weight:700}
.search-no-results{padding:12px;color:#777;font-size:13px}
@media(max-width:800px){
  .catalog-mobile-actions{display:flex}
  .catalog-layout{display:block}
  .filters{display:none}
  .filters.filters--open{display:block;position:fixed;inset:0 auto 0 0;width:min(340px,88vw);z-index:1000;background:#fff;overflow:auto;padding:20px;box-shadow:12px 0 30px rgba(0,0,0,.18)}
  .filter-mobile-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;font-size:18px}
  .filter-mobile-head button{border:0;background:none;font-size:28px;cursor:pointer}
  .catalog-toolbar{margin-top:4px}
}

/* ===== Phase 14 — account dashboard ===== */
.account-auth-grid{display:grid;grid-template-columns:minmax(0,520px) minmax(280px,1fr);gap:28px;align-items:stretch;max-width:980px;margin:0 auto}.account-benefits,.account-panel,.account-top{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:26px;box-shadow:var(--shadow)}.account-benefits ul{margin:22px 0 0;padding-left:20px;display:grid;gap:12px}.account-dashboard{display:grid;gap:20px}.account-top{display:flex;justify-content:space-between;align-items:center;gap:18px}.account-top h2{margin:5px 0}.account-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.account-stats>div{background:var(--surface);border:1px solid var(--line);padding:20px;border-radius:var(--radius)}.account-stats strong,.account-stats span{display:block}.account-stats strong{font-size:25px}.account-stats span{color:var(--ink-soft);font-size:13px;margin-top:4px}.account-panels{display:grid;grid-template-columns:1fr 1fr;gap:20px}.account-panel--full{grid-column:1/-1}.account-panel .section-head{margin-bottom:18px}.account-form--wide{max-width:560px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.form-grid__full{grid-column:1/-1}.address-card{display:flex;justify-content:space-between;gap:16px;padding:16px 0;border-top:1px solid var(--line)}.address-card__head{display:flex;gap:8px;align-items:center;margin-bottom:6px}.address-card p{font-size:13px;color:var(--ink-soft);margin-top:4px}.address-actions{display:flex;gap:8px;align-items:flex-start}.btn--sm{padding:8px 12px;font-size:12px}.address-form{margin-top:18px;padding-top:18px;border-top:1px solid var(--line)}.check-row{display:flex;gap:8px;align-items:center;margin:14px 0;font-size:13px}.check-row input{width:auto}.account-panel .order-card{margin-top:10px}.eyebrow{font-size:11px;letter-spacing:.14em;color:var(--maroon);font-weight:800}.muted{color:var(--ink-soft)}
@media(max-width:800px){.account-auth-grid,.account-panels{grid-template-columns:1fr}.account-panel--full{grid-column:auto}.account-stats{grid-template-columns:1fr 1fr 1fr}.form-grid{grid-template-columns:1fr}.form-grid__full{grid-column:auto}.address-card{flex-direction:column}.account-top{align-items:flex-start;flex-direction:column}}

/* Phase 24 — Customer Notifications */
.notification-panel{margin-top:14px}.notification-card{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;padding:14px 0;border-bottom:1px solid #eee}.notification-card:last-child{border-bottom:0}.notification-card.is-unread{background:#fffaf8;border-radius:10px;padding:14px}.notification-card h4{margin:7px 0 5px}.notification-card p{margin:0 0 5px;color:#5f5658}.notification-card small{color:#8a7f81}.notifications-stats{margin:14px 0}

/* ---------- PHASE 26 STOREFRONT POLISH + CONVERSION PRO ---------- */
.store-error{max-width:680px;margin:40px auto;text-align:center;padding:48px 24px;border:1px solid var(--line,#e7e0dc);border-radius:22px;background:#fff;box-shadow:0 12px 40px rgba(20,12,12,.06)}
.store-error h2{margin:0 0 10px;font-size:30px}.store-error p{margin:0 0 22px;color:#6f6662}
.product-card{transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.product-card:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(25,15,15,.10)}
.product-card .btn{min-height:42px}.product-card img{transition:transform .3s ease}.product-card:hover img{transform:scale(1.025)}
.hero__cta .btn{min-height:46px}.section-head{gap:18px}.cat-tab{transition:transform .15s ease,box-shadow .15s ease}.cat-tab:hover{transform:translateY(-2px)}
.cms-banner-grid{scroll-snap-type:x mandatory}.cms-banner{scroll-snap-align:start;min-height:260px}.banner-card{min-height:250px}
@media(max-width:700px){.hero__cta{display:grid;grid-template-columns:1fr 1fr;gap:10px}.hero__cta .btn{width:100%;text-align:center}.grid{gap:12px}.product-card{min-width:0}.store-error{margin:24px 0;padding:34px 18px}.store-error h2{font-size:24px}}

/* PHASE 28 HERO MOTION — product-led carousel inspired by the supplied reference video */
.hero-carousel{min-height:600px;background:#FF6A00;transition:background .7s ease;position:relative;overflow:hidden}
.hero-carousel[data-theme="1"]{background:#EDE9FB;color:#171313}.hero-carousel[data-theme="2"]{background:#E85A00}.hero-carousel[data-theme="3"]{background:#2A1E63}
.hero-carousel__inner{min-height:600px;position:relative;display:block;padding:0 24px;max-width:1280px}
.hero-slides{position:relative;height:600px;overflow:hidden}
.hero-slide{position:absolute;inset:0;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(380px,.98fr);align-items:center;gap:30px;padding:42px 64px 62px;opacity:0;pointer-events:none;transform:translate3d(42px,0,0);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.75,.25,1)}
.hero-slide.is-active{opacity:1;pointer-events:auto;transform:none}
.hero-copy{max-width:590px;z-index:3;animation:heroCopyIn .75s both}.hero-slide:not(.is-active) .hero-copy{animation:none}
.hero-carousel h1{font-size:clamp(2.7rem,5vw,4.7rem);line-height:.96;letter-spacing:-.035em;margin:18px 0 20px}
.hero-carousel .lede{font-size:1rem;max-width:48ch;color:#ffe0bf}.hero-outline{border-color:currentColor!important;color:inherit!important;background:transparent!important}
.hero-product-stage{position:relative;min-height:450px;display:flex;align-items:center;justify-content:center;z-index:2}
.hero-glow{position:absolute;width:min(430px,88%);aspect-ratio:1;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.3),rgba(255,255,255,.08) 50%,transparent 72%);border:1px solid rgba(255,255,255,.16);animation:heroGlow 4.5s ease-in-out infinite}
.hero-product-image{position:relative;z-index:2;width:min(350px,68%);height:350px;object-fit:contain;mix-blend-mode:multiply;filter:drop-shadow(0 25px 18px rgba(0,0,0,.24));animation:heroFloat 4s ease-in-out infinite}
.hero-product-price{position:absolute;right:4%;top:15%;z-index:4;font-size:1.25rem;font-weight:900;background:rgba(255,255,255,.94);color:#E85A00;padding:9px 13px;border-radius:999px;box-shadow:0 10px 25px rgba(0,0,0,.12);white-space:nowrap}.hero-product-price del{font-size:.82rem;opacity:.55;font-weight:600;margin-left:5px}
.hero-product-caption{position:absolute;z-index:4;bottom:3%;left:50%;transform:translateX(-50%);font-family:'Fraunces',serif;font-size:1.35rem;text-align:center;white-space:nowrap;max-width:80%;overflow:hidden;text-overflow:ellipsis;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.3)}
.hero-arrow{position:absolute;top:50%;z-index:10;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,.55);background:rgba(20,10,10,.25);color:#fff;font-size:2rem;line-height:1;cursor:pointer;backdrop-filter:blur(10px);transition:.2s}.hero-arrow:hover{transform:translateY(-50%) scale(1.08);background:rgba(20,10,10,.5)}.hero-arrow--prev{left:18px}.hero-arrow--next{right:18px}
.hero-dots{position:absolute;left:50%;bottom:22px;transform:translateX(-50%);display:flex;gap:8px;z-index:11}.hero-dot{width:9px;height:9px;border:0;border-radius:50%;background:rgba(255,255,255,.45);cursor:pointer;padding:0;transition:.25s}.hero-dot.is-active{width:28px;border-radius:99px;background:#fff}
.hero-carousel[data-theme="1"] .hero__eyebrow,.hero-carousel[data-theme="1"] .hero__urdu,.hero-carousel[data-theme="1"] .hero-carousel h1{color:#201A16}.hero-carousel[data-theme="1"] .hero__stats span{color:#5c5580}.hero-carousel[data-theme="1"] .hero-glow{background:radial-gradient(circle,rgba(255,255,255,.75),rgba(255,255,255,.18) 48%,transparent 70%)}
@keyframes heroFloat{0%,100%{transform:translateY(0) rotate(0deg) scale(1)}50%{transform:translateY(-14px) rotate(-1deg) scale(1.025)}}
@keyframes heroGlow{0%,100%{transform:scale(.97);opacity:.75}50%{transform:scale(1.04);opacity:1}}
@keyframes heroCopyIn{from{opacity:0;transform:translateX(-22px)}to{opacity:1;transform:none}}
@media(max-width:800px){.hero-carousel,.hero-carousel__inner,.hero-slides{min-height:700px;height:700px}.hero-slide{grid-template-columns:1fr;padding:30px 28px 68px;text-align:center;align-content:center;gap:4px}.hero-copy{margin:0 auto}.hero-carousel .hero__cta,.hero-carousel .hero__stats{justify-content:center}.hero__urdu{text-align:center!important;margin-left:auto;margin-right:auto}.hero-product-stage{min-height:300px;order:-1}.hero-product-image{height:275px;width:72%}.hero-product-price{right:8%;top:5%;font-size:1.05rem}.hero-product-caption{bottom:0;font-size:1.05rem}.hero-arrow--prev{left:8px}.hero-arrow--next{right:8px}}
@media(max-width:520px){.hero-carousel h1{font-size:2.3rem}.hero-carousel .lede{font-size:.9rem}.hero-carousel .hero__stats{gap:16px}.hero-carousel .hero__stats strong{font-size:1.15rem}.hero-carousel .hero__stats span{font-size:.68rem}.hero-product-stage{min-height:245px}.hero-product-image{height:225px}.hero-slides{border-radius:0}}


/* PHASE 28 V4 — round product presentation + visual white-background blending */
.hero-product-stage{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:500px;overflow:visible}
.hero-product-orbit{position:relative;width:min(390px,34vw);height:min(390px,34vw);min-width:280px;min-height:280px;border-radius:50%;display:flex;align-items:center;justify-content:center;overflow:visible}
.hero-product-disc{position:absolute;inset:0;border-radius:50%;background:radial-gradient(circle at 35% 28%,rgba(255,255,255,.18),rgba(255,255,255,.04) 48%,transparent 72%);border:1px solid rgba(255,255,255,.20);box-shadow:inset 0 0 50px rgba(255,255,255,.05),0 20px 60px rgba(0,0,0,.10)}
.hero-product-image{position:relative;z-index:3;width:82%;height:82%;object-fit:contain;mix-blend-mode:multiply;filter:drop-shadow(0 22px 24px rgba(0,0,0,.18));animation:heroProductFloat 4.2s ease-in-out infinite;transition:transform .6s ease,filter .6s ease}
.hero-slide.is-active .hero-product-image{transform:scale(1.02)}
.hero-product-caption{position:relative;z-index:5;margin-top:14px;font-family:'Fraunces',serif;font-size:1.18rem;font-weight:700;text-align:center;max-width:360px}
.hero-product-price{position:absolute;right:2%;top:17%;z-index:7;background:#fff;color:#E85A00;border-radius:999px;padding:10px 18px;font-weight:800;box-shadow:0 10px 25px rgba(0,0,0,.12)}
.hero-product-price del{font-size:.8em;color:#8d81b0;font-weight:500;margin-left:6px}
@keyframes heroProductFloat{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-10px) scale(1.015)}}
.hero-carousel .hero-arrow{z-index:10}.hero-carousel .hero-dots{z-index:10}
@media(max-width:800px){.hero-product-orbit{width:min(320px,72vw);height:min(320px,72vw);min-width:240px;min-height:240px}.hero-product-stage{min-height:360px}.hero-product-price{right:0;top:8%;padding:8px 13px}.hero-product-caption{font-size:1rem}.hero-slide{grid-template-columns:1fr;gap:0;padding:30px 22px 56px}.hero-copy{order:1}.hero-product-stage{order:2}.hero-carousel h1{font-size:clamp(2.2rem,11vw,3.6rem)}}

/* Phase 28 V5 — clean hero product cutout presentation */
.hero-product-orbit{background:transparent!important;overflow:visible!important;}
.hero-product-disc{background:radial-gradient(circle,rgba(255,255,255,.12),rgba(255,255,255,.035) 52%,transparent 72%)!important;}
.hero-product-image.hero-product-cutout{mix-blend-mode:normal!important;background:transparent!important;object-fit:contain!important;border-radius:50%!important;filter:drop-shadow(0 24px 22px rgba(0,0,0,.20));}
.hero-product-caption{margin-top:18px!important;}

/* ============ MARKET / CURRENCY SWITCHER ============ */
.market-switcher{display:flex;align-items:center;gap:5px;border:1px solid var(--line);background:var(--surface);border-radius:999px;padding:4px 8px;font-size:.78rem;font-weight:700;white-space:nowrap}
.market-switcher__globe{font-size:.85rem;line-height:1}
.market-switcher select{border:0;background:transparent;color:var(--ink);font:inherit;outline:none;cursor:pointer;max-width:125px}
@media(max-width:900px){.market-switcher select{max-width:105px}.market-switcher{padding:4px 6px}}
@media(max-width:700px){.market-switcher{order:0}.market-switcher__globe{display:none}.market-switcher select{max-width:92px;font-size:.72rem}.header-actions{gap:2px}.account-header-link span{display:none}}

/* ===== PHASE 31.6 — MOBILE RESPONSIVE / FULL-WIDTH FIX ===== */
html, body { width:100%; max-width:100%; min-width:0; overflow-x:hidden; }
body { min-height:100%; }
#app { width:100%; max-width:100%; min-width:0; overflow-x:clip; }
#app > * { max-width:100%; }
.site-header, .site-header__inner, .search-bar, .hero-carousel, .hero-carousel__inner,
.hero-slides, .features, .features__inner, .site-footer { max-width:100%; min-width:0; }
.site-header__inner { width:100%; }
.container { width:100%; max-width:1180px; }

@media (max-width: 800px){
  .site-header__inner { padding:10px 12px; gap:7px; }
  .brand { min-width:0; gap:6px; margin-right:auto; }
  .brand__mark { flex:0 0 auto; font-size:.95rem; padding:3px 7px; }
  .brand__name { min-width:0; font-size:1rem; line-height:1.05; }
  .header-actions { flex:0 0 auto; gap:1px; }
  .header-actions .icon-btn { width:36px; height:36px; flex:0 0 36px; }
  .account-header-link { width:36px; min-width:36px; height:36px; padding:0; flex:0 0 36px; }
  .market-switcher { flex:0 0 auto; max-width:112px; overflow:hidden; }
  .market-switcher select { max-width:88px; min-width:0; }

  .main-nav.open-mobile { left:0; right:0; width:100%; box-sizing:border-box; }
  .search-bar { width:100%; box-sizing:border-box; padding-left:12px; padding-right:12px; }
  .search-bar.open { max-width:100%; }

  .hero-carousel { width:100%; overflow:hidden; }
  .hero-carousel__inner { width:100%; padding:0; }
  .hero-slides { width:100%; overflow:hidden; }
  .hero-slide { width:100%; min-width:0; box-sizing:border-box; }
  .hero-copy { width:100%; max-width:620px; min-width:0; box-sizing:border-box; padding-left:4px; padding-right:4px; }
  .hero-carousel h1 { max-width:100%; overflow-wrap:anywhere; }
  .hero-carousel .lede { max-width:100%; }
  .hero__stats { width:100%; max-width:100%; flex-wrap:wrap; }
  .hero__stats > div { min-width:0; }
  .hero-product-stage { width:100%; min-width:0; overflow:visible; }
  .hero-product-orbit { max-width:72vw; }
  .hero-product-caption { max-width:72vw; white-space:normal; overflow-wrap:anywhere; }
  .hero-product-price { max-width:48vw; overflow:hidden; text-overflow:ellipsis; }

  .section.container, .container.section, .container.section--tight { padding-left:16px; padding-right:16px; }
  .features__inner { padding-left:16px; padding-right:16px; }
  .trust__inner { padding-left:16px; padding-right:16px; }
  .grid { width:100%; min-width:0; }
  .card { min-width:0; }
  .card__title, .card__cat { overflow-wrap:anywhere; }
  .cms-banner-grid, .banner-split { width:100%; min-width:0; }
}

@media (max-width: 430px){
  .site-header__inner { padding-left:8px; padding-right:8px; }
  .brand__name { font-size:.94rem; }
  .market-switcher { max-width:94px; padding-left:4px; padding-right:4px; }
  .market-switcher select { max-width:76px; font-size:.68rem; }
  .header-actions .icon-btn, .account-header-link { width:34px; height:34px; flex-basis:34px; min-width:34px; }
  .hero-carousel,.hero-carousel__inner,.hero-slides { min-height:720px; height:720px; }
  .hero-slide { padding:22px 16px 58px; }
  .hero-product-orbit { width:min(270px,68vw); height:min(270px,68vw); min-width:210px; min-height:210px; }
  .hero-product-image { width:82%; height:82%; }
  .hero-product-price { right:2px; top:4%; font-size:.9rem; padding:7px 10px; }
  .hero-carousel h1 { font-size:clamp(1.9rem,9vw,2.45rem); line-height:1; }
  .hero-carousel .lede { font-size:.86rem; line-height:1.55; }
  .hero__cta { grid-template-columns:1fr !important; }
  .hero__stats { gap:10px !important; justify-content:space-between !important; }
  .hero__stats > div { flex:1 1 30%; text-align:center; }
  .hero__stats strong { font-size:1.05rem !important; }
  .hero__stats span { font-size:.62rem !important; }
  .hero__urdu { font-size:.88rem; line-height:1.8; }
  .hero-arrow { width:40px; height:40px; font-size:1.65rem; }
  .hero-arrow--prev { left:6px; }
  .hero-arrow--next { right:6px; }
}


/* ===== PHASE 31.7 — PROFESSIONAL RESPONSIVE HEADER ===== */
.site-header{background:rgba(255,255,255,.98);backdrop-filter:saturate(140%) blur(10px);box-shadow:0 1px 0 rgba(20,20,20,.05)}
.site-header__inner{
  width:100%;
  max-width:1320px;
  min-height:68px;
  box-sizing:border-box;
  padding:12px 22px;
  gap:18px;
}
.brand{
  flex:0 0 auto;
  margin-right:4px;
  gap:9px;
  align-items:center;
  white-space:nowrap;
}
.brand__mark{font-size:1rem;padding:4px 8px;line-height:1}
.brand__name{font-size:1.15rem;line-height:1.02;white-space:nowrap}
.main-nav{
  flex:1 1 auto;
  min-width:0;
  justify-content:center;
  gap:20px;
  align-items:center;
}
.main-nav a{
  flex:0 0 auto;
  white-space:nowrap;
  font-size:.86rem;
  font-weight:650;
  padding:8px 0;
}
.header-actions{
  flex:0 0 auto;
  gap:5px;
  align-items:center;
}
.market-switcher{flex:0 0 auto}
.account-header-link{min-height:38px;padding:0 11px}
.icon-btn{width:38px;height:38px;flex:0 0 38px}

/* Keep desktop navigation on one clean line */
@media (min-width:901px){
  .nav-toggle{display:none!important}
  .main-nav{display:flex!important}
}

/* Medium desktop/tablet: tighten before switching to mobile menu */
@media (max-width:1100px) and (min-width:901px){
  .site-header__inner{padding-left:16px;padding-right:16px;gap:12px}
  .main-nav{gap:13px}
  .main-nav a{font-size:.79rem}
  .brand__name{font-size:1.03rem}
  .market-switcher{max-width:118px}
  .market-switcher select{max-width:92px}
  .account-header-link{padding:0 8px}
  .account-header-link span{font-size:12px}
}

/* Mobile: clean compact header with menu first, actions grouped on the right */
@media (max-width:900px){
  .site-header__inner{
    max-width:none;
    min-height:62px;
    padding:9px 12px;
    gap:8px;
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
  }
  .nav-toggle{
    display:flex!important;
    width:40px;height:40px;flex:0 0 40px;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:10px;
  }
  .brand{min-width:0;margin:0;gap:6px}
  .brand__mark{font-size:.9rem;padding:4px 7px}
  .brand__name{
    min-width:0;
    font-size:1rem;
    line-height:1.02;
    white-space:normal;
    max-width:90px;
  }
  .main-nav{display:none}
  .header-actions{
    min-width:0;
    gap:3px;
    justify-content:flex-end;
  }
  .market-switcher{
    max-width:108px;
    min-width:0;
    padding:4px 6px;
  }
  .market-switcher select{max-width:82px;min-width:0;font-size:.7rem}
  .account-header-link{
    width:38px;min-width:38px;height:38px;
    padding:0;border-radius:10px;
    justify-content:center;
  }
  .account-header-link span{display:none}
  .header-actions .icon-btn{width:38px;height:38px;flex-basis:38px}
}

/* Small phones: prioritize usable touch targets and prevent clipping */
@media (max-width:430px){
  .site-header__inner{padding:8px 9px;gap:7px}
  .nav-toggle{width:38px;height:38px;flex-basis:38px}
  .brand__mark{font-size:.86rem}
  .brand__name{font-size:.92rem;max-width:78px}
  .market-switcher{max-width:86px;padding:3px 4px}
  .market-switcher select{max-width:68px;font-size:.65rem}
  .header-actions{gap:1px}
  .header-actions .icon-btn,.account-header-link{
    width:35px;height:35px;min-width:35px;flex-basis:35px
  }
  .header-actions .icon-btn svg,.account-header-link svg{width:18px;height:18px}
}
/* Phase 31.8 — professional CMS banner editor */
.banner-admin-preview{margin:12px 0;border:1px solid var(--line,#e6ddd7);border-radius:12px;overflow:hidden;background:#f8f4f1;max-height:240px}
.banner-admin-preview img{display:block;width:100%;height:220px;object-fit:cover}
.banner-admin-preview{margin:12px 0;border:1px solid var(--line,#e6ddd7);border-radius:12px;overflow:hidden;background:#f8f4f1;max-height:240px}.banner-admin-preview img{display:block;width:100%;height:220px;object-fit:cover}

/* ===== PHASE 31.9 — FINAL MOBILE HEADER + HERO STABILITY ===== */
/* Prevent non-active hero slides from visually stacking during transitions. */
.hero-slide{visibility:hidden;z-index:0;}
.hero-slide.is-active{visibility:visible;z-index:1;}

@media (max-width:900px){
  .site-header{width:100%;max-width:100%;overflow:visible;}
  .site-header__inner{width:100%;max-width:none;box-sizing:border-box;}
  .main-nav.open-mobile{
    position:absolute!important;
    top:100%!important;
    left:0!important;
    right:auto!important;
    width:100%!important;
    max-width:none!important;
    box-sizing:border-box!important;
    padding:8px 18px 18px!important;
    background:#fff!important;
    z-index:100!important;
  }
  .main-nav.open-mobile a{display:block;width:100%;box-sizing:border-box;text-align:center;padding:14px 8px!important;}
}

@media (max-width:600px){
  .site-header__inner{
    display:flex!important;
    align-items:center!important;
    width:100%!important;
    padding:8px 10px!important;
    gap:6px!important;
    min-height:58px!important;
  }
  .nav-toggle{
    width:36px!important;height:36px!important;min-width:36px!important;flex:0 0 36px!important;
    border-radius:10px!important;
  }
  .brand{
    min-width:0!important;max-width:82px!important;flex:1 1 auto!important;
    margin:0!important;gap:5px!important;overflow:hidden!important;
  }
  .brand__mark{font-size:.82rem!important;padding:4px 6px!important;flex:0 0 auto!important;}
  .brand__name{font-size:.88rem!important;line-height:1!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;max-width:68px!important;}
  .header-actions{
    margin-left:auto!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;
    flex:0 0 auto!important;min-width:0!important;gap:2px!important;overflow:visible!important;
  }
  .market-switcher{
    flex:0 0 72px!important;width:72px!important;max-width:72px!important;min-width:72px!important;
    height:32px!important;box-sizing:border-box!important;padding:3px 4px!important;gap:2px!important;
  }
  .market-switcher select{width:100%!important;max-width:100%!important;font-size:.64rem!important;padding:0!important;}
  .header-actions .icon-btn,.account-header-link{
    width:32px!important;height:32px!important;min-width:32px!important;flex:0 0 32px!important;
  }
  .header-actions .icon-btn svg,.account-header-link svg{width:18px!important;height:18px!important;}
  .badge{top:-1px!important;right:-1px!important;min-width:15px!important;height:15px!important;font-size:.56rem!important;}
  .main-nav.open-mobile{padding-left:16px!important;padding-right:16px!important;}
  .main-nav.open-mobile a{font-size:1rem!important;padding:13px 8px!important;}
}

@media (max-width:380px){
  .site-header__inner{padding-left:7px!important;padding-right:7px!important;gap:4px!important;}
  .nav-toggle{width:34px!important;height:34px!important;min-width:34px!important;flex-basis:34px!important;}
  .brand{max-width:72px!important;gap:4px!important;}
  .brand__mark{font-size:.78rem!important;padding:4px 5px!important;}
  .brand__name{font-size:.82rem!important;max-width:57px!important;}
  .market-switcher{width:68px!important;min-width:68px!important;flex-basis:68px!important;}
  .header-actions{gap:1px!important;}
  .header-actions .icon-btn,.account-header-link{width:30px!important;height:30px!important;min-width:30px!important;flex-basis:30px!important;}
  .header-actions .icon-btn svg,.account-header-link svg{width:17px!important;height:17px!important;}
}

/* ===== FLAT HERO PRODUCT — remove circular disc/ring/orbit, framed card look, no float ===== */
.hero-glow{ display:none !important; }
.hero-product-disc{ display:none !important; }
.hero-product-stage{ min-height:420px; }
.hero-product-orbit{
  position:relative;
  width:min(400px,32vw) !important; height:min(400px,32vw) !important;
  min-width:280px !important; min-height:280px !important;
  max-width:420px; max-height:420px;
  background: rgba(255,255,255,.14) !important;
  border:1px solid rgba(255,255,255,.22) !important;
  border-radius: 28px !important;
  box-shadow: 0 30px 60px rgba(20,10,60,.22) !important;
  display:flex !important; align-items:center; justify-content:center;
  padding: 26px; box-sizing:border-box;
}
.hero-product-image,
.hero-product-image.hero-product-cutout{
  position:relative !important; z-index:2;
  width:100% !important; height:100% !important;
  border-radius:14px !important;
  mix-blend-mode:normal !important;
  background:#fff !important;
  object-fit:contain !important;
  filter:drop-shadow(0 18px 22px rgba(20,10,60,.18)) !important;
  animation:none !important; transform:none !important;
}
.hero-slide.is-active .hero-product-image{ transform:none !important; }
.hero-product-caption{ margin-top:22px !important; }
@media(max-width:800px){
  .hero-product-orbit{ width:min(320px,72vw) !important; height:min(320px,72vw) !important; min-width:240px !important; min-height:240px !important; }
}

/* ==========================================================
   ZM HOME V32 — premium marketplace-inspired home redesign
   ========================================================== */
.site-header__inner{max-width:1320px;padding:18px 28px 14px;gap:22px}
.site-header{background:#fff}
.brand__name{font-family:'Manrope',sans-serif;font-weight:800;letter-spacing:-.04em;font-size:1.45rem;color:#e85a00}
.brand__mark{background:#ff6a00;border-radius:10px;padding:7px 10px}
.search-bar{order:0;max-width:none;flex:1;margin:0;height:52px;background:#fff6ec;border-color:#e6e0f8;box-shadow:0 3px 12px rgba(255,106,0,.05)}
.search-bar button{height:42px;padding:0 28px;background:#ff6a00}
.search-bar button:hover{background:#e85a00}
.main-nav{max-width:1320px;gap:34px;padding:12px 28px 15px;border-top:1px solid #fdeee0}
.main-nav a{font-size:.9rem}
@media(min-width:701px){.nav-toggle{display:flex;order:-1;width:42px;height:42px;background:#fff7ef;border-radius:12px}.nav-toggle:after{content:'All Categories';font-size:.72rem;font-weight:800;margin-left:9px;white-space:nowrap}.nav-toggle{width:132px;border-radius:12px}.nav-toggle svg{flex:none}}
.zm-home{background:#fff;color:#1f1832}
.zm-hero-home{max-width:1320px;margin:0 auto;padding:0 28px 22px;display:grid;grid-template-columns:1fr 1.08fr;gap:0;min-height:470px;border-radius:0 0 22px 22px;overflow:hidden;background:linear-gradient(120deg,#fff3e8 0%,#ffe9d1 50%,#ffe0bf 100%);position:relative}
.zm-hero-home:before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 18% 30%,rgba(255,255,255,.95),transparent 42%),radial-gradient(circle at 85% 35%,rgba(255,178,80,.28),transparent 35%);pointer-events:none}
.zm-hero-home__copy{position:relative;z-index:3;padding:66px 10px 48px 50px;display:flex;flex-direction:column;justify-content:center}
.zm-pill{display:inline-flex;width:max-content;padding:9px 16px;border-radius:999px;background:#ffe0bf;color:#c05a00;font-weight:800;font-size:.78rem}
.zm-hero-home h1{font-family:'Manrope',sans-serif;font-size:clamp(2.8rem,5vw,4.7rem);line-height:.98;letter-spacing:-.055em;color:#241a10;margin:20px 0 16px;max-width:650px;font-weight:800}
.zm-hero-home h1 em{font-style:normal;color:#ff6a00}
.zm-hero-home__copy>p{font-size:1rem;line-height:1.7;color:#6b5c4d;max-width:590px}
.zm-hero-actions{display:flex;gap:14px;margin-top:24px;flex-wrap:wrap}.zm-hero-actions .btn{padding:14px 24px}.zm-hero-actions .btn--primary{background:#ff6a00}.zm-hero-actions .btn--outline{background:#fff;border-color:#c78a4a}
.zm-hero-benefits{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:28px;max-width:700px}.zm-hero-benefits>div{display:flex;align-items:center;gap:9px}.zm-hero-benefits b{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#ffe6c9;color:#e85a00;font-size:.9rem}.zm-hero-benefits span{display:grid;gap:2px}.zm-hero-benefits strong{font-size:.68rem}.zm-hero-benefits small{font-size:.58rem;color:#7a6c5c}
.zm-hero-home__visual{position:relative;min-height:470px;display:grid;place-items:center;overflow:hidden}.zm-hero-orb{position:absolute;width:440px;height:440px;border-radius:50%;background:radial-gradient(circle at 40% 35%,#fff,rgba(223,211,255,.72) 55%,rgba(255,190,110,.15) 72%,transparent 73%);box-shadow:inset 0 0 0 1px rgba(255,106,0,.12)}.zm-hero-ring{position:absolute;width:520px;height:260px;border:1px solid rgba(255,106,0,.18);border-radius:50%;transform:rotate(-8deg);bottom:62px}.zm-sale-badge{position:absolute;right:4%;top:56px;z-index:7;width:118px;height:118px;border-radius:50%;background:#ffe6c9;border:1px solid #ffcf94;display:grid;place-items:center;text-align:center;color:#6a3a00;font-size:.9rem;line-height:1.05;box-shadow:0 12px 25px rgba(255,106,0,.12)}.zm-sale-badge strong{font-size:2rem;color:#6a3a00}.zm-hero-float{position:absolute;z-index:5;width:220px;height:220px;border-radius:24px;background:rgba(255,255,255,.78);box-shadow:0 20px 45px rgba(140,70,0,.18);display:grid;place-items:center;backdrop-filter:blur(5px);overflow:hidden;transition:transform .2s}.zm-hero-float:hover{transform:translateY(-5px)}.zm-hero-float img{width:82%;height:82%;object-fit:contain;mix-blend-mode:multiply;filter:drop-shadow(0 15px 16px rgba(0,0,0,.15))}.zm-hero-float span{position:absolute;left:12px;right:12px;bottom:9px;text-align:center;font-size:.68rem;font-weight:800;color:#2a2015;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.zm-hero-float-0{left:15%;top:12%;transform:rotate(-5deg)}.zm-hero-float-1{right:16%;bottom:13%;width:185px;height:185px;transform:rotate(5deg)}.zm-hero-float-2{left:32%;bottom:4%;width:150px;height:150px;transform:rotate(-2deg)}.zm-hero-float-0:hover{transform:rotate(-5deg) translateY(-5px)}.zm-hero-float-1:hover{transform:rotate(5deg) translateY(-5px)}.zm-hero-float-2:hover{transform:rotate(-2deg) translateY(-5px)}.zm-hero-caption{position:absolute;bottom:20px;right:9%;font-weight:800;font-size:.8rem;color:#6b5c4d;z-index:8}.zm-hero-empty{position:relative;z-index:5;width:260px;height:260px;border-radius:50%;display:grid;place-items:center;background:#fff;color:#ff6a00;font-size:2.2rem;font-weight:900;box-shadow:0 30px 50px rgba(140,70,0,.15);text-align:center}
.zm-category-strip{max-width:1320px;margin:22px auto 0;padding:0 28px;display:grid;grid-template-columns:repeat(8,1fr);background:#fff;border:1px solid #f3e6d8;border-radius:20px;overflow:hidden}.zm-cat-tile{min-height:132px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;border-right:1px solid #f3e9dd;text-align:center;transition:background .2s}.zm-cat-tile:last-child{border-right:0}.zm-cat-tile:hover{background:#fff6ec}.zm-cat-icon{width:54px;height:54px;display:grid;place-items:center;color:#fff;font-size:1.6rem;background:linear-gradient(145deg,#ff8a2e,#ff6a00);border-radius:50%;box-shadow:0 8px 16px rgba(255,106,0,.28)}.zm-cat-icon svg{stroke:#fff!important;width:26px;height:26px}.zm-cat-tile strong{font-size:.75rem}.zm-cat-tile small{font-size:.62rem;color:#7a6c5c}
.zm-section{max-width:1320px;margin:38px auto;padding:0 28px}.zm-section-head{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:18px}.zm-section-head h2{font-family:'Manrope',sans-serif;font-size:1.65rem;font-weight:800;letter-spacing:-.035em;margin:4px 0}.zm-section-head p{font-size:.82rem;color:#7a6c5c}.zm-section-head>a{font-size:.75rem;font-weight:800;color:#e85a00}.zm-kicker{font-size:.64rem;letter-spacing:.13em;font-weight:900;color:#a3703a}.zm-products-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.zm-products-grid .card{border:1px solid #f3e6d8;border-radius:15px;overflow:hidden;background:#fff;box-shadow:0 7px 18px rgba(90,50,0,.05);transition:transform .18s,box-shadow .18s}.zm-products-grid .card:hover{transform:translateY(-4px);box-shadow:0 16px 30px rgba(90,50,0,.1)}.zm-products-grid .card__media{height:215px;background:#fff6ec!important}.zm-products-grid .card__body{padding:12px}.zm-products-grid .card__cat{font-size:.6rem}.zm-products-grid .card__title{font-size:.82rem;min-height:38px}.zm-products-grid .card__price{font-size:.85rem}.zm-products-grid .card__add{width:100%;border-radius:10px}
.zm-brand-banner{max-width:1320px;margin:16px auto 42px;padding:20px 28px;border-radius:16px;background:linear-gradient(100deg,#ff8a2e,#ffb066);color:#fff;display:grid;grid-template-columns:auto auto 1fr;align-items:center;gap:24px}.zm-brand-banner>div:first-child{display:grid;gap:4px}.zm-brand-banner span{font-size:1.05rem;font-weight:900}.zm-brand-banner small{font-size:.7rem;opacity:.82}.zm-brand-banner .btn{background:#fff;color:#e85a00;border:0;padding:10px 17px;font-size:.75rem}.zm-brand-list{display:flex;justify-content:flex-end;gap:28px;align-items:center;opacity:.9;overflow:hidden}.zm-brand-list b{font-size:.7rem;white-space:nowrap;letter-spacing:.06em}
.zm-trust-strip{max-width:1320px;margin:12px auto 44px;padding:0 28px;display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:#f3e9dd;border:1px solid #f3e9dd;border-radius:16px;overflow:hidden}.zm-trust-strip>div{background:#fff6ec;padding:18px;display:flex;gap:12px;align-items:center}.zm-trust-strip b{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#ffe6c9;color:#c05a00}.zm-trust-strip span{display:grid;gap:4px}.zm-trust-strip strong{font-size:.72rem}.zm-trust-strip small{font-size:.6rem;color:#7a6c5c}
@media(max-width:1050px){.zm-products-grid{grid-template-columns:repeat(4,1fr)}.zm-category-strip{grid-template-columns:repeat(4,1fr)}.zm-cat-tile:nth-child(4){border-right:0}.zm-brand-list{display:none}.zm-brand-banner{grid-template-columns:1fr auto}.zm-hero-home{grid-template-columns:1fr}.zm-hero-home__visual{min-height:380px}.zm-hero-home__copy{padding-left:34px}.zm-hero-benefits{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.site-header__inner{display:grid;grid-template-columns:auto 1fr auto;padding:12px 14px;gap:10px}.brand{margin:0;min-width:0}.brand__name{font-size:1.05rem}.brand__mark{font-size:.82rem;padding:5px 7px}.search-bar{grid-column:1/-1;grid-row:2;width:100%;height:44px;margin:0}.search-bar button{height:36px;padding:0 18px}.header-actions{gap:6px}.icon-btn--labeled small,.account-header-link small{display:none}.icon-btn--labeled,.account-header-link{width:36px;height:36px}.nav-toggle{display:flex!important;order:0;width:38px!important}.nav-toggle:after{display:none}.main-nav{display:none}.main-nav.open-mobile{display:flex;position:absolute;top:100%;left:0;right:0;background:#fff;box-shadow:0 15px 25px rgba(50,25,0,.12);flex-direction:column;align-items:stretch;gap:0;padding:10px 18px;z-index:70}.main-nav.open-mobile a{padding:11px 4px;border-bottom:1px solid #eee}.zm-hero-home{padding:0 14px 16px;border-radius:0;min-height:0}.zm-hero-home__copy{padding:40px 14px 20px}.zm-hero-home h1{font-size:2.45rem}.zm-hero-benefits{gap:8px}.zm-hero-home__visual{min-height:330px}.zm-hero-orb{width:290px;height:290px}.zm-hero-float{width:145px;height:145px}.zm-hero-float-1{width:120px;height:120px}.zm-hero-float-2{width:100px;height:100px}.zm-sale-badge{width:78px;height:78px;right:4%;top:18px;font-size:.6rem}.zm-sale-badge strong{font-size:1.3rem}.zm-category-strip{margin:14px 14px 0;padding:0;grid-template-columns:repeat(4,1fr)}.zm-cat-tile{min-height:105px}.zm-cat-tile strong{font-size:.62rem}.zm-cat-tile small{font-size:.52rem}.zm-section{padding:0 14px;margin:30px auto}.zm-products-grid{grid-template-columns:repeat(2,1fr);gap:10px}.zm-products-grid .card__media{height:165px}.zm-section-head h2{font-size:1.35rem}.zm-section-head p{font-size:.7rem}.zm-brand-banner{margin:10px 14px 28px;padding:18px;grid-template-columns:1fr}.zm-trust-strip{margin:10px 14px 30px;padding:0;grid-template-columns:1fr 1fr}.zm-trust-strip>div{padding:12px}.zm-trust-strip b{width:34px;height:34px}.zm-trust-strip strong{font-size:.62rem}.zm-trust-strip small{font-size:.52rem}}
@media(max-width:380px){.brand__name{font-size:.92rem}.zm-hero-home h1{font-size:2.15rem}.zm-products-grid .card__media{height:145px}}

/* ============ PROMO HERO CAROUSEL (Super Sale banner style) ============ */
.zm-promo-hero{position:relative;max-width:1320px;margin:14px auto 6px;padding:0 28px}
.zm-promo-track{position:relative;border-radius:20px;overflow:hidden;min-height:420px;box-shadow:0 20px 40px rgba(90,50,0,.18)}
.zm-promo-slide{position:absolute;inset:0;display:grid;grid-template-columns:1.05fr .95fr;align-items:center;padding:0 56px;opacity:0;pointer-events:none;transform:translateX(24px);transition:opacity .6s ease,transform .6s ease;color:#fff}
.zm-promo-slide.is-active{opacity:1;pointer-events:auto;transform:none;position:relative}
.zm-promo-slide--0{background:linear-gradient(120deg,#ff9a3c 0%,#ff6a00 55%,#c94500 100%)}
.zm-promo-slide--1{background:linear-gradient(120deg,#ffb347 0%,#ff7a1a 55%,#d94d00 100%)}
.zm-promo-slide--2{background:linear-gradient(120deg,#ff8a3c 0%,#ff5a00 55%,#a83a00 100%)}
.zm-promo-slide--3{background:linear-gradient(120deg,#ffa64d 0%,#ff6f0f 55%,#c14200 100%)}
.zm-promo-slide--4{background:linear-gradient(120deg,#ff9130 0%,#ff5e0e 55%,#b83900 100%)}
.zm-promo-copy{position:relative;z-index:3;padding:30px 0}
.zm-promo-script{display:block;font-family:'Fraunces',serif;font-style:italic;font-weight:500;font-size:1.5rem;color:#ffe6c9;margin-bottom:2px}
.zm-promo-title{font-family:'Manrope',sans-serif;font-weight:900;font-size:clamp(2rem,4.6vw,3.4rem);line-height:1.02;text-transform:uppercase;letter-spacing:-.02em;color:#fff;margin:0 0 10px;text-shadow:0 6px 18px rgba(0,0,0,.18)}
.zm-promo-sub{font-family:'Fraunces',serif;font-style:italic;font-size:1.05rem;color:#fff3e0;margin-bottom:22px}
.zm-promo-cta{display:inline-flex;align-items:center;gap:8px;background:#fff;color:#c94500;font-weight:800;padding:13px 28px;border-radius:999px;font-size:.85rem;letter-spacing:.03em;box-shadow:0 10px 22px rgba(0,0,0,.18);transition:transform .15s}
.zm-promo-cta:hover{transform:translateY(-2px)}
.zm-promo-visual{position:relative;z-index:2;display:grid;place-items:center;min-height:280px}
.zm-promo-visual img{max-height:300px;width:auto;object-fit:contain;filter:drop-shadow(0 20px 30px rgba(0,0,0,.3))}
.zm-promo-badge{position:absolute;top:26px;right:36px;z-index:4;width:88px;height:88px;border-radius:50%;background:rgba(255,255,255,.16);border:2px solid rgba(255,255,255,.7);display:grid;place-items:center;text-align:center;color:#fff;font-size:.68rem;line-height:1.1;font-weight:700;backdrop-filter:blur(2px)}
.zm-promo-badge strong{display:block;font-size:1.5rem;font-weight:900}
.zm-promo-dots{position:absolute;left:50%;bottom:18px;transform:translateX(-50%);display:flex;gap:8px;z-index:6}
.zm-promo-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.5);cursor:pointer;transition:all .2s;border:0;padding:0}
.zm-promo-dot.is-active{width:22px;border-radius:5px;background:#fff}
.zm-promo-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:6;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.22);border:1px solid rgba(255,255,255,.5);color:#fff;display:grid;place-items:center;cursor:pointer;transition:background .2s}
.zm-promo-arrow:hover{background:rgba(255,255,255,.4)}
.zm-promo-arrow--prev{left:18px}
.zm-promo-arrow--next{right:18px}
@media(max-width:800px){
  .zm-promo-hero{padding:0 14px;margin:10px auto 16px}
  .zm-promo-track{min-height:360px}
  .zm-promo-slide{grid-template-columns:1fr;padding:26px 22px 44px;text-align:center;align-content:end;gap:6px}
  .zm-promo-copy{padding:0}
  .zm-promo-visual{order:-1;min-height:150px}
  .zm-promo-visual img{max-height:150px}
  .zm-promo-badge{width:66px;height:66px;top:14px;right:16px;font-size:.56rem}
  .zm-promo-badge strong{font-size:1.1rem}
  .zm-promo-arrow{width:32px;height:32px}
}
