/* SEARCH-WIDTH-FIX-V2 — agar ye line live CSS me nazar aaye to file update ho gayi */
/* ============================================================
   BEST N BEYOND — Theme
   Palette: ink #121212 | gold #b5985a | paper #ffffff | sale red #e53935
   Type: Playfair Display (display) + Jost (body)
   ============================================================ */
:root {
  --ink: #121212;
  --ink-soft: #2a2a2a;
  --gold: #b5985a;
  --gold-deep: #9c7f42;
  --gold-tint: #f6f0e4;
  --paper: #ffffff;
  --mist: #f5f5f4;
  --line: #e8e6e1;
  --muted: #7a7a76;
  --sale: #e53935;
  --green: #2e7d32;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 6px 24px rgba(18,18,18,.07);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 15.5px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.desktop-only { display: flex; }
.mobile-only { display: none; }

h1,h2,h3,.display { font-family: var(--font-display); }

/* ---------------- Topbar ---------------- */
.topbar {
  background: var(--ink); color: #d8c9a5;
  text-align: center; font-size: 12.5px; letter-spacing: .12em;
  text-transform: uppercase; padding: 8px 14px;
}
.topbar i { vertical-align: -2px; margin-right: 6px; }

/* ---------------- Header ---------------- */
.site-header {
  background: var(--paper); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 90;
}
.header-inner { display: flex; align-items: center; gap: 20px; padding: 9px 20px; }
.site-header .container.header-inner { max-width: 1460px; }

.logo { display: flex; flex-direction: column; line-height: 1; align-items: flex-start; }

/* Uploaded logo image — responsive */
.logo-img {
  height: 46px; width: auto; max-width: 210px; object-fit: contain; display: block;
}
/* Jab logo image ho to neeche site name — black + goldish glow */
.logo .logo-img + .logo-sub {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: .02em; text-transform: none; color: #111;
  margin-top: 4px;
  text-shadow:
    0 0 6px rgba(181, 152, 90, .55),
    0 0 12px rgba(181, 152, 90, .35),
    0 0 2px rgba(156, 127, 66, .6);
}
.logo-main {
  font-family: var(--font-display); font-weight: 700; font-size: 27px;
  letter-spacing: .04em;
}
.logo-main.light { color: #fff; }
.logo-sub {
  font-size: 8.5px; letter-spacing: .42em; color: var(--gold);
  text-transform: uppercase; margin-top: 3px; font-weight: 500;
}
.logo-sub.gold { color: var(--gold); }

.btn-cats {
  background: var(--ink); color: #fff; border: none;
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
}
.btn-cats i { font-size: 18px; }

.cat-menu-wrap { position: relative; margin-left: auto; }
.cat-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 296px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 22px 56px rgba(18,18,18,.16); padding: 10px; display: none; z-index: 99;
  animation: cdIn .18s ease;
}
@keyframes cdIn { from { opacity: 0; transform: translateY(-7px); } }
.cat-dropdown.open { display: block; }
.cd-head {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-deep); padding: 8px 14px 10px; display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid var(--line); margin-bottom: 6px;
}
.cd-head i { font-size: 15px; }
.cat-item { position: relative; }
.cat-item > a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 12px; transition: all .16s;
}
.cat-item > a:hover { background: var(--gold-tint); transform: translateX(3px); }
.ci-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-tint) 0%, #efe5cf 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep); font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(181,152,90,.22);
}
.ci-ico img { width: 100%; height: 100%; object-fit: cover; }
.ci-name { flex: 1; font-weight: 600; font-size: 14.5px; line-height: 1.2; }
.ci-name small { display: block; font-weight: 400; font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: .03em; }
.ci-caret { color: var(--muted); font-size: 14px; transition: all .16s; }
.cat-item > a:hover .ci-caret { color: var(--gold-deep); transform: translateX(2px); }
.cat-sub {
  position: absolute; left: calc(100% + 6px); top: -6px; min-width: 236px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 22px 56px rgba(18,18,18,.16); padding: 10px; display: none;
  animation: cdIn .16s ease;
}
.cat-item.has-sub:hover .cat-sub, .cat-item.has-sub:focus-within .cat-sub { display: block; }
.cat-item.has-sub::after {
  content: ''; position: absolute; top: 0; right: -8px; width: 10px; height: 100%;
}
.cs-head {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  padding: 6px 12px 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px;
}
.cat-sub a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 10px; font-size: 14px; transition: all .14s;
}
.cat-sub a i { color: var(--gold); font-size: 15px; }
.cat-sub a:hover { background: var(--gold-tint); color: var(--gold-deep); transform: translateX(3px); }
.cat-sub .cs-all { font-weight: 600; color: var(--gold-deep); }
.cat-sub .cs-all i { font-size: 16px; }

.search-wrap { display: flex; flex: 1 1 auto; min-width: 420px; position: relative; }
/* Header container wide taake search ko poori jagah mile */
.site-header .container { max-width: 1580px; }
.search-bar {
  display: flex; border: 1.5px solid var(--line);
  border-radius: 999px; overflow: hidden; background: #fff;
  transition: border-color .2s;
}
.search-bar:focus-within { border-color: var(--gold); }
.search-bar input { flex: 1; border: none; outline: none; padding: 10px 20px; background: transparent; }
.search-bar button {
  background: var(--gold); color: #fff; border: none;
  padding: 0 30px; font-weight: 600; font-size: 14.5px; letter-spacing: .03em;
}
.search-bar button:hover { background: var(--gold-deep); }

/* Live search dropdown (desktop) */
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 150;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 18px 44px rgba(18,18,18,.14); overflow: hidden; display: none;
  max-height: 460px; overflow-y: auto;
}
.search-results.open { display: block; }
.sr-item {
  display: flex; align-items: center; gap: 13px; padding: 11px 16px;
  border-bottom: 1px solid #f4f3f0; transition: background .12s;
}
.sr-item:hover { background: var(--gold-tint); }
.sr-item img { width: 46px; height: 46px; object-fit: cover; border-radius: 9px; background: var(--mist); flex-shrink: 0; }
.sr-info { flex: 1; min-width: 0; }
.sr-name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.sr-price .now { color: var(--sale); font-weight: 600; font-size: 13.5px; }
.sr-price .was { color: var(--muted); text-decoration: line-through; font-size: 11.5px; }
.sr-price .off { background: var(--sale); color: #fff; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 999px; }
.sr-go { color: var(--muted); font-size: 15px; }
.sr-oos { background: #f1f0ed; color: var(--muted); font-size: 10.5px; font-weight: 600; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.sr-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; background: var(--ink); color: var(--gold);
  font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
}
.sr-all:hover { background: #000; }
.sr-empty, .sr-loading, .ms-hint {
  padding: 22px 16px; text-align: center; color: var(--muted); font-size: 13.5px;
}
.sr-empty i, .ms-hint i { font-size: 22px; display: block; margin: 0 auto 6px; color: var(--gold); }
.sr-spin { display: inline-block; animation: srspin .8s linear infinite; vertical-align: -3px; margin-right: 6px; }
@keyframes srspin { to { transform: rotate(360deg); } }

/* Mobile full-screen live search (app style) */
.m-search {
  position: fixed; inset: 0; background: #fff; z-index: 400;
  display: flex; flex-direction: column;
  transform: translateY(8px); opacity: 0; pointer-events: none; transition: all .22s ease;
}
.m-search.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.m-search-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px; border-bottom: 1px solid var(--line);
  background: #fff; position: sticky; top: 0;
}
.m-search-bar button {
  width: 42px; height: 42px; border: none; background: none;
  font-size: 21px; color: var(--ink); display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0;
}
.m-search-bar button:active { background: var(--gold-tint); }
.m-search-bar input {
  flex: 1; border: none; outline: none; font-size: 16px; padding: 10px 4px;
  background: transparent; min-width: 0;
}
.m-search-results { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.m-search-results .sr-item { padding: 13px 16px; }
.m-search-results .sr-item img { width: 52px; height: 52px; }
.m-search-results .sr-name { font-size: 14.5px; white-space: normal; }
.m-search-results .sr-all { position: sticky; bottom: 0; }
.m-search-results .ms-hint { padding-top: 60px; }

.header-actions { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.h-action {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 11.5px; color: var(--ink-soft); position: relative;
}
.h-action i { font-size: 23px; }
.h-action:hover { color: var(--gold-deep); }
.cart-badge {
  position: absolute; top: -6px; right: -9px;
  background: var(--sale); color: #fff; font-size: 10.5px; font-weight: 600;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.cart-badge.sm { top: -5px; right: -10px; }

/* ---------------- Flash ---------------- */
.flash {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 999; padding: 13px 26px; border-radius: 999px; font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18); animation: flashIn .3s ease;
  max-width: 92vw; text-align: center;
}
@keyframes flashIn { from { opacity: 0; transform: translate(-50%, -12px); } }
.flash-success { background: var(--ink); color: #fff; border-left: 4px solid var(--gold); }
.flash-error { background: var(--sale); color: #fff; }

/* ---------------- Hero ---------------- */
.hero { padding: 18px 20px 0; max-width: 1280px; margin: 0 auto; }
.hero-slider { position: relative; border-radius: 18px; overflow: hidden; background: var(--ink); }
.hero-slide {
  display: none; position: relative; color: #fff;
  min-height: 280px; padding: 44px 7% 78px;         /* neeche button ki jagah */
  background-size: cover; background-position: center;
  flex-direction: column; justify-content: center; align-items: flex-start;
}
.hero-slide.active { display: flex; }
.hero-slide::before {
  /* Sirf bilkul baaen taraf halka sa saya (text parhne ke liye) —
     image ab FADE nahi hoti, poori clear nazar aati hai */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.28) 18%, rgba(10,10,10,.06) 34%, rgba(10,10,10,0) 48%);
}
/* Text ko background se nahi, apne shadow se parha jaye */
.hero-badge, .hero-title, .hero-sub, .hero-btn { text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.hero-btn { text-shadow: none; }
.hero-slide > * { position: relative; }

/* Poora banner clickable (button na bhi ho to bhi link khulta hai) */
.hero-link { position: absolute; inset: 0; z-index: 3; }

/* Text ka block */
.hero-content { position: relative; z-index: 4; pointer-events: none; max-width: 62%; }

/* ACTION BUTTON — hamesha neeche BAAEN kone me */
.hero-btn {
  position: absolute; left: 7%; bottom: 26px; z-index: 6;
  display: inline-flex; align-items: center; gap: 8px;
}

/* Agar banner par koi text nahi (sirf image) — poori image saaf */
.hero-slide.no-text::before { background: none; }
.hero-slide.no-text { padding: 44px 7% 78px; }
.hero-badge {
  background: var(--gold); color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 600; line-height: 1.08; max-width: 640px;
}
.hero-sub { margin-top: 10px; font-size: 15.5px; color: #d9d9d6; font-weight: 300; letter-spacing: .02em; }
.hero-btn {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: 11px 28px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: all .25s;
}
.hero-btn:hover { background: var(--gold); color: #fff; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.14); color: #fff; font-size: 17px;
  display: flex; align-items: center; justify-content: center; z-index: 5;
  transition: background .2s;
}
.hero-arrow:hover { background: var(--gold); }
.hero-arrow.prev { left: 16px; } .hero-arrow.next { right: 16px; }
.hero-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 5; }
.hero-dot { width: 22px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.3); border: none; transition: all .25s; }
.hero-dot.active { background: var(--gold); width: 34px; }

/* ---------------- Sections ---------------- */
.section { max-width: 1280px; margin: 0 auto; padding: 44px 20px 10px; }
.section-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.section-title { font-size: 26px; font-weight: 700; }
.section-title .accent { color: var(--gold); }
.section-sub {
  font-size: 13px; color: var(--muted); background: var(--mist);
  padding: 5px 14px; border-radius: 999px;
}
.section-head .view-all {
  margin-left: auto; border: 1.5px solid var(--gold); color: var(--gold-deep);
  padding: 9px 22px; border-radius: 999px; font-size: 13.5px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.section-head .view-all:hover { background: var(--gold); color: #fff; }

/* ---------------- Product grid & cards ---------------- */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px;
}
.p-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.p-thumb { position: relative; aspect-ratio: 4/5; background: #fff; overflow: hidden; }
.p-thumb picture { width: 100%; height: 100%; display: block; }
/* contain = product ki poori tasveer (sar/paon cut nahi hote) */
.p-thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; background: #fff; }
.p-card:hover .p-thumb img { transform: scale(1.04); }
.p-off {
  position: absolute; top: 12px; right: 12px; background: var(--sale); color: #fff;
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
}
.p-soldout-badge {
  position: absolute; inset: 0; background: rgba(18,18,18,.55);
  display: flex; align-items: center; justify-content: center;
}
.p-soldout-badge span {
  background: #fff; color: var(--ink); font-family: var(--font-display);
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 24px; border-radius: 999px; font-size: 13px;
}
.p-body { padding: 15px 16px 17px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.p-name { font-size: 14.5px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.p-price { display: flex; align-items: baseline; gap: 9px; }
.p-price .now { color: var(--sale); font-weight: 600; font-size: 17.5px; }
.p-price .was { color: var(--muted); text-decoration: line-through; font-size: 13.5px; }
.p-sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.p-size {
  border: 1px solid var(--line); border-radius: 7px; padding: 4px 10px;
  font-size: 12px; color: var(--ink-soft); background: #fff;
}
.p-btn {
  margin-top: auto; background: var(--ink); color: #fff; text-align: center;
  padding: 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  letter-spacing: .03em; transition: background .2s; border: none; width: 100%;
}
.p-btn:hover { background: var(--gold-deep); }
.p-btn.disabled { background: #c9c9c6; pointer-events: none; }

/* ---------------- Category strip ---------------- */
.cat-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 12px; }
.cat-card {
  background: var(--gold-tint); border-radius: var(--radius-sm); text-align: center;
  padding: 15px 8px; transition: all .25s; border: 1px solid transparent;
}
.cat-card:hover { background: #fff; border-color: var(--gold); transform: translateY(-3px); }
.cat-card i { font-size: 22px; color: var(--gold-deep); }
.cat-card span { display: block; margin-top: 6px; font-weight: 500; font-size: 12.5px; }
.cat-card img { width: 40px !important; height: 40px !important; }

/* ---------------- Shop page ---------------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: start; }
.shop-layout > *, .cart-layout > *, .account-layout > *, .pd-layout > * { min-width: 0; }
.shop-side {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  position: sticky; top: 90px;
}
.shop-side h4, .shop-side-toggle { font-family: var(--font-body); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.shop-side-caret { display: none; } /* desktop: caret hidden, sidebar hamesha khula */
.shop-side-funnel { display: none; } /* desktop: funnel icon hidden */
.side-cat a { display: block; padding: 8px 4px; font-size: 14.5px; border-radius: 6px; }
.side-cat a.active, .side-cat a:hover { color: var(--gold-deep); font-weight: 600; }
.side-cat .sub { padding-left: 16px; font-size: 13.5px; color: var(--muted); }
.page-title-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.page-title { font-size: 30px; font-weight: 700; }
.result-count { color: var(--muted); font-size: 13.5px; }
.sort-select {
  border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 18px;
  background: #fff; outline: none; font-size: 14px;
}

/* ---------------- Breadcrumb ---------------- */
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--gold-deep); }

/* ---------------- Product detail ---------------- */
.pd-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.pd-gallery { position: relative; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--mist); }
.pd-swiper {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  aspect-ratio: 4/5; -webkit-overflow-scrolling: touch;   /* portrait — kapron ke liye */
  scrollbar-width: none; background: #fff;
}
.pd-swiper::-webkit-scrollbar { display: none; }
.pd-slide { flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; }
.pd-slide { display: flex; align-items: center; justify-content: center; background: #fff; }
.pd-slide picture { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
/* contain = poori image nazar aayegi, upar/neeche se cut NAHI hogi */
.pd-slide img { width: 100%; height: 100%; object-fit: contain; cursor: zoom-in; }
.pd-zoom-btn {
  position: absolute; top: 14px; right: 14px; width: 42px; height: 42px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.14); z-index: 3;
}
.pd-zoom-btn:hover { background: var(--gold); color: #fff; }
.pd-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
}
.pd-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.65); box-shadow: 0 1px 4px rgba(0,0,0,.25); transition: all .2s; padding: 0; }
.pd-dot.active { background: var(--gold); width: 20px; border-radius: 999px; }

/* Zoom lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,.94); z-index: 300;
  display: none;
}
.lightbox.open { display: block; }
.lb-scroll {
  width: 100%; height: 100%; overflow: auto; display: flex;
  align-items: center; justify-content: center; -webkit-overflow-scrolling: touch;
}
.lb-scroll img {
  max-width: 94vw; max-height: 90vh; object-fit: contain; cursor: zoom-in;
  transition: max-width .2s;
}
.lightbox.zoomed .lb-scroll { display: block; }
.lightbox.zoomed .lb-scroll img { max-width: 230vw; max-height: none; width: 230vw; cursor: zoom-out; }
.lb-close {
  position: fixed; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.14); color: #fff; font-size: 21px; z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: var(--sale); }
.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff;
  font-size: 20px; z-index: 5; display: flex; align-items: center; justify-content: center;
}
.lb-arrow:hover { background: var(--gold); }
.lb-arrow.prev { left: 14px; } .lb-arrow.next { right: 14px; }
.lb-hint {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: #d9d9d6; font-size: 12.5px; background: rgba(255,255,255,.1);
  padding: 7px 16px; border-radius: 999px; z-index: 5; white-space: nowrap;
}
.pd-thumbs { display: flex; gap: 10px; }
.pd-thumb { -webkit-tap-highlight-color: transparent; }
.pd-thumb {
  width: 76px; height: 76px; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--line); cursor: pointer; background: var(--mist);
}
.pd-thumb.active { border-color: var(--gold); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-cat { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.pd-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 600; line-height: 1.15; margin: 8px 0 14px; }
.pd-price { display: flex; align-items: baseline; gap: 13px; margin-bottom: 6px; }
.pd-price .now { color: var(--sale); font-weight: 600; font-size: 28px; }
.pd-price .was { color: var(--muted); text-decoration: line-through; font-size: 17px; }
.pd-price .off { background: var(--sale); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.pd-stock { font-size: 13.5px; margin-bottom: 18px; }
.pd-stock.in { color: var(--green); } .pd-stock.low { color: #e65100; } .pd-stock.out { color: var(--sale); font-weight: 600; }
.pd-label { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; font-weight: 500; }
.variant-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.variant-chip {
  border: 1.5px solid var(--line); border-radius: 9px; padding: 9px 18px;
  background: #fff; font-size: 14px; transition: all .15s; position: relative;
}
.variant-chip:hover { border-color: var(--gold); }
.variant-chip.selected { border-color: var(--ink); background: var(--ink); color: #fff; }
.variant-chip.oos { opacity: .42; text-decoration: line-through; pointer-events: none; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.qty-box { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-box button { width: 42px; height: 44px; border: none; background: #fff; font-size: 18px; }
.qty-box button:hover { background: var(--gold-tint); }
.qty-box input { width: 48px; text-align: center; border: none; outline: none; font-size: 15.5px; font-weight: 500; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, #2a2a2a 0%, #121212 100%);
  color: #fff; border: none; border-radius: 999px;
  padding: 15px 38px; font-size: 15px; font-weight: 500; letter-spacing: .03em;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 5px 16px rgba(18,18,18,.24); transition: all .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(18,18,18,.3); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { background: #c9c9c6; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 5px 18px rgba(156,127,66,.4);
}
.btn-gold:hover { box-shadow: 0 9px 26px rgba(156,127,66,.5); }
.btn-outline {
  background: #fff; border: 1.5px solid var(--ink); color: var(--ink);
  border-radius: 999px; padding: 14px 34px; font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px; transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.pd-desc { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 24px; }
.pd-desc h3 { font-size: 20px; margin-bottom: 12px; }
.pd-desc-body { color: var(--ink-soft); font-weight: 300; line-height: 1.75; }
.pd-soldout-msg {
  background: #fdecea; color: var(--sale); border-radius: var(--radius-sm);
  padding: 14px 20px; font-weight: 500; display: flex; align-items: center; gap: 10px;
}

/* ---------------- Cart ---------------- */
.cart-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 30px; align-items: start; }
.cart-item {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 16px;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; margin-bottom: 14px;
  align-items: center; background: #fff;
}
.cart-item img { width: 92px; height: 92px; object-fit: cover; border-radius: 10px; background: var(--mist); }
.ci-name { font-weight: 500; font-size: 15px; }
.ci-variant { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.ci-price { color: var(--sale); font-weight: 600; margin-top: 6px; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.ci-remove { color: var(--muted); font-size: 19px; background: none; border: none; }
.ci-remove:hover { color: var(--sale); }
.summary-card {
  border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: 18px; padding: 24px;
  background: #fff; position: sticky; top: 90px;
  box-shadow: 0 6px 24px rgba(18,18,18,.06);
}
.summary-card h3 { font-size: 21px; margin-bottom: 18px; display: flex; align-items: center; gap: 9px; }
.summary-card h3 i { color: var(--gold); font-size: 22px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 7px 0; color: var(--ink-soft); }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 15px; font-size: 18px; font-weight: 600; color: var(--ink); }
.sum-row .free { color: var(--green); font-weight: 600; }
.sum-row .disc { color: var(--green); }
.promo-row { display: flex; gap: 8px; margin: 14px 0 6px; }
.promo-row input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 11px 18px; outline: none; text-transform: uppercase;
}
.promo-row button { background: var(--gold); color: #fff; border: none; border-radius: 999px; padding: 0 22px; font-weight: 600; }
.promo-applied {
  background: #e8f5e9; color: var(--green); font-size: 13px; border-radius: 8px;
  padding: 9px 14px; display: flex; justify-content: space-between; align-items: center; margin: 10px 0;
}
.promo-applied a { color: var(--sale); font-size: 12px; }
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state i { font-size: 62px; color: var(--gold); }
.empty-state h2 { margin: 16px 0 8px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ---------------- Forms / checkout ---------------- */
.form-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 26px; background: #fff;
  box-shadow: 0 2px 14px rgba(18,18,18,.04);
}
.form-card h3 { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 11px; }
.form-card h3 i { color: var(--gold); }
.step-n {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff; font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(156,127,66,.35);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 15px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 16px; outline: none; background: #faf9f7;
  transition: all .18s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3.5px rgba(181,152,90,.14);
}
.pay-option {
  display: flex; gap: 13px; border: 1.5px solid var(--line); border-radius: 15px;
  padding: 16px 17px; margin-bottom: 12px; cursor: pointer; align-items: flex-start;
  transition: all .18s; position: relative; background: #fff;
}
.pay-option:hover { border-color: var(--gold); transform: translateY(-1px); }
.pay-option.selected {
  border-color: var(--gold); background: var(--gold-tint);
  box-shadow: 0 6px 18px rgba(156,127,66,.16);
}
.pay-option input { position: absolute; opacity: 0; pointer-events: none; }
.po-radio {
  width: 21px; height: 21px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  border: 2px solid #d5d2cb; background: #fff; position: relative; transition: all .18s;
}
.pay-option.selected .po-radio {
  border-color: var(--gold-deep);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 2px 8px rgba(156,127,66,.4);
}
.pay-option.selected .po-radio::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
}
.pay-option .pn { font-weight: 600; font-size: 15px; }
.pay-option .pi { font-size: 13px; color: var(--muted); margin-top: 3px; }
.pay-disc-badge {
  background: #e8f5e9; color: var(--green); font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px; margin-left: 8px; white-space: nowrap;
  display: inline-block; vertical-align: 1px;
}
.auth-wrap { max-width: 440px; margin: 40px auto; }
.auth-wrap .form-card { padding: 34px; }
.auth-wrap h2 { text-align: center; font-size: 28px; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.auth-alt { text-align: center; margin-top: 18px; font-size: 14px; color: var(--muted); }
.auth-alt a { color: var(--gold-deep); font-weight: 600; }
.w-100 { width: 100%; justify-content: center; }
.err-box { background: #fdecea; color: var(--sale); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }
.ok-box { background: #e8f5e9; color: var(--green); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }

/* ---------------- Account (premium) ---------------- */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.acc-side { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.acc-user {
  background: linear-gradient(135deg, #191919 0%, #262117 100%);
  color: #fff; padding: 24px 20px; display: flex; align-items: center; gap: 14px;
}
.acc-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(181,152,90,.28);
}
.acc-uinfo { min-width: 0; }
.acc-user .an { font-family: var(--font-display); font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acc-user .ae { font-size: 12px; color: #cbb98a; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acc-nav a {
  display: flex; align-items: center; gap: 12px; padding: 14.5px 20px;
  font-size: 14.5px; border-bottom: 1px solid #f1f0ed; transition: all .15s;
}
.acc-nav a:last-child { border-bottom: none; }
.acc-nav a.active, .acc-nav a:hover { background: var(--gold-tint); color: var(--gold-deep); font-weight: 600; }
.acc-nav a i { font-size: 19px; }
.acc-nav .acc-signout { color: var(--sale); }
.acc-nav .acc-signout:hover { background: #fdecea; color: var(--sale); }

/* Order cards */
.order-cards { display: flex; flex-direction: column; gap: 13px; }
.order-card {
  border: 1px solid var(--line); border-radius: 15px; padding: 16px 18px;
  background: #fff; display: block; transition: all .2s; position: relative;
}
.order-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.oc-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.oc-num { font-weight: 600; font-size: 14.5px; letter-spacing: .03em; display: flex; align-items: center; gap: 7px; min-width: 0; }
.oc-num i { color: var(--gold); font-size: 17px; flex-shrink: 0; }
.oc-meta { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); margin: 8px 0 12px; flex-wrap: wrap; }
.oc-meta i { vertical-align: -1.5px; }
.oc-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px dashed var(--line); padding-top: 11px;
}
.oc-total { font-weight: 600; font-size: 16.5px; font-family: var(--font-display); }
.oc-view { font-size: 12.5px; color: var(--gold-deep); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ---------------- Tables ---------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.nice { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; background: #fff; }
table.nice th {
  text-align: left; padding: 13px 16px; background: var(--mist);
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
table.nice td { padding: 13px 16px; border-top: 1px solid var(--line); }
.status-pill { font-size: 12px; font-weight: 600; padding: 5px 13px; border-radius: 999px; white-space: nowrap; }
.st-Pending { background: #fff8e1; color: #b28704; }
.st-Confirmed { background: #e3f2fd; color: #1565c0; }
.st-Processing { background: #ede7f6; color: #5e35b1; }
.st-Shipped { background: #e0f2f1; color: #00796b; }
.st-Delivered { background: #e8f5e9; color: var(--green); }
.st-Cancelled { background: #fdecea; color: var(--sale); }

/* ---------------- Order tracking timeline ---------------- */
.track-steps { display: flex; justify-content: space-between; position: relative; margin: 34px 0 10px; }
.track-steps::before { content: ''; position: absolute; top: 17px; left: 6%; right: 6%; height: 2px; background: var(--line); }
.t-step { position: relative; text-align: center; flex: 1; z-index: 1; }
.t-dot {
  width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; color: var(--muted); font-size: 16px;
}
.t-step.done .t-dot { background: var(--gold); border-color: var(--gold); color: #fff; }
.t-step span { font-size: 12px; color: var(--muted); }
.t-step.done span { color: var(--gold-deep); font-weight: 600; }
.track-cancelled { background: #fdecea; color: var(--sale); border-radius: var(--radius-sm); padding: 15px 20px; font-weight: 600; text-align: center; }
.history-list { margin-top: 26px; border-left: 2px solid var(--line); padding-left: 22px; }
.h-item { position: relative; padding-bottom: 20px; }
.h-item::before {
  content: ''; position: absolute; left: -28px; top: 5px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--gold);
}
.h-item .hs { font-weight: 600; font-size: 14.5px; }
.h-item .hd { font-size: 12.5px; color: var(--muted); }
.h-item .hn { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }

/* ---------------- Order item rows (image + link) ---------------- */
.oi-row {
  display: flex; align-items: center; gap: 13px;
  padding: 10px 0; border-bottom: 1px solid #f2f1ee;
}
.oi-img { flex-shrink: 0; }
.oi-img img {
  width: 54px; height: 54px; object-fit: cover; border-radius: 11px;
  border: 1px solid var(--line); background: var(--mist);
}
.oi-info { flex: 1; min-width: 0; }
.oi-name {
  font-weight: 600; font-size: 14px; color: var(--ink);
  display: block; line-height: 1.3;
}
a.oi-name:hover { color: var(--gold-deep); text-decoration: underline; }
.oi-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.oi-price { font-weight: 600; font-size: 14.5px; white-space: nowrap; }
.pill-paid {
  background: #e8f5e9; color: var(--green); font-size: 11px; font-weight: 700;
  padding: 3px 11px; border-radius: 999px; margin-left: 7px;
}

/* ---------------- Payment info + proof upload ---------------- */
.pay-info-box {
  margin-top: 20px; border: 1.5px dashed var(--gold); border-radius: 15px;
  background: var(--gold-tint); padding: 17px 18px;
}
.pi-title {
  font-weight: 700; font-size: 14.5px; color: var(--gold-deep);
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.pi-title i { font-size: 19px; }
.pi-detail { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
.pi-amount {
  margin-top: 10px; font-size: 13.5px; background: #fff;
  border-radius: 10px; padding: 9px 14px; display: inline-block;
}
.pi-amount b { color: var(--sale); font-size: 15px; }
.pi-paid {
  color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 9px;
  font-size: 14.5px;
}
.pi-paid i { font-size: 21px; }
.proof-done {
  display: flex; gap: 13px; align-items: center; background: #fff;
  border-radius: 12px; padding: 11px 13px; margin-top: 13px;
}
.proof-done img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 9px;
  border: 1px solid var(--line); flex-shrink: 0;
}
.proof-done b { display: block; font-size: 13.5px; color: var(--green); }
.proof-done span { font-size: 12px; color: var(--muted); line-height: 1.45; display: block; margin-top: 2px; }
.proof-form { display: flex; gap: 10px; margin-top: 13px; flex-wrap: wrap; align-items: stretch; }
.proof-pick {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 11px 18px; cursor: pointer; font-size: 13.5px; color: var(--muted);
  transition: border-color .15s; overflow: hidden;
}
.proof-pick:hover { border-color: var(--gold); }
.proof-pick i { color: var(--gold-deep); font-size: 19px; flex-shrink: 0; }
.proof-pick span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.proof-pick input { display: none; }
.proof-form .btn-primary { padding: 12px 24px; font-size: 14px; }

/* ---------------- Success page ---------------- */
.success-wrap { max-width: 620px; margin: 44px auto; text-align: center; }
.success-icon {
  width: 84px; height: 84px; border-radius: 50%; background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  color: var(--gold-deep); font-size: 42px;
}
.success-wrap h1 { font-size: 32px; margin-bottom: 10px; }
.order-num-chip {
  display: inline-block; background: var(--ink); color: var(--gold);
  padding: 10px 26px; border-radius: 999px; font-size: 16px; letter-spacing: .08em;
  margin: 14px 0 22px; font-weight: 600;
}

/* ---------------- Content pages ---------------- */
.page-content { max-width: 820px; margin: 0 auto; }
.page-content h1 { font-size: 34px; margin-bottom: 22px; }
.page-content .body { font-weight: 300; line-height: 1.85; color: var(--ink-soft); }
.page-content .body p { margin-bottom: 14px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: #b9b9b5; margin-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 52px 20px 40px;
}
.f-col h4 {
  font-family: var(--font-body); color: #fff; font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: 18px;
}
.f-col a { display: block; padding: 5px 0; font-size: 14px; color: #b9b9b5; }
.f-col a:hover { color: var(--gold); }
.f-about { font-size: 14px; font-weight: 300; line-height: 1.75; margin: 14px 0 18px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 38px; height: 38px; border: 1px solid #3a3a3a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px; padding: 0;
  transition: all .2s;
}
.f-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.f-contact { font-size: 14px; padding: 5px 0; display: flex; gap: 10px; align-items: center; }
.f-contact i { color: var(--gold); font-size: 17px; }
.f-bottom { border-top: 1px solid #262626; padding: 18px 0; font-size: 13px; text-align: center; color: #8a8a86; }

/* ---------------- Bottom nav (premium app feel) ---------------- */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: linear-gradient(180deg, #1c1c1c 0%, #111111 100%);
  border-radius: 22px 22px 0 0;
  display: none; justify-content: space-around; align-items: flex-end;
  padding: 9px 8px calc(9px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -12px 34px rgba(0,0,0,.32);
}
.bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10px; color: #8f8b83; min-width: 66px; letter-spacing: .04em;
  -webkit-tap-highlight-color: transparent; position: relative;
}
.bn-ico {
  width: 44px; height: 32px; border-radius: 13px; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 23px; transition: all .28s cubic-bezier(.34,1.4,.6,1);
}
.bn-lbl { transition: color .2s; }
.bn-item:active .bn-ico { transform: scale(.9); }
.bn-item.active { color: var(--gold); font-weight: 600; }
.bn-item.active .bn-lbl { color: var(--gold); }
.bn-item.active .bn-ico {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff; width: 52px; height: 40px; border-radius: 15px;
  transform: translateY(-12px);
  box-shadow: 0 8px 20px rgba(156,127,66,.5), 0 0 0 5px #131313;
}
.bn-item.active .bn-lbl { margin-top: -8px; }
.bn-ico .cart-badge.sm { top: -4px; right: -4px; box-shadow: 0 0 0 2px #131313; }
.bn-item.active .bn-ico .cart-badge.sm { top: -6px; right: -7px; }

/* ---------------- Drawer (mobile categories) ---------------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 120;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 290px; max-width: 85vw;
  background: #fff; z-index: 130; transform: translateX(-100%); transition: transform .28s ease;
  display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head {
  background: var(--ink); color: #fff; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-title { font-family: var(--font-display); font-size: 19px; letter-spacing: .04em; }
.drawer-head button { background: none; border: none; color: var(--gold); font-size: 22px; }
.drawer-body { overflow-y: auto; padding: 10px 12px 24px; -webkit-overflow-scrolling: touch; }
.d-cat { margin-bottom: 6px; border-radius: 14px; overflow: hidden; }
.d-parent {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 11px 12px; background: none; border: none; text-align: left;
  font-family: inherit; font-size: 15px; color: var(--ink);
  border-radius: 14px; transition: background .15s; -webkit-tap-highlight-color: transparent;
}
.d-parent:active { background: var(--gold-tint); }
.d-ico {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-tint) 0%, #efe5cf 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep); font-size: 21px;
  box-shadow: inset 0 0 0 1px rgba(181,152,90,.22);
}
.d-ico img { width: 100%; height: 100%; object-fit: cover; }
.d-ico.gold { background: var(--ink); color: var(--gold); }
.d-name { flex: 1; font-weight: 600; line-height: 1.2; }
.d-name small { display: block; font-weight: 400; font-size: 11px; color: var(--muted); margin-top: 2px; }
.d-caret { color: var(--muted); font-size: 15px; transition: transform .25s ease; }
.d-cat.open .d-caret { transform: rotate(180deg); color: var(--gold-deep); }
.d-cat.open { background: #faf8f4; }
.d-cat.open .d-parent { background: transparent; }
.d-subs {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.d-cat.open .d-subs { max-height: 420px; }
.d-sub {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px 11px 26px; font-size: 14px; color: var(--ink-soft);
  border-radius: 10px; margin: 0 6px;
}
.d-sub i { color: var(--gold); font-size: 15px; }
.d-sub:active { background: var(--gold-tint); }
.d-sub.d-all { font-weight: 600; color: var(--gold-deep); }


/* Product view switcher (mobile only) */
.ptr-right { display: flex; align-items: center; gap: 12px; }
.view-switch { display: none; }  /* desktop: hidden */
.view-switch button {
  width: 38px; height: 38px; border: 1.5px solid var(--line); background: #fff;
  border-radius: 9px; cursor: pointer; color: var(--muted); font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center; transition: all .14s;
}
.view-switch button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   RESPONSIVE — mobile app feel
   ============================================================ */
@media (max-width: 900px) {
  .shop-layout, .account-layout { grid-template-columns: 1fr; }
  .shop-side { position: static; padding: 0; border-radius: 12px; overflow: hidden; }
  /* Mobile: heading ban jaye ek clickable toggle bar */
  .shop-side-toggle {
    display: flex !important; align-items: center; justify-content: space-between;
    margin: 0 !important; padding: 14px 16px; cursor: pointer; background: var(--surface, #faf8f4);
    font-size: 13px !important;
  }
  .shop-side-caret { display: inline-block; transition: transform .25s; font-size: 16px; }
  .shop-side-funnel { display: inline-block; color: var(--gold-deep); margin-right: 4px; }
  .shop-side.open .shop-side-caret { transform: rotate(180deg); }
  /* Categories list mobile pe band by default, open par khule */
  .shop-side .side-cat {
    max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 16px;
  }
  .shop-side.open .side-cat {
    max-height: 70vh; overflow-y: auto; padding: 4px 16px 16px;
    border-top: 1px solid var(--line);
  }
  .cart-layout { grid-template-columns: 1fr; }
  .pd-layout { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 20px 30px; }
}

@media (max-width: 720px) {
  body { font-size: 14.5px; padding-bottom: 78px; }
  .desktop-only { display: none !important; }
  .search-wrap { display: none !important; }
  .mobile-only { display: flex; }

  /* Mobile header: logo CENTER, icons right — 3-part flex (overlap nahi) */
  .header-inner { gap: 8px; padding: 11px 14px; justify-content: space-between; }
  .logo {
    position: absolute; left: 50%;
    transform: translateX(-50%);
    align-items: center; pointer-events: auto;
  }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .header-actions { margin-left: auto; gap: 14px; }

  .logo-main { font-size: 21px; }
  .logo-sub { font-size: 7.5px; letter-spacing: .34em; }
  .logo-img { height: 38px; max-width: 140px; }
  /* Mobile par logo image ke neeche wala text chhupa do — sirf logo dikhe */
  .logo .logo-img + .logo-sub { display: none; }
  .header-actions { gap: 14px; }
  .h-action i { font-size: 22px; }
  .topbar { font-size: 10.5px; letter-spacing: .08em; }

  .hero { padding: 12px 14px 0; }
  .hero-slide { min-height: 190px; padding: 26px 20px; }
  /* Mobile par thora zyada saya (screen chhoti hai, text upar aata hai) */
  .hero-slide::before {
    background: linear-gradient(90deg, rgba(10,10,10,.62) 0%, rgba(10,10,10,.34) 30%, rgba(10,10,10,.08) 55%, rgba(10,10,10,0) 75%);
  }
  .hero-title { font-size: 23px; }
  .hero-sub { font-size: 13px; margin-top: 7px; }
  .hero-btn { padding: 9px 22px; font-size: 13px; margin-top: 16px; }
  .hero-badge { font-size: 10.5px; padding: 5px 14px; margin-bottom: 12px; }
  .hero-arrow { display: none; }

  .section { padding: 30px 14px 6px; }
  .section-title { font-size: 21px; }
  .section-sub { display: none; }
  .section-head .view-all { padding: 7px 16px; font-size: 12.5px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .p-body { padding: 12px 12px 14px; gap: 7px; }

  /* View switcher visible on mobile */
  .view-switch { display: inline-flex; gap: 6px; }
  .ptr-right { flex-direction: column; align-items: flex-end; gap: 8px; }

  /* ---- SINGLE view: 1 product full width ---- */
  .product-grid.view-single { grid-template-columns: 1fr; gap: 16px; }
  .product-grid.view-single .p-thumb { aspect-ratio: 1/1; }

  /* ---- GRID view: 2 parallel (default) ---- */
  .product-grid.view-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* ---- LIST view: horizontal cards (image left, details right) ---- */
  .product-grid.view-list { grid-template-columns: 1fr; gap: 10px; }
  .product-grid.view-list .p-card { flex-direction: row; align-items: stretch; }
  .product-grid.view-list .p-thumb {
    width: 120px; min-width: 120px; aspect-ratio: auto; height: auto;
  }
  .product-grid.view-list .p-body { flex: 1; padding: 12px 14px; justify-content: center; }
  .product-grid.view-list .p-name { font-size: 14px; }
  .product-grid.view-list .p-sizes { display: none; } /* list me sizes chhupao, compact rahe */
  .p-name { font-size: 12.5px; }
  .p-price .now { font-size: 15.5px; }
  .p-price .was { font-size: 12px; }
  .p-sizes { display: none; }
  .p-btn { padding: 10px; font-size: 13px; border-radius: 8px; }
  .p-off { font-size: 11px; padding: 4px 10px; top: 8px; right: 8px; }

  .page-title { font-size: 23px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 20px 16px; }
  .summary-card { position: static; padding: 20px 16px; }
  .cart-item { grid-template-columns: 74px 1fr auto; padding: 12px; }
  .cart-item img { width: 74px; height: 74px; }
  .pd-title { font-size: 24px; }
  .pd-price .now { font-size: 23px; }
  .btn-primary, .btn-outline { padding: 13px 26px; font-size: 14px; }
  /* Account: mobile app feel */
  .account-layout { gap: 14px; }
  .acc-side { border: none; border-radius: 0; background: transparent; overflow: visible; }
  .acc-user {
    border-radius: 18px; padding: 20px 18px;
    box-shadow: 0 8px 24px rgba(18,18,18,.16);
  }
  .acc-avatar { width: 56px; height: 56px; font-size: 22px; }
  .acc-nav {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 12px;
  }
  .acc-nav a {
    flex-direction: column; gap: 6px; padding: 13px 4px; font-size: 11px;
    border: 1px solid var(--line) !important; border-radius: 14px; background: #fff;
    text-align: center; font-weight: 500; justify-content: center;
  }
  .acc-nav a i { font-size: 22px; }
  .acc-nav a.active { background: var(--ink); color: var(--gold); border-color: var(--ink) !important; font-weight: 600; }
  .acc-nav a.active i { color: var(--gold); }
  .acc-nav .acc-signout { border-color: #f4c7c5 !important; }
  .order-card { padding: 14px 15px; border-radius: 14px; }
  .oi-img img { width: 48px; height: 48px; }
  .oi-name { font-size: 13px; }
  .oi-price { font-size: 13.5px; }
  .proof-form { flex-direction: column; }
  .proof-form .btn-primary { justify-content: center; }
  .oc-total { font-size: 15.5px; }
  .status-pill { font-size: 11px; padding: 4px 11px; }
  /* .pd-thumbs mobile par ab dikhte hain (neeche dekho) */
  .lightbox.zoomed .lb-scroll img { max-width: 260vw; width: 260vw; }
  table.nice { min-width: 480px; font-size: 13px; }
  table.nice th, table.nice td { padding: 10px 10px; }
  .track-steps::before { left: 9%; right: 9%; }
  .t-step span { font-size: 10px; }
  .t-dot { width: 30px; height: 30px; font-size: 13px; }
  .auth-wrap { margin: 20px auto; }
  .auth-wrap .form-card { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { margin-top: 40px; }
  .bottom-nav { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   PRODUCT TABS + REVIEWS
   ============================================================ */
.pd-tabs-wrap { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 8px; }
.pd-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin-bottom: 28px; }
.pd-tab {
  background: none; border: none; padding: 14px 22px; font-size: 15px; font-family: var(--font-body);
  color: var(--muted); cursor: pointer; font-weight: 600; position: relative; display: flex; align-items: center; gap: 8px;
  margin-bottom: -2px; border-bottom: 2px solid transparent; transition: all .16s;
}
.pd-tab:hover { color: var(--ink); }
.pd-tab.active { color: var(--gold-deep); border-bottom-color: var(--gold); }
.pd-tab-count { background: var(--gold-tint); color: var(--gold-deep); font-size: 12px; padding: 1px 8px; border-radius: 999px; font-weight: 700; }
.pd-tab-panel { display: none; animation: fadeIn .3s; }
.pd-tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pd-desc-body { font-size: 15px; line-height: 1.8; color: var(--ink-soft); }

/* Rating summary */
.rev-summary { display: flex; gap: 40px; padding: 24px; background: var(--mist, #faf8f4); border-radius: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.rev-sum-left { text-align: center; flex-shrink: 0; }
.rev-big-num { font-size: 52px; font-weight: 700; font-family: var(--font-display); line-height: 1; color: var(--ink); }
.rev-sum-count { font-size: 13px; color: var(--muted); margin-top: 6px; }
.rev-sum-right { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 7px; justify-content: center; }
.rev-bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.rev-bar-star { display: flex; align-items: center; gap: 3px; width: 38px; color: var(--muted); }
.rev-bar-star i { color: var(--gold); font-size: 12px; }
.rev-bar-track { flex: 1; height: 8px; background: #e8e4db; border-radius: 999px; overflow: hidden; }
.rev-bar-track span { display: block; height: 100%; background: var(--gold); border-radius: 999px; }
.rev-bar-n { width: 24px; text-align: right; color: var(--muted); }

.stars { color: var(--gold); display: inline-flex; gap: 1px; }
.stars i { color: var(--gold); }

/* Write button + form */
.rev-write-btn {
  background: var(--ink); color: #fff; border: none; padding: 12px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); transition: all .16s; margin-bottom: 20px;
}
.rev-write-btn:hover { background: var(--gold-deep); }
.rev-form {
  display: none; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  margin-bottom: 28px; max-width: 560px;
}
.rev-form.open { display: block; animation: fadeIn .3s; }
.rev-form-row { margin-bottom: 16px; }
.rev-form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.rev-form-row input[type=text], .rev-form-row textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 14px;
  font-family: inherit; font-size: 14px; outline: none; transition: border-color .15s;
}
.rev-form-row input:focus, .rev-form-row textarea:focus { border-color: var(--gold); }
.rev-star-pick { display: flex; gap: 5px; font-size: 28px; }
.rev-star-pick i { color: var(--gold); cursor: pointer; transition: transform .12s; }
.rev-star-pick i:hover { transform: scale(1.15); }

.rev-msg-ok {
  background: #e7f7ec; border: 1px solid #25D366; color: #0f7a37; padding: 13px 18px;
  border-radius: 12px; margin-bottom: 20px; display: flex; align-items: center; gap: 9px; font-size: 14px;
}

/* Reviews list */
.rev-list { display: flex; flex-direction: column; gap: 18px; }
.rev-item { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; transition: box-shadow .16s; }
.rev-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.rev-item-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
}
.rev-item-name { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 8px; }
.rev-verified { font-size: 11px; color: #16a34a; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.rev-item-sub { display: flex; align-items: center; gap: 10px; margin-top: 3px; }
.rev-item-date { font-size: 12px; color: var(--muted); }
.rev-item-body { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }

.rev-empty { text-align: center; padding: 40px 20px; color: var(--muted); }
.rev-empty i { font-size: 42px; color: var(--gold); }
.rev-empty p { margin-top: 12px; }

@media (max-width: 600px) {
  .rev-summary { gap: 20px; padding: 18px; }
  .rev-big-num { font-size: 40px; }
  .pd-tab { padding: 12px 16px; font-size: 14px; }
}

/* ============================================================
   HOMEPAGE REVIEWS
   ============================================================ */
.rev-home-section { padding-bottom: 60px; }
.rev-home-section .section-sub { display: flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap; }
.rev-home-track {
  display: flex; gap: 18px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.rev-home-track::-webkit-scrollbar { height: 7px; }
.rev-home-track::-webkit-scrollbar-track { background: var(--mist, #f3f0ea); border-radius: 999px; }
.rev-home-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.rev-home-card {
  flex: 0 0 320px; scroll-snap-align: start; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.04); transition: all .2s;
}
.rev-home-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.09); border-color: var(--gold); }
.rev-home-stars { color: var(--gold); font-size: 15px; }
.rev-home-text { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); flex: 1; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.rev-home-foot { display: flex; align-items: center; gap: 11px; padding-top: 6px; border-top: 1px solid var(--line); }
.rev-home-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.rev-home-name { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 5px; }
.rev-home-city { font-size: 12px; color: var(--muted); }
@media (max-width: 600px) { .rev-home-card { flex: 0 0 280px; padding: 20px; } }

/* Track order — review button + modal */
.oi-review-btn {
  background: var(--gold-tint, #f5efe2); color: var(--gold-deep); border: 1.5px solid var(--gold);
  padding: 8px 16px; border-radius: 9px; font-size: 13px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px; margin: 4px 0 16px 66px; font-family: var(--font-body);
  transition: all .15s;
}
.oi-review-btn:hover { background: var(--gold); color: #fff; }
.oi-review-done {
  font-size: 12.5px; color: #16a34a; display: flex; align-items: center; gap: 6px;
  margin: 4px 0 16px 66px; font-weight: 500;
}
.tr-review-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,.55); z-index: 500; display: none;
  align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px);
}
.tr-review-overlay.open { display: flex; }
.tr-review-modal { background: #fff; border-radius: 18px; width: 100%; max-width: 460px; box-shadow: 0 20px 60px rgba(0,0,0,.3); animation: fadeIn .25s; }
.trm-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.trm-head h3 { margin: 0; font-family: var(--font-display); font-size: 19px; display: flex; align-items: center; gap: 8px; }
.trm-head h3 i { color: var(--gold); }
.trm-head button { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); display: flex; }
.trm-body { padding: 20px 22px; }
.trm-product { font-weight: 700; font-size: 15px; margin-bottom: 16px; padding: 10px 14px; background: var(--mist,#faf8f4); border-radius: 10px; }
.trm-row { margin-bottom: 15px; }
.trm-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.trm-row input[type=text], .trm-row textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 9px; padding: 10px 13px; font-family: inherit; font-size: 14px; outline: none; }
.trm-row input:focus, .trm-row textarea:focus { border-color: var(--gold); }
.tr-star-pick { display: flex; gap: 6px; font-size: 28px; }
.tr-star-pick i { color: var(--gold); cursor: pointer; transition: transform .12s; }
.tr-star-pick i:hover { transform: scale(1.15); }
.trm-foot { padding: 16px 22px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 10px; }
@media (max-width: 600px) { .oi-review-btn, .oi-review-done { margin-left: 0; } }

/* Account order actions row */
.acc-order-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; align-items: center; }
.acc-order-actions .btn-outline, .acc-order-actions .btn-primary { margin-top: 0; }
.acc-rev-btn { display: inline-flex; align-items: center; gap: 7px; }
.acc-rev-done { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #16a34a; font-weight: 600; }

/* ============================================================
   DAILY SPIN WHEEL
   ============================================================ */
.spin-card { text-align: center; }
.spin-intro { color: var(--muted); font-size: 14px; margin: 8px 0 20px; line-height: 1.6; }
.spin-intro b { color: var(--ink); }

/* Active reward banner */
.spin-active-reward { display: flex; align-items: center; gap: 14px; background: linear-gradient(135deg, #fff9ed, #f5edda); border: 1.5px solid var(--gold); border-radius: 14px; padding: 16px 18px; margin-bottom: 22px; text-align: left; }
.sar-icon { font-size: 34px; color: #16a34a; flex-shrink: 0; }
.sar-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.sar-code-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sar-code { font-family: monospace; font-size: 17px; font-weight: 700; letter-spacing: 1px; color: var(--gold-deep); background: #fff; padding: 5px 12px; border-radius: 8px; border: 1px dashed var(--gold); }
.sar-copy { background: var(--ink); color: #fff; border: none; padding: 6px 12px; border-radius: 8px; font-size: 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-body); }
.sar-copy:hover { background: var(--gold-deep); }
.sar-meta { font-size: 12px; color: var(--muted); margin-top: 7px; }

/* Wheel */
.spin-wheel-area { display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 10px 0; }
.spin-wheel-wrap { position: relative; width: 300px; height: 300px; max-width: 85vw; max-height: 85vw; }
.spin-pointer { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); z-index: 10; font-size: 40px; color: var(--gold-deep); line-height: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.spin-wheel { width: 100%; height: 100%; border-radius: 50%; position: relative; overflow: hidden; border: 8px solid var(--ink); box-shadow: 0 8px 30px rgba(0,0,0,.2); transform: rotate(0deg); }
.spin-seg { position: absolute; width: 50%; height: 50%; top: 0; left: 50%; transform-origin: 0% 100%; display: flex; align-items: flex-start; justify-content: center; clip-path: polygon(0 0, 100% 0, 50% 100%); }
.spin-seg span { color: #fff; font-weight: 700; font-size: 18px; margin-top: 18px; display: inline-block; }
.spin-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; background: #fff; border-radius: 50%; z-index: 8; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--gold); box-shadow: 0 3px 12px rgba(0,0,0,.25); border: 3px solid var(--gold); }

.spin-btn { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; border: none; padding: 15px 44px; border-radius: 999px; font-size: 17px; font-weight: 700; cursor: pointer; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 9px; box-shadow: 0 6px 20px rgba(181,152,90,.4); transition: transform .15s, box-shadow .15s; letter-spacing: .5px; }
.spin-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(181,152,90,.5); }
.spin-btn:disabled { opacity: .7; cursor: not-allowed; }
.spin-btn .ph-circle-notch { animation: spin360 .8s linear infinite; }
@keyframes spin360 { to { transform: rotate(360deg); } }
.spin-done-msg { background: var(--mist,#f3f0ea); color: var(--muted); padding: 14px 22px; border-radius: 12px; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }

/* Result popup */
.spin-result-overlay { position: fixed; inset: 0; background: rgba(10,10,10,.6); z-index: 600; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.spin-result-overlay.open { display: flex; animation: fadeIn .3s; }
.spin-result-box { background: #fff; border-radius: 22px; padding: 34px 30px; max-width: 400px; width: 100%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.35); animation: srbPop .4s cubic-bezier(.2,.8,.3,1.2); }
@keyframes srbPop { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.srb-confetti { font-size: 48px; margin-bottom: 8px; }
.srb-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; }
.srb-prize { font-size: 44px; font-weight: 800; color: var(--gold-deep); margin: 10px 0; letter-spacing: -1px; }
.srb-desc { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.srb-code-area { margin: 18px 0; }
.srb-code { font-family: monospace; font-size: 26px; font-weight: 700; letter-spacing: 2px; color: var(--ink); background: var(--gold-tint,#f5efe2); padding: 12px; border-radius: 12px; border: 2px dashed var(--gold); margin-bottom: 12px; }
.srb-copy { background: var(--ink); color: #fff; border: none; padding: 11px 22px; border-radius: 10px; font-size: 14px; cursor: pointer; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.srb-copy:hover { background: var(--gold-deep); }
.srb-valid { font-size: 12px; color: var(--muted); margin-top: 12px; }
.srb-collect { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; border: none; padding: 14px 36px; border-radius: 999px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 6px 18px rgba(181,152,90,.4); }
.srb-collect:hover:not(:disabled) { transform: translateY(-2px); }
.srb-collect .ph-circle-notch { animation: spin360 .8s linear infinite; }
.srb-close { background: var(--mist,#f3f0ea); color: var(--ink); border: none; padding: 12px 34px; border-radius: 999px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }

/* Spin history */
.spin-hist-list { display: flex; flex-direction: column; gap: 10px; }
.spin-hist-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; }
.shr-prize { font-weight: 700; font-size: 15px; color: var(--gold-deep); }
.shr-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.shr-right { display: flex; align-items: center; gap: 10px; }
.shr-code-txt { font-family: monospace; font-size: 13px; font-weight: 600; }
.shr-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.shr-active { background: #e7f7ed; color: #16a34a; }
.shr-used { background: #eef2f7; color: #64748b; }
.shr-expired { background: #fdeaea; color: #dc2626; }
.shr-uncollected { background: #fff3e2; color: #d97706; }

@media (max-width: 600px) {
  .spin-wheel-wrap { width: 260px; height: 260px; }
  .spin-seg span { font-size: 15px; }
  .srb-prize { font-size: 36px; }
  .spin-hist-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sar-code { font-size: 15px; }
}

/* Daily Spin Splash Popup */
.spin-splash-overlay { position: fixed; inset: 0; background: rgba(10,10,10,.62); z-index: 700; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.spin-splash-overlay.open { display: flex; animation: fadeIn .35s; }
.spin-splash-box { background: linear-gradient(160deg, #fffdf8, #f7efdd); border-radius: 24px; padding: 32px 28px 26px; max-width: 380px; width: 100%; text-align: center; position: relative; box-shadow: 0 24px 70px rgba(0,0,0,.4); animation: srbPop .45s cubic-bezier(.2,.8,.3,1.2); border: 1px solid rgba(181,152,90,.3); }
.spin-splash-close { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,.06); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 17px; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: all .15s; }
.spin-splash-close:hover { background: rgba(0,0,0,.12); color: var(--ink); }
.ss-badge { display: inline-block; background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px; }
.ss-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.ss-desc { color: var(--ink-soft); font-size: 14px; margin: 10px 0 20px; line-height: 1.6; }
.ss-desc b { color: var(--gold-deep); }

/* Mini decorative wheel */
.ss-wheel-mini { position: relative; width: 150px; height: 150px; margin: 0 auto 22px; }
.ss-wheel-ring { width: 100%; height: 100%; border-radius: 50%; background: conic-gradient(var(--gold) 0deg 72deg, var(--ink) 72deg 144deg, var(--gold-deep) 144deg 216deg, #2a2a2a 216deg 288deg, #8a6d2a 288deg 360deg); position: relative; box-shadow: 0 6px 20px rgba(0,0,0,.2); border: 5px solid var(--ink); animation: ssWheelSpin 8s linear infinite; }
@keyframes ssWheelSpin { to { transform: rotate(360deg); } }
.ss-wheel-ring span { position: absolute; top: 12px; left: 50%; transform-origin: 0 63px; transform: rotate(var(--a)); color: #fff; font-size: 12px; font-weight: 700; }
.ss-wheel-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); box-shadow: 0 2px 10px rgba(0,0,0,.25); border: 3px solid var(--gold); z-index: 2; }
.ss-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; padding: 14px; border-radius: 999px; font-size: 16px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 20px rgba(181,152,90,.4); transition: transform .15s; }
.ss-cta:hover { transform: translateY(-2px); }
.ss-skip { background: none; border: none; color: var(--muted); font-size: 13px; margin-top: 12px; cursor: pointer; font-family: var(--font-body); text-decoration: underline; }
@media (max-width: 420px) { .spin-splash-box { padding: 26px 20px 22px; } .ss-title { font-size: 24px; } }

/* ============================================================
   GUEST SPIN — wheel inside splash + reward bar
   ============================================================ */
.ss-wheel-live { position: relative; width: 190px; height: 190px; margin: 4px auto 18px; }
.ss-pointer { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); z-index: 10; font-size: 30px; color: var(--gold-deep); line-height: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,.35)); }
.ss-wheel { width: 100%; height: 100%; border-radius: 50%; position: relative; overflow: hidden; border: 6px solid var(--ink); box-shadow: 0 8px 26px rgba(0,0,0,.28); transform: rotate(0deg); }
.ss-seg { position: absolute; width: 50%; height: 50%; top: 0; left: 50%; transform-origin: 0% 100%; display: flex; align-items: flex-start; justify-content: center; clip-path: polygon(0 0, 100% 0, 50% 100%); }
.ss-seg span { color: #fff; font-weight: 700; font-size: 13px; margin-top: 12px; display: inline-block; }
.ss-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; background: #fff; border-radius: 50%; z-index: 8; display: flex; align-items: center; justify-content: center; font-size: 19px; color: var(--gold); box-shadow: 0 3px 10px rgba(0,0,0,.25); border: 3px solid var(--gold); }

.ss-cta { width: 100%; border: none; cursor: pointer; font-family: var(--font-body); }
button.ss-cta:disabled { opacity: .75; cursor: not-allowed; }
.ss-cta .ph-circle-notch { animation: spin360 .8s linear infinite; }

.ss-win { font-size: 17px; font-weight: 600; margin-bottom: 14px; color: var(--ink); }
.ss-win b { color: var(--gold-deep); font-size: 22px; display: block; margin-top: 3px; }
.ss-code { font-family: monospace; font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--ink); background: #fff; padding: 11px; border-radius: 11px; border: 2px dashed var(--gold); margin-bottom: 10px; }
.ss-copy { background: var(--ink); color: #fff; border: none; padding: 10px 20px; border-radius: 9px; font-size: 13.5px; cursor: pointer; font-family: var(--font-body); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.ss-copy:hover { background: var(--gold-deep); }
.ss-valid { font-size: 11.5px; color: var(--muted); margin-top: 10px; }

@media (max-width: 600px) {
  .ss-wheel-live { width: 165px; height: 165px; }
  .ss-seg span { font-size: 11px; margin-top: 9px; }
  .spin-reward-bar { bottom: 74px; font-size: 12px; gap: 7px; padding: 9px 12px; }
  .srb-timer { display: none; }
}

/* ============================================================
   REWARD FLAG — side me lehrata (waving) glowing discount code
   ============================================================ */
.reward-flag {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 420; cursor: pointer; user-select: none;
  padding: 14px 16px 14px 18px;
  background: linear-gradient(135deg, #1a1a1a, #101010);
  border: 1px solid rgba(181,152,90,.55);
  border-right: none;
  border-radius: 14px 0 0 14px;
  box-shadow: -6px 8px 28px rgba(0,0,0,.35), 0 0 22px rgba(181,152,90,.35);
  overflow: hidden;
  transform-origin: right center;
  animation: rfWave 3.2s ease-in-out infinite, rfGlow 2.4s ease-in-out infinite;
}
/* flag jaisa halka lehrana */
@keyframes rfWave {
  0%, 100% { transform: translateY(-50%) rotate(0deg) skewY(0deg); }
  25%      { transform: translateY(-50%) rotate(-.9deg) skewY(.7deg); }
  50%      { transform: translateY(-50%) rotate(0deg) skewY(0deg); }
  75%      { transform: translateY(-50%) rotate(.9deg) skewY(-.7deg); }
}
/* gold glow pulse */
@keyframes rfGlow {
  0%, 100% { box-shadow: -6px 8px 28px rgba(0,0,0,.35), 0 0 16px rgba(181,152,90,.28); }
  50%      { box-shadow: -6px 8px 28px rgba(0,0,0,.35), 0 0 34px rgba(181,152,90,.65); }
}
.reward-flag:hover { animation-play-state: paused; border-color: var(--gold); }
.reward-flag.copied { border-color: #16a34a; }

.rf-inner { position: relative; z-index: 2; text-align: center; }
.rf-top { font-size: 11px; color: #fff; display: flex; align-items: center; justify-content: center; gap: 5px; }
.rf-top i { color: var(--gold); font-size: 14px; }
.rf-top b { color: #d8bf85; font-size: 13px; }
.rf-code {
  font-family: monospace; font-weight: 700; font-size: 15px; letter-spacing: 1px;
  color: #fff; background: rgba(181,152,90,.16); border: 1px dashed rgba(181,152,90,.6);
  padding: 5px 10px; border-radius: 8px; margin: 7px 0 5px;
}
.rf-timer { font-size: 10.5px; color: #b9b2a6; }
.rf-copy { font-size: 10px; color: var(--gold); margin-top: 5px; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* chamakti hui shine jo flag par se guzarti hai */
.rf-shine {
  position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg);
  animation: rfShine 3.4s ease-in-out infinite;
}
@keyframes rfShine {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

@media (max-width: 700px) {
  .reward-flag { top: auto; bottom: 84px; right: 0; padding: 10px 12px; transform: none; transform-origin: right bottom; animation: rfWaveM 3.2s ease-in-out infinite, rfGlow 2.4s ease-in-out infinite; }
  @keyframes rfWaveM {
    0%, 100% { transform: rotate(0deg) skewY(0deg); }
    25%      { transform: rotate(-.8deg) skewY(.6deg); }
    75%      { transform: rotate(.8deg) skewY(-.6deg); }
  }
  .rf-code { font-size: 13px; padding: 4px 8px; }
  .rf-top { font-size: 10px; }
  .rf-copy { font-size: 9px; }
}

/* Pending reward (spin ho chuka, collect nahi kiya) */
.ss-pending { margin: 6px 0 18px; }
.ss-pending-ic { font-size: 44px; color: var(--gold); line-height: 1; margin-bottom: 8px; animation: pendPulse 1.8s ease-in-out infinite; }
@keyframes pendPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
.ss-pending-txt { font-size: 13.5px; color: var(--ink-soft); }
.ss-pending-prize { font-size: 38px; font-weight: 800; color: var(--gold-deep); letter-spacing: -1px; margin-top: 4px; }

.spin-pending-box { display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--gold-tint,#f7f1e4); border: 1.5px dashed var(--gold); border-radius: 16px; padding: 22px 26px; }
.spb-ic { font-size: 40px; color: var(--gold); line-height: 1; animation: pendPulse 1.8s ease-in-out infinite; }
.spb-txt { font-size: 13.5px; color: var(--ink-soft); }
.spb-prize { font-size: 34px; font-weight: 800; color: var(--gold-deep); letter-spacing: -1px; line-height: 1; }
.spin-pending-box .spin-btn { margin-top: 8px; }

/* ============================================================
   CHECKOUT — premium form + searchable city combobox
   ============================================================ */
.co-hint { font-size: 13px; color: var(--muted); margin: -6px 0 16px; }
.co-card .form-group label { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.co-card .form-group label i { color: var(--gold); font-size: 15px; }
.co-card .form-group label .opt { color: var(--muted); font-weight: 400; font-size: 12px; }
.co-card input[type=text], .co-card input[type=tel], .co-card input[type=email],
.co-card select, .co-card textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 11px; padding: 12px 14px;
  font-family: inherit; font-size: 14.5px; outline: none; background: #fff; transition: border-color .15s, box-shadow .15s;
}
.co-card input:focus, .co-card select:focus, .co-card textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,152,90,.14);
}
.co-card select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 17px; padding-right: 38px; cursor: pointer; }

/* City combobox */
.city-combo { position: relative; }
.cc-input-wrap { position: relative; }
.cc-input-wrap input { padding-right: 36px !important; }
.cc-input-wrap input:disabled { background: #f6f4f0; color: var(--muted); cursor: not-allowed; }
.cc-caret { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #999; pointer-events: none; font-size: 16px; }
.cc-list {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; max-height: 260px; overflow-y: auto;
  box-shadow: 0 12px 34px rgba(0,0,0,.13);
}
.cc-list.open { display: block; }
.cc-item { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 11px 14px; cursor: pointer; font-size: 14px; border-bottom: 1px solid #f4f1eb; }
.cc-item:last-child { border-bottom: none; }
.cc-item:hover { background: var(--gold-tint, #f7f1e4); }
.cc-item small { color: var(--muted); font-size: 12px; white-space: nowrap; }
.cc-empty { padding: 14px; text-align: center; color: var(--muted); font-size: 13.5px; }
.cc-note { font-size: 12.5px; color: var(--gold-deep); margin-top: 7px; display: flex; align-items: center; gap: 5px; }
.cc-note b { color: var(--ink); }
.cc-list::-webkit-scrollbar { width: 7px; }
.cc-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }

/* ============================================================
   FORGOT PASSWORD
   ============================================================ */
.lbl-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.forgot-link { font-size: 12.5px; color: var(--gold-deep); text-decoration: none; font-weight: 600; }
.forgot-link:hover { text-decoration: underline; }

.fp-card { max-width: 440px; }
.fp-steps { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 26px; }
.fp-step { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.fps-n {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--mist, #f3f0ea); color: var(--muted); font-size: 13px; font-weight: 700;
  border: 2px solid transparent; transition: all .2s;
}
.fps-l { font-size: 11px; color: var(--muted); white-space: nowrap; }
.fp-step.active .fps-n { background: var(--gold); color: #fff; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(181,152,90,.16); }
.fp-step.active .fps-l { color: var(--ink); font-weight: 600; }
.fp-step.done .fps-n { background: #16a34a; color: #fff; }
.fp-step.done .fps-l { color: #16a34a; }
.fp-line { flex: 1; max-width: 46px; height: 2px; background: var(--line); margin-bottom: 16px; border-radius: 2px; }
.fp-line.done { background: #16a34a; }

.otp-wrap { margin: 8px 0 20px; }
.otp-input {
  width: 100%; text-align: center; font-family: monospace; font-size: 30px; font-weight: 700;
  letter-spacing: 12px; padding: 16px 10px 16px 22px; border: 2px dashed var(--gold);
  border-radius: 14px; background: var(--gold-tint, #faf7f0); color: var(--ink); outline: none;
}
.otp-input:focus { border-style: solid; box-shadow: 0 0 0 4px rgba(181,152,90,.14); }
.otp-input::placeholder { color: #cfc4ad; letter-spacing: 8px; }

.fp-link-btn {
  background: none; border: none; color: var(--gold-deep); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 6px;
}
.fp-link-btn:hover { text-decoration: underline; }
.btn-primary.full { width: 100%; justify-content: center; }
@media (max-width: 480px) {
  .otp-input { font-size: 24px; letter-spacing: 8px; padding-left: 16px; }
  .fps-l { font-size: 10px; }
}

/* ============================================================
   PRODUCT GALLERY — desktop: thumbnails LEFT | mobile: neeche strip
   ============================================================ */
.pd-media { display: flex; gap: 14px; align-items: flex-start; }
.pd-media .pd-gallery { flex: 1; min-width: 0; order: 2; }

/* Desktop: thumbnails baaen taraf, upar-neeche column me */
.pd-media .pd-thumbs {
  order: 1; flex-direction: column; width: 78px; flex-shrink: 0;
  max-height: 560px; overflow-y: auto; gap: 10px; padding-right: 2px;
}
.pd-media .pd-thumbs::-webkit-scrollbar { width: 4px; }
.pd-media .pd-thumbs::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }

.pd-thumb {
  position: relative; width: 74px; height: 88px; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--line); cursor: pointer; flex-shrink: 0; background: var(--mist);
  transition: border-color .15s, transform .15s;
}
.pd-thumb:hover { border-color: var(--gold-lt, #d8bf85); transform: translateY(-2px); }
.pd-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(181,152,90,.2); }
.pd-thumb picture { width: 100%; height: 100%; display: block; }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; background: #fff; }

/* Thumbnail par number (kitni images hain, konsi hai) */
.pd-thumb-n {
  position: absolute; bottom: 3px; right: 4px; background: rgba(0,0,0,.6); color: #fff;
  font-size: 9.5px; font-weight: 600; padding: 1px 5px; border-radius: 5px; line-height: 1.5;
}
.pd-thumb.active .pd-thumb-n { background: var(--gold); }

/* Gallery par counter badge (1/4) */
.pd-count {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  background: rgba(16,16,16,.72); color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px; display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(4px);
}
.pd-count i { font-size: 13px; color: var(--gold-lt, #d8bf85); }

/* MOBILE: thumbnails main image ke neeche, side-by-side chhote boxes */
@media (max-width: 900px) {
  .pd-media { flex-direction: column; gap: 10px; }
  .pd-media .pd-gallery { order: 1; width: 100%; }
  .pd-media .pd-thumbs {
    order: 2; flex-direction: row; width: 100%; max-height: none;
    overflow-x: auto; overflow-y: hidden; gap: 8px; padding-bottom: 4px;
    scrollbar-width: none;
  }
  .pd-media .pd-thumbs::-webkit-scrollbar { display: none; }
  .pd-thumb { width: 58px; height: 68px; border-radius: 9px; }
  .pd-thumb-n { font-size: 9px; padding: 1px 4px; }
  .pd-count { top: 10px; left: 10px; font-size: 11px; padding: 4px 9px; }
}

/* ============================================================
   HERO BANNER — action button BOTTOM-LEFT + poora banner clickable
   ============================================================ */
.hero-slide { padding-bottom: 82px; }          /* button ki jagah */

/* Poora banner ek link (button na ho to bhi click chalta hai) */
.hero-link { position: absolute; inset: 0; z-index: 3; display: block; }

/* Text block — click banner ke link par jaye (text par nahi atke) */
.hero-content { position: relative; z-index: 4; pointer-events: none; max-width: 64%; }

/* ACTION BUTTON — hamesha neeche BAAEN kone me */
.hero-btn {
  position: absolute !important; left: 7%; bottom: 24px; z-index: 6;
  margin-top: 0 !important;
  background: rgba(16,16,16,.28); backdrop-filter: blur(3px);
}
.hero-btn:hover { background: var(--gold); color: #fff; }

/* Arrows aur dots banner-link ke UPAR rahen (warna click na ho) */
.hero-arrow, .hero-dots { z-index: 7 !important; }

/* Sirf image wala banner (koi text nahi) — image bilkul saaf, koi saya nahi */
.hero-slide.no-text::before { background: none !important; }

@media (max-width: 700px) {
  .hero-slide { padding-bottom: 68px; }
  .hero-btn { left: 20px; bottom: 18px; padding: 9px 20px; font-size: 12.5px; }
  .hero-content { max-width: 78%; }
}

/* ============================================================
   HEADER SEARCH — wider, more premium on desktop
   ============================================================ */
@media (min-width: 901px) {
  .header-inner { gap: 18px; }

  /* Search grows to fill center + guaranteed minimum width (kabhi shrink nahi) */
  .search-wrap {
    flex: 1 1 auto !important;
    min-width: 480px;
    margin-right: 8px;
  }
  .search-bar { box-shadow: 0 1px 3px rgba(0,0,0,.03); }
  .search-bar input { padding: 11px 22px; font-size: 15px; }
  .search-bar input::placeholder { color: #a9a49b; }
  .search-bar button { padding: 0 34px; font-size: 15px; }
  .search-bar:focus-within { box-shadow: 0 0 0 3px rgba(181,152,90,.13); }
}

/* Standard desktops */
@media (min-width: 1200px) {
  .search-wrap { min-width: 600px; }
}

/* Large screens */
@media (min-width: 1500px) {
  .site-header .container.header-inner { max-width: 1580px; }
  .search-wrap { min-width: 700px; }
  .search-bar input { padding: 12px 24px; font-size: 15.5px; }
}

/* ============================================================
   ADDRESS BOOK — account page + checkout picker
   ============================================================ */
.acc-count { background: var(--gold); color: #fff; font-size: 10.5px; font-weight: 700; padding: 1px 7px; border-radius: 999px; margin-left: auto; }
.ap-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.btn-primary.sm { padding: 9px 16px; font-size: 13px; }

/* Saved address cards */
.addr-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; margin-bottom: 22px; }
.addr-card {
  border: 1.5px solid var(--line); border-radius: 15px; padding: 16px 17px; background: #fff;
  transition: border-color .15s, box-shadow .15s; position: relative;
}
.addr-card.is-default { border-color: var(--gold); background: var(--gold-tint, #faf7f0); }
.addr-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.ac-top, .sa-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ac-label, .sa-label { font-size: 12.5px; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 5px; }
.ac-label i, .sa-label i { color: var(--gold); font-size: 14px; }
.ac-badge, .sa-badge {
  background: var(--gold); color: #fff; font-size: 9.5px; font-weight: 700; letter-spacing: .05em;
  padding: 3px 8px; border-radius: 999px;
}
.ac-name, .sa-name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.ac-phone { color: var(--muted); font-weight: 400; font-size: 13px; }
.ac-addr, .sa-addr { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 4px; }
.ac-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--line); }
.ac-btn { font-size: 12.5px; font-weight: 600; color: var(--gold-deep); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.ac-btn:hover { text-decoration: underline; }
.ac-btn.danger { color: #dc2626; }

.addr-empty { text-align: center; padding: 34px 20px; color: var(--muted); }
.addr-empty i { font-size: 42px; color: var(--gold); opacity: .5; }
.addr-empty p { font-size: 13.5px; margin-top: 10px; line-height: 1.7; }

/* Add/edit form (collapsible) */
.addr-form-wrap { border: 1.5px dashed var(--line); border-radius: 15px; padding: 16px 18px; }
.addr-form-wrap[open] { border-style: solid; border-color: var(--gold); }
.addr-form-wrap summary {
  cursor: pointer; font-weight: 700; font-size: 14.5px; color: var(--ink);
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.addr-form-wrap summary::-webkit-details-marker { display: none; }
.addr-form-wrap summary i { color: var(--gold); font-size: 18px; }
.addr-check { display: flex !important; align-items: center; gap: 9px; cursor: pointer; font-weight: 500 !important; }
.addr-check input { width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; }
.addr-check span { font-size: 13.5px; color: var(--ink-soft, #555); }

/* ---------- Checkout: current address + picker ---------- */
.sa-current {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border: 1.5px solid var(--gold); background: var(--gold-tint, #faf7f0);
  border-radius: 14px; padding: 15px 17px; margin-bottom: 6px; flex-wrap: wrap;
}
.sa-change {
  background: #fff; border: 1.5px solid var(--gold); color: var(--gold-deep);
  padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); flex-shrink: 0;
}
.sa-change:hover { background: var(--gold); color: #fff; }

.addr-picker {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.5); backdrop-filter: blur(3px);
  align-items: center; justify-content: center; padding: 20px;
}
.addr-picker.open { display: flex; }
.ap-box { background: #fff; border-radius: 18px; width: 100%; max-width: 520px; max-height: 86vh; display: flex; flex-direction: column; overflow: hidden; }
.ap-bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.ap-bar b { font-size: 15px; }
.ap-bar button { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--muted); }
.ap-list { overflow-y: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.ap-item {
  display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--line);
  border-radius: 13px; padding: 13px 15px; cursor: pointer; transition: all .15s;
}
.ap-item:hover { border-color: var(--gold-lt, #d8bf85); }
.ap-item.selected { border-color: var(--gold); background: var(--gold-tint, #faf7f0); }
.ap-item input { display: none; }
.ap-item > div { flex: 1; }
.ap-tick { font-size: 20px; color: var(--line); flex-shrink: 0; }
.ap-item.selected .ap-tick { color: var(--gold); }
.ap-foot { padding: 14px 16px; border-top: 1px solid var(--line); display: flex; gap: 10px; flex-wrap: wrap; }
.ap-foot .full { flex: 1; justify-content: center; }
.btn-ghost {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  padding: 12px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

@media (max-width: 600px) {
  .addr-list { grid-template-columns: 1fr; }
  .sa-current { flex-direction: column; align-items: stretch; }
  .sa-change { width: 100%; justify-content: center; }
  .addr-picker { padding: 0; align-items: flex-end; }
  .ap-box { max-width: 100%; border-radius: 18px 18px 0 0; max-height: 90dvh; }
  .ap-foot { flex-direction: column; }
}

/* ============================================================
   MY ADDRESSES — line-wise list + popup (profile page)
   ============================================================ */
.addr-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.addr-head h3 { margin: 0; }

/* "Add Address" button */
.addr-add-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; border: none;
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  transition: background .2s, transform .15s;
}
.addr-add-btn i { font-size: 17px; }
.addr-add-btn:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* Address lines */
.addr-lines { display: flex; flex-direction: column; gap: 8px; }
.addr-line {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 12px 15px; background: #fff; transition: border-color .15s, background .15s;
}
.addr-line:hover { border-color: #ddd6c6; }
.addr-line.is-default { border-color: var(--gold); background: #faf7f0; }

.al-radio { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }

/* Ek hi line me — lamba address "..." ho jata hai */
.al-text {
  flex: 1; min-width: 0;
  font-size: 13.5px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.al-text b { color: var(--gold-deep); font-weight: 700; }

.al-acts { display: flex; gap: 6px; flex-shrink: 0; }
.al-ic {
  width: 34px; height: 34px; border-radius: 9px; background: var(--mist);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 16px; text-decoration: none; transition: all .15s;
}
.al-ic:hover { background: var(--gold); color: #fff; }
.al-ic.danger:hover { background: #dc2626; color: #fff; }

.addr-tip { font-size: 12px; color: var(--muted); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.addr-none { font-size: 13.5px; color: var(--muted); padding: 8px 0; }

/* Password link (profile) */
.pw-link { font-size: 13px; color: var(--muted); margin-left: 16px; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.pw-link:hover { color: var(--gold-deep); }
.pw-form { margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line); }

/* ---------- Add/Edit popup ---------- */
.addr-modal {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.55); backdrop-filter: blur(3px);
  align-items: center; justify-content: center; padding: 20px;
}
.addr-modal.open { display: flex; }
.am-box {
  background: #fff; border-radius: 18px; width: 100%; max-width: 500px;
  max-height: 88vh; display: flex; flex-direction: column; overflow: hidden;
  animation: amIn .22s ease;
}
@keyframes amIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.am-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.am-bar b { font-size: 15.5px; display: inline-flex; align-items: center; gap: 8px; }
.am-bar b i { color: var(--gold); font-size: 19px; }
.am-bar button { background: none; border: none; font-size: 21px; cursor: pointer; color: var(--muted); }
.am-body { padding: 18px; overflow-y: auto; }
.am-body .form-group { margin-bottom: 14px; }
.am-foot { display: flex; gap: 10px; margin-top: 18px; }
.am-foot .btn-primary, .am-foot .btn-ghost { flex: 1; justify-content: center; }

@media (max-width: 600px) {
  .addr-modal { padding: 0; align-items: flex-end; }
  .am-box { max-width: 100%; border-radius: 18px 18px 0 0; max-height: 92dvh; }
  .addr-add-btn { width: 100%; justify-content: center; }
  .al-text { font-size: 12.5px; }
  .al-ic { width: 32px; height: 32px; }
  .pw-link { display: block; margin: 12px 0 0; }
}

/* ---- Current default address (Profile Settings me) ---- */
.cur-def {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--gold); background: #faf7f0;
  border-radius: 11px; padding: 12px 15px;
  font-size: 13.5px; color: var(--ink);
}
.cur-def i { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.cur-def span { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cur-def b { color: var(--gold-deep); }
.cur-def.empty { border-style: dashed; border-color: var(--line); background: var(--mist); color: var(--muted); }
.cur-def.empty i { color: var(--muted); }
.cur-def a { color: var(--gold-deep); font-weight: 600; }
.cur-def-tip { display: block; margin-top: 6px; font-size: 11.5px; color: var(--muted); }
.cur-def-tip a { color: var(--gold-deep); font-weight: 600; }

/* ---- City field: sakht validation ---- */
.cc-err { display: none; margin-top: 6px; font-size: 12px; color: #dc2626; font-weight: 500; }
.city-combo.invalid .cc-input-wrap input { border-color: #dc2626 !important; background: #fef2f2; }
.city-combo.invalid .cc-caret { color: #dc2626; }
.am-note {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12px; color: var(--muted); background: var(--mist);
  padding: 10px 12px; border-radius: 9px; margin: 4px 0 0; line-height: 1.6;
}
.am-note i { color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   ACCOUNT PAGE — MOBILE FIXES
   (nowrap text grid column ko chaura kar raha tha -> page overflow)
   ============================================================ */

/* Grid/flex items ko simatne do — warna lamba address page bahar kheench deta hai */
.form-grid, .form-group, .acc-panel, .form-card { min-width: 0; }
.form-group.full { min-width: 0; }
.cur-def { min-width: 0; overflow: hidden; }
.addr-lines, .addr-line { min-width: 0; }
.al-text, .cur-def span { min-width: 0; }

@media (max-width: 860px) {
  /* Kuch bhi screen se bahar na nikle */
  .account-layout, .acc-side, .acc-main { min-width: 0; max-width: 100%; }
  .account-layout { grid-template-columns: 1fr !important; }

  /* Left menu: 5 items ab theek se (Sign Out akela nahi girega) */
  .acc-nav {
    display: flex !important; flex-wrap: nowrap; overflow-x: auto;
    gap: 8px; margin-top: 12px; padding-bottom: 4px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .acc-nav::-webkit-scrollbar { display: none; }
  .acc-nav a {
    flex: 0 0 auto; min-width: 82px;
    flex-direction: column; gap: 5px; padding: 12px 10px; font-size: 11px;
  }

  /* Cards */
  .form-card, .acc-panel { padding: 16px 14px; border-radius: 16px; }
  .form-card h3 { font-size: 17px; }

  /* Inputs: 16px = iPhone zoom nahi karega */
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; width: 100%; }

  /* Current default address */
  .cur-def { font-size: 12.5px; padding: 11px 13px; }
  .cur-def span { white-space: normal; overflow: visible; text-overflow: clip; line-height: 1.55; }

  /* My Addresses */
  .addr-head { flex-direction: column; align-items: stretch; gap: 10px; }
  .addr-add-btn { width: 100%; justify-content: center; }
  .addr-line { flex-wrap: nowrap; gap: 9px; padding: 11px 12px; }
  .al-text {
    font-size: 12.5px; white-space: normal;      /* mobile par 2 line tak */
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; line-height: 1.5;
  }
  .al-acts { flex-direction: column; gap: 5px; }
  .al-ic { width: 32px; height: 32px; font-size: 15px; }

  /* Save + change password */
  .btn-primary { width: 100%; justify-content: center; }
  .pw-link { display: block; text-align: center; margin: 12px 0 0; }
}

@media (max-width: 420px) {
  .acc-nav a { min-width: 74px; font-size: 10.5px; }
  .al-text { font-size: 12px; }
}

/* Change password link/button (profile) */
.pw-link {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 13px; color: var(--muted); margin-left: 16px;
  display: inline-flex; align-items: center; gap: 5px; padding: 0;
}
.pw-link:hover { color: var(--gold-deep); text-decoration: underline; }
@media (max-width: 860px) {
  .pw-link { display: flex; width: 100%; justify-content: center; margin: 14px 0 0; padding: 10px 0; }
}

/* ============================================================
   CHECKOUT — MOBILE FIX (new address form bahar nikal raha tha)
   ============================================================ */
@media (max-width: 860px) {
  /* Grid ki jagah simple column — koi extra column ban hi nahi sakta */
  .form-grid {
    display: flex !important; flex-direction: column; gap: 14px;
  }
  .form-group, .form-group.full { grid-column: auto !important; width: 100%; min-width: 0; }

  .co-card, .form-card, .checkout-grid, .summary-card { min-width: 0; max-width: 100%; }
  .checkout-grid { grid-template-columns: 1fr !important; }

  /* "Save this address…" checkbox — ab theek se ek line/paragraph me */
  .addr-check {
    display: flex !important; align-items: flex-start; gap: 10px;
    background: var(--mist); border-radius: 11px; padding: 12px 13px;
    text-transform: none !important; letter-spacing: 0 !important;
  }
  .addr-check input { margin-top: 1px; }
  .addr-check span {
    font-size: 13px; line-height: 1.5; color: var(--ink);
    text-transform: none !important; letter-spacing: 0 !important;
    white-space: normal; flex: 1; min-width: 0;
  }

  /* Saved address card + picker */
  .sa-current { min-width: 0; }
  .sa-addr, .sa-name { white-space: normal; overflow-wrap: anywhere; }
}

/* Checkbox ka text kabhi bhi UPPERCASE label na bane */
.addr-check, .addr-check span { text-transform: none; letter-spacing: 0; }

/* ============================================================
   CONVERSION BOOSTERS — WhatsApp order, trust badges, sticky buy bar
   ============================================================ */

/* ---- WhatsApp order button ---- */
.wa-order-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 13px 18px; border-radius: 14px; margin-top: 12px;
  box-shadow: 0 4px 14px rgba(37,211,102,.28);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.wa-order-btn:hover { background: #1eb958; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.36); }
.wa-order-btn > i:first-child { font-size: 26px; flex-shrink: 0; }
.wa-order-btn span { flex: 1; display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.wa-order-btn b { font-size: 14.5px; font-weight: 600; }
.wa-order-btn small { font-size: 11.5px; opacity: .92; }
.wa-arrow { font-size: 16px; opacity: .85; flex-shrink: 0; }

/* ---- Trust badges ---- */
.pd-trust {
  display: grid; gap: 10px; margin-top: 18px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.pt-item { display: flex; align-items: center; gap: 12px; }
.pt-item > i {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--mist); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.pt-item div { display: flex; flex-direction: column; line-height: 1.4; min-width: 0; }
.pt-item b { font-size: 13.5px; color: var(--ink); font-weight: 600; }
.pt-item span { font-size: 12px; color: var(--muted); }

/* ---- Sticky buy bar (SIRF mobile) ---- */
.sticky-buy { display: none; }

@media (max-width: 860px) {
  .sticky-buy {
    display: flex; align-items: center; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
    background: #fff; border-top: 1px solid var(--line);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 24px rgba(0,0,0,.12);
    transform: translateY(115%); transition: transform .28s ease;
  }
  .sticky-buy.show { transform: translateY(0); }

  .sb-price { display: flex; flex-direction: column; line-height: 1.25; flex-shrink: 0; }
  .sb-price b { font-size: 17px; color: var(--price, #e53935); font-weight: 700; }
  .sb-was { font-size: 11px; color: var(--muted); text-decoration: line-through; }

  .sb-wa {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    background: #25D366; color: #fff; text-decoration: none;
    display: flex; align-items: center; justify-content: center; font-size: 24px;
  }
  .sb-cart {
    flex: 1; background: var(--ink); color: #fff; border: none;
    padding: 14px 16px; border-radius: 12px; cursor: pointer;
    font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 7px;
  }
  .sb-cart:active { transform: scale(.98); }

  /* Sticky bar footer/content ko na dhake */
  body:has(.sticky-buy) .site-footer { padding-bottom: 84px; }

  /* Agar bottom nav bhi hai to sticky bar uske upar */
  .sticky-buy { bottom: 0; }
}

/* Desktop par WhatsApp button aur badges thora compact */
@media (min-width: 861px) {
  .pd-trust { grid-template-columns: 1fr; gap: 12px; }
  .wa-order-btn { max-width: 100%; }
}

/* ---- Product video AS SLIDE (gallery ke andar) ---- */
.pd-slide-video {
  display: flex; align-items: center; justify-content: center;
  background: #000; flex: 0 0 100%; scroll-snap-align: start;
}
.pd-slide-video video {
  width: 100%; height: 100%; max-height: 100%; object-fit: contain; background: #000;
}

/* Video thumbnail — glowing (focus ke liye) */
.pd-thumb-video { position: relative; overflow: hidden; }
.pd-thumb-video img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); }
.pd-thumb-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; z-index: 2;
}
.pd-thumb-play i { filter: drop-shadow(0 1px 3px rgba(0,0,0,.6)); }
.pd-thumb-vlabel {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(0,0,0,.6); color: #fff; font-size: 9px; font-weight: 600;
  text-align: center; padding: 2px; letter-spacing: .04em; text-transform: uppercase;
}

/* Glow animation — customer ka focus is par aaye */
.pd-thumb-video.glow {
  animation: thumbGlow 1.6s ease-in-out infinite;
  border: 2px solid var(--gold) !important;
}
@keyframes thumbGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181,152,90,.55), 0 0 8px 2px rgba(181,152,90,.4); }
  50%      { box-shadow: 0 0 0 4px rgba(181,152,90,0), 0 0 16px 5px rgba(181,152,90,.7); }
}

/* Video dot (dots row me) */
.pd-dot-video { position: relative; }
.pd-dot-video::after {
  content: '\25B6'; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); font-size: 6px; color: var(--gold-deep);
}

/* ============================================================
   BLOG — listing cards + single article
   ============================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px;
}
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.bc-img { aspect-ratio: 16/9; background: var(--mist); overflow: hidden; }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .bc-img img { transform: scale(1.05); }
.bc-noimg { display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 40px; background: var(--gold-tint); }
.bc-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.bc-body h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.3;
  color: var(--ink);
}
.bc-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.bc-date {
  font-size: 12px; color: var(--gold-deep); font-weight: 600;
  display: flex; align-items: center; gap: 6px; margin-top: 2px;
}

/* Pagination */
.blog-pager { display: flex; gap: 8px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.blog-pager a {
  min-width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--ink); background: #fff; transition: all .15s;
}
.blog-pager a:hover { border-color: var(--gold); color: var(--gold-deep); }
.blog-pager a.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* ---- Single article ---- */
.blog-single { max-width: 860px; }
.bp-article { margin-top: 6px; }
.bp-title {
  font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; line-height: 1.18; margin-bottom: 14px;
}
.bp-meta {
  display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted);
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 24px;
}
.bp-meta span { display: inline-flex; align-items: center; gap: 6px; }
.bp-meta i { color: var(--gold); font-size: 15px; }
.bp-cover { width: 100%; border-radius: 16px; margin-bottom: 28px; }

.bp-body { font-size: 16px; line-height: 1.85; color: var(--ink-soft); }
.bp-body p { margin-bottom: 18px; }
.bp-body h2 {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--ink); margin: 32px 0 14px;
}
.bp-body ul { margin: 0 0 18px 22px; }
.bp-body li { margin-bottom: 8px; }

/* Shop CTA (blog -> store) */
.bp-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--gold-tint); border: 1.5px solid var(--gold);
  border-radius: 16px; padding: 22px 24px; margin-top: 38px; flex-wrap: wrap;
}
.bp-cta b { display: block; font-family: var(--font-display); font-size: 19px; margin-bottom: 4px; }
.bp-cta span { font-size: 14px; color: var(--ink-soft); }

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .bp-body { font-size: 15.5px; }
  .bp-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .bp-cta .btn-primary { justify-content: center; }
  .bp-meta { gap: 12px; font-size: 12.5px; }
}

/* Blog link — categories dropdown ke end me */
.cd-extra { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.cd-extra-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 12px; transition: all .16s;
}
.cd-extra-link:hover { background: var(--gold-tint); transform: translateX(3px); }
.cd-extra-link .ci-ico { background: var(--ink); color: var(--gold); }

/* ---- AdSense ad slots (sirf blog par) ---- */
.ad-slot { margin: 34px 0; text-align: center; min-height: 90px; }
.ad-label {
  display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: #b3b0a9; margin-bottom: 8px;
}
.ad-slot ins { display: block; }
@media (max-width: 700px) { .ad-slot { margin: 26px 0; } }

/* ---- Product page: sirf 2 buttons (Add to Cart + WhatsApp), dono full width ---- */
.pd-actions { display: block; }
.pd-add-full {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15.5px;
  border-radius: 14px;          /* WhatsApp button jaisa */
}
.pd-add-full i { font-size: 19px; }

/* WhatsApp button pehle se full width hai — dono ek jaise nazar aayein */
.wa-order-btn { width: 100%; box-sizing: border-box; }

@media (max-width: 700px) {
  .pd-add-full { padding: 15px 20px; font-size: 15px; }
}

/* ============================================================
   CHAT ASSISTANT — floating widget
   ============================================================ */
.chat-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 430;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(156,127,66,.45);
  transition: transform .2s, opacity .2s;
}
.chat-fab:hover { transform: translateY(-3px) scale(1.04); }
.chat-fab.hide { opacity: 0; pointer-events: none; transform: scale(.7); }
.chat-fab-dot {
  position: absolute; top: 4px; right: 4px; width: 12px; height: 12px;
  background: #22c55e; border: 2px solid #fff; border-radius: 50%;
}

.chat-box {
  position: fixed; right: 20px; bottom: 20px; z-index: 440;
  width: 370px; max-width: calc(100vw - 32px);
  height: 540px; max-height: calc(100vh - 100px);
  background: #fff; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(18,18,18,.3);
  opacity: 0; transform: translateY(18px) scale(.96); pointer-events: none;
  transition: all .26s cubic-bezier(.2,.8,.3,1);
}
.chat-box.open { opacity: 1; transform: none; pointer-events: auto; }

/* Head */
.cb-head {
  display: flex; align-items: center; gap: 12px; padding: 15px 16px;
  background: linear-gradient(135deg, #1c1c1c 0%, #121212 100%); color: #fff;
}
.cb-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.cb-title { flex: 1; min-width: 0; line-height: 1.3; }
.cb-title b { font-size: 15px; display: block; }
.cb-title span { font-size: 11.5px; color: #c9c4b8; display: flex; align-items: center; gap: 5px; }
.cb-title span i { color: #22c55e; font-size: 8px; }
.cb-close { background: none; border: none; color: #b9b5ac; font-size: 22px; cursor: pointer; padding: 0; }
.cb-close:hover { color: #fff; }

/* Body */
.cb-body {
  flex: 1; overflow-y: auto; padding: 16px 14px;
  background: #faf9f7; display: flex; flex-direction: column; gap: 10px;
  -webkit-overflow-scrolling: touch;
}
.cb-body::-webkit-scrollbar { width: 6px; }
.cb-body::-webkit-scrollbar-thumb { background: #ddd8cc; border-radius: 999px; }

.cb-msg { display: flex; }
.cb-msg.user { justify-content: flex-end; }
.cb-bubble {
  max-width: 84%; padding: 11px 14px; border-radius: 15px;
  font-size: 14px; line-height: 1.6; word-wrap: break-word;
}
.cb-msg.bot .cb-bubble { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.cb-msg.user .cb-bubble { background: var(--ink); color: #fff; border-bottom-right-radius: 5px; }
.cb-bubble b { color: var(--gold-deep); }
.cb-msg.user .cb-bubble b { color: var(--gold); }

/* "Soch raha hun" indicator — floating dots + shimmer */
.cb-typing .cb-bubble {
  display: flex; align-items: center; gap: 5px; padding: 12px 15px;
  animation: cbBreathe 2.2s ease-in-out infinite;
}
.cb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  animation: cbDot 1.3s ease-in-out infinite;
}
.cb-dot:nth-child(2) { animation-delay: .18s; }
.cb-dot:nth-child(3) { animation-delay: .36s; }
@keyframes cbDot {
  0%, 65%, 100% { opacity: .28; transform: translateY(0) scale(.85); }
  32%           { opacity: 1;   transform: translateY(-6px) scale(1); }
}
/* Halka sa saans lena — jaise soch raha ho */
@keyframes cbBreathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181,152,90,.16); }
  50%      { box-shadow: 0 0 0 5px rgba(181,152,90,0); }
}
.cb-think {
  font-size: 11.5px; font-style: normal; color: #a8a49b; margin-left: 6px;
  background: linear-gradient(90deg, #b8b4ab 25%, var(--gold) 50%, #b8b4ab 75%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cbShimmer 1.8s linear infinite;
}
@keyframes cbShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Product cards */
.cb-cards { display: flex; flex-direction: column; gap: 8px; }
.cb-card {
  display: flex; gap: 11px; background: #fff; border: 1px solid var(--line);
  border-radius: 13px; padding: 9px; text-decoration: none; transition: all .16s;
}
.cb-card:hover { border-color: var(--gold); box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.cb-card img { width: 54px; height: 62px; object-fit: cover; border-radius: 9px; background: var(--mist); flex-shrink: 0; }
.cb-card-b { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; justify-content: center; }
.cb-card-n { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cb-card-p { font-size: 13.5px; font-weight: 700; color: var(--sale); }
.cb-card-p s { color: var(--muted); font-weight: 400; font-size: 11.5px; margin-left: 4px; }
.cb-card-s { font-size: 11px; color: var(--muted); }
.cb-card-o { font-size: 10.5px; color: var(--sale); font-weight: 600; }

/* Quick chips */
.cb-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.cb-chip {
  background: #fff; border: 1.5px solid var(--gold); color: var(--gold-deep);
  border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); transition: all .15s;
}
.cb-chip:hover { background: var(--gold); color: #fff; }

/* Footer input */
.cb-foot {
  display: flex; gap: 8px; padding: 12px; background: #fff; border-top: 1px solid var(--line);
}
.cb-foot input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 11px 16px; font-size: 14px; outline: none; min-width: 0;
}
.cb-foot input:focus { border-color: var(--gold); }
.cb-foot button {
  width: 44px; height: 44px; border-radius: 50%; border: none; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff;
  font-size: 19px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.cb-foot button:hover { filter: brightness(1.08); }

/* Mobile — bottom nav se upar, full screen chat */
@media (max-width: 720px) {
  .chat-fab { right: 16px; bottom: 90px; width: 52px; height: 52px; font-size: 25px; }
  .chat-box {
    right: 0; left: 0; bottom: 0; width: 100%; max-width: 100%;
    height: 88dvh; max-height: 88dvh; border-radius: 20px 20px 0 0;
  }
}

/* Product page par sticky buy bar hai — chat button upar rakho */
body:has(.sticky-buy) .chat-fab { bottom: 150px; }
@media (min-width: 861px) { body:has(.sticky-buy) .chat-fab { bottom: 20px; } }
