/* ── Performance ────────────────────────────────────────────────────────────── */
img { transform: translateZ(0); backface-visibility: hidden; content-visibility: auto; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeSpeed; }

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --maroon:   #7B1F2E;
  --maroon-d: #5A1520;
  --maroon-l: #9B3040;
  --gold:     #C9A84C;
  --gold-l:   #E8C96A;
  --gold-d:   #A08030;
  --cream:    #FDF6ED;
  --cream-d:  #F5EAD8;
  --white:    #FFFFFF;
  --text-d:   #2C1810;
  --text-m:   #6B4A3E;
  --border:   #EAD8BF;
  --green:    #16a34a;
  --red:      #dc2626;
  --shadow:   0 2px 12px rgba(123,31,46,.08);
  --shadow-md:0 8px 32px rgba(123,31,46,.14);
  --font-serif:'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --header-h:  68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 18px;
  background: var(--cream);
  color: var(--text-d);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-sans); }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 60px 0; }

/* ── Typography Helpers ─────────────────────────────────────────────────────── */
.section-label {
  font-size: 13px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-d); margin-bottom: 10px; display: block;  margin-top: 10px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(29px, 3.5vw, 45px);
  font-weight: 500; line-height: 1.2; color: var(--maroon-d);
}
.section-title em { font-style: italic; color: var(--maroon-l); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-l); }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 14px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 28px; transition: all .2s; white-space: nowrap; border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--maroon-d); }
.btn-primary:hover { background: var(--gold-l); }
.btn-secondary { background: var(--maroon); color: #fff; }
.btn-secondary:hover { background: var(--maroon-l); }
.btn-outline { border-color: var(--maroon); color: var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: #fff; }
.btn-outline-gold { border-color: rgba(201,168,76,.5); color: var(--gold-l); }
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { border-color: var(--border); color: var(--text-m); }
.btn-ghost:hover { border-color: var(--maroon); color: var(--maroon); }
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-lg { font-size: 15px; padding: 16px 36px; }
.btn-full { width: 100%; }
.btn-icon { padding: 10px; min-width: 40px; height: 40px; }

/* ── Forms ──────────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-d); }
.form-input, .form-select, .form-textarea {
  padding: 12px 14px; border: 1px solid var(--border); background: var(--white);
  font-size: 17px; color: var(--text-d); outline: none; transition: border-color .2s;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold-d); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { font-size: 15px; color: var(--red); display: none; }
.form-error.show { display: block; }

/* ── Alerts ─────────────────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; font-size: 16.5px; border-left: 3px solid; margin-bottom: 20px; }
.alert-success { background: #f0fdf4; border-color: var(--green); color: #15803d; }
.alert-error   { background: #fef2f2; border-color: var(--red);   color: #b91c1c; }
.alert-info    { background: #eff6ff; border-color: #3b82f6;      color: #1d4ed8; }

/* ── Badges ─────────────────────────────────────────────────────────────────── */
.badge { font-size: 13px; font-weight: 500; padding: 4px 10px; letter-spacing: .05em; display: inline-block; }
.badge-new       { background: var(--maroon);  color: #fff; }
.badge-bestseller{ background: var(--gold);    color: var(--maroon-d); }
.badge-sale      { background: #FEF3C7;        color: #92400E; }
.badge-cod       { background: #f0fdf4;        color: var(--green); border: 1px solid #bbf7d0; }
.badge-free-ship { background: #eff6ff;        color: #1d4ed8; }

/* ── Breadcrumb ─────────────────────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--text-m); padding: 16px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-m); transition: color .2s; }
.breadcrumb a:hover { color: var(--maroon); }
.breadcrumb-sep { opacity: .4; font-size: 13px; }
.breadcrumb span { color: var(--maroon); font-weight: 500; }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────────────────────── */
.announce {
  background: var(--maroon-d); color: var(--gold-l);
  text-align: center; padding: 5px 16px;
  font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase;
}
.announce strong { color: #fff; font-weight: 500; }

/* ── TRUST STRIP ────────────────────────────────────────────────────────────── */
.trust-strip { background: var(--cream-d); border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-track {
  display: flex; width: max-content;
  animation: trustScroll 30s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ti {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 20px; font-size: 12px; color: var(--maroon-d);
  border-right: 1px solid #D8C4A0; white-space: nowrap; letter-spacing: .04em; flex-shrink: 0;
}
.ti svg { width: 12px; height: 12px; fill: none; stroke: var(--gold-d); stroke-width: 1.5; flex-shrink: 0; }

/* ── HEADER ─────────────────────────────────────────────────────────────────── */
header.site-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
}
/* Search bar */
.site-search-bar {
  background: var(--white); border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  padding: 0;
}
.site-search-bar.open { max-height: 70px; padding: 10px 0; }
.site-search-form {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); border-radius: 4px;
  padding: 8px 14px; background: var(--cream);
}
.site-search-form svg { width: 17px; height: 17px; stroke: var(--text-m); flex-shrink: 0; }
.site-search-form input {
  flex: 1; border: none; background: transparent; font-size: 15px;
  color: var(--text-d); font-family: var(--font-sans); outline: none;
}
.site-search-form input::placeholder { color: var(--text-m); }
.search-close-btn { background: none; border: none; cursor: pointer; padding: 0; display: flex; }
.search-close-btn svg { width: 18px; height: 18px; stroke: var(--text-m); stroke-width: 1.8; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.logo {
  font-family: var(--font-serif); font-size: 31px; font-weight: 600;
  color: var(--maroon); letter-spacing: .06em; flex-shrink: 0; display:flex; align-items:center;
}
.logo span { color: var(--gold-d); }
.logo-img { height: 38px; width: auto; display: block; object-fit: contain; }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-size: 14px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-d); position: relative; padding-bottom: 2px; white-space: nowrap;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .25s;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* ── Collections Dropdown ──────────────────────────────────────────────────── */
.nav-col-wrap { position: relative; display: flex; align-items: center; }
.nav-col-btn {
  background: none; border: none; cursor: pointer; padding-bottom: 2px;
  font-size: 14px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-d); display: flex; align-items: center; gap: 5px; position: relative; white-space: nowrap;
  font-family: var(--font-sans);
}
.nav-col-btn::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .25s;
}
.nav-col-wrap:hover .nav-col-btn::after, .nav-col-wrap.open .nav-col-btn::after { width: 100%; }
.nav-col-btn svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform .25s; flex-shrink: 0; }
.nav-col-wrap:hover .nav-col-btn svg, .nav-col-wrap.open .nav-col-btn svg { transform: rotate(180deg); }
.nav-col-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 8px 32px rgba(44,24,16,.12); min-width: 200px;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-6px);
  transition: opacity .22s, transform .22s; z-index: 500;
}
.nav-col-wrap:hover .nav-col-dropdown, .nav-col-wrap.open .nav-col-dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-col-dropdown a {
  display: block; padding: 11px 20px; font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-d);
  border-bottom: 1px solid var(--border); transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-col-dropdown a:last-child { border-bottom: none; border-radius: 0 0 8px 8px; }
.nav-col-dropdown a:first-child { border-radius: 8px 8px 0 0; }
.nav-col-dropdown a:hover { background: var(--cream); color: var(--maroon); }
.nav-col-dropdown a.active { color: var(--maroon); background: var(--cream); }
.nav-col-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: var(--border);
  border-top: none;
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-icon-btn {
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--maroon); position: relative; display: flex; align-items: center;
}
.header-icon-btn svg { width: 22px; height: 22px; stroke: var(--maroon); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--maroon-d);
  font-size: 12px; font-weight: 700; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--maroon);
}
.hamburger svg { width: 22px; height: 22px; stroke: var(--maroon); fill: none; stroke-width: 1.5; stroke-linecap: round; }

/* User Menu */
.user-menu { position: relative; }
.user-menu-btn {
  display: flex; align-items: center; gap: 7px; padding: 4px 6px;
  border: none; cursor: pointer; background: none;
}
.user-avatar { width: 28px; height: 28px; background: var(--maroon); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }
.user-name { font-size: 15px; font-weight: 500; color: var(--text-d); }
.user-chevron { width: 12px; height: 12px; stroke: var(--text-m); fill: none; stroke-width: 2; transition: transform .2s; }
.user-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--white); border: 1px solid var(--border); min-width: 200px;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s; z-index: 300;
}
.user-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.user-dropdown-header { padding: 16px; border-bottom: 1px solid var(--border); }
.user-dropdown-name { font-weight: 600; font-size: 17px; }
.user-dropdown-sub { font-size: 14px; color: var(--text-m); margin-top: 2px; }
.user-dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 16px; font-size: 16px; color: var(--text-d); transition: background .15s; }
.user-dropdown a:hover { background: var(--cream); }
.user-dropdown a svg { width: 15px; height: 15px; stroke: var(--text-m); fill: none; stroke-width: 1.5; }
.user-dropdown-logout { color: var(--red) !important; border-top: 1px solid var(--border); }

/* ── MOBILE NAV ─────────────────────────────────────────────────────────────── */
.mob-nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 400;
}
.mob-nav-backdrop.open { display: block; }
.mob-nav {
  position: fixed; top: 0; left: 0; bottom: 0; width: 300px;
  background: var(--white); z-index: 500; transform: translateX(-100%);
  transition: transform .3s ease; overflow-y: auto; display: flex; flex-direction: column;
}
.mob-nav.open { transform: translateX(0); }
.mob-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--border);
}
.mob-nav-logo { font-family: var(--font-serif); font-size: 25px; font-weight: 600; color: var(--maroon); }
.mob-nav-logo span { color: var(--gold-d); }
.mob-nav-close { padding: 4px; color: var(--text-m); }
.mob-nav-close svg { width: 22px; height: 22px; stroke: var(--text-m); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.mob-nav-links { padding: 12px 0; flex: 1; }
.mob-nav-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; font-size: 17px; color: var(--text-d);
  border-bottom: 1px solid rgba(0,0,0,.05); transition: background .15s;
}
.mob-nav-links a:hover, .mob-nav-links a.active { background: var(--cream); color: var(--maroon); }
.mob-nav-links a svg { width: 16px; height: 16px; stroke: var(--gold-d); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.mob-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mob-nav-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.mob-nav-footer a { display: block; font-size: 16px; color: var(--text-m); padding: 8px 0; }

/* ── Mobile Collections Accordion ─────────────────────────────────────────── */
.mob-col-acc { border-bottom: 1px solid rgba(0,0,0,.05); }
.mob-col-acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; font-size: 17px; color: var(--text-d); background: none;
  border: none; cursor: pointer; font-family: var(--font-sans);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.mob-col-acc-btn span svg { width: 16px; height: 16px; stroke: var(--gold-d); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.mob-col-acc-btn:hover, .mob-col-acc.open .mob-col-acc-btn { background: var(--cream); color: var(--maroon); }
.mob-col-chevron { stroke: var(--gold-d); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; transition: transform .25s; }
.mob-col-acc.open .mob-col-chevron { transform: rotate(180deg); }
.mob-col-acc-body { display: none; background: #faf6f1; }
.mob-col-acc.open .mob-col-acc-body { display: block; }
.mob-col-acc-body a {
  display: flex; align-items: center;
  padding: 11px 20px 11px 44px; font-size: 15px; color: var(--text-d);
  border-bottom: 1px solid rgba(0,0,0,.04); transition: background .15s, color .15s;
}
.mob-col-acc-body a:last-child { border-bottom: none; }
.mob-col-acc-body a:hover, .mob-col-acc-body a.active { color: var(--maroon); background: var(--cream); }

/* ── CART SIDEBAR ───────────────────────────────────────────────────────────── */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 600;
}
.cart-overlay.open { display: block; }
.cart-sidebar {
  position: fixed; right: 0; top: 0; bottom: 0; width: 400px;
  background: var(--white); z-index: 700; transform: translateX(100%);
  transition: transform .3s ease; display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-family: var(--font-serif); font-size: 23px; font-weight: 500; color: var(--maroon); }
.cart-close svg { width: 22px; height: 22px; stroke: var(--text-m); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 96px; object-fit: cover; background: var(--cream-d); flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 16.5px; font-weight: 500; line-height: 1.3; margin-bottom: 4px; }
.cart-item-var { font-size: 14px; color: var(--text-m); margin-bottom: 8px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-size: 18px; font-weight: 600; color: var(--maroon); }
.cart-qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); }
.cart-qty button { width: 28px; height: 28px; font-size: 19px; color: var(--maroon); display: flex; align-items: center; justify-content: center; }
.cart-qty span { width: 30px; text-align: center; font-size: 16px; }
.cart-remove { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-m); margin-top: 6px; cursor: pointer; }
.cart-remove:hover { color: var(--red); }
.cart-empty { text-align: center; padding: 60px 24px; }
.cart-empty svg { width: 48px; height: 48px; stroke: var(--border); fill: none; stroke-width: 1; margin: 0 auto 16px; }
.cart-empty p { font-size: 17px; color: var(--text-m); margin-bottom: 20px; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cart-total-label { font-size: 16px; color: var(--text-m); }
.cart-total-val { font-family: var(--font-serif); font-size: 25px; font-weight: 600; color: var(--maroon); }
.cart-ship-note { font-size: 14px; color: var(--green); margin-bottom: 16px; }
.cart-checkout-btn { width: 100%; background: var(--maroon); color: #fff; padding: 15px; font-size: 15px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: none; transition: background .2s; font-family: var(--font-sans); }
.cart-checkout-btn:hover { background: var(--maroon-l); }
.cart-checkout-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

/* ── HERO BANNER ────────────────────────────────────────────────────────────── */
/* ── HERO SLIDER ─────────────────────────────────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; background: var(--white); line-height: 0; }
.hero-slides  { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.hero-slides::-webkit-scrollbar { display:none; }
.hero-slide   { flex:0 0 100%; scroll-snap-align:start; display:block; }
.hero-slide-link { display: block; overflow: hidden; }
/* Aspect ratios */
.hero-slide-link.ratio-4-1   { aspect-ratio: 4/1; }
.hero-slide-link.ratio-3-1   { aspect-ratio: 3/1; }
.hero-slide-link.ratio-2-5-1 { aspect-ratio: 2.5/1; }
.hero-slide-link.ratio-2-1   { aspect-ratio: 2/1; }
.hero-slide-link.ratio-16-9  { aspect-ratio: 16/9; }
/* Images */
.hero-slide-link img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-d { display: block; }
.hero-slide-m { display: none; }
/* Dots */
.hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot   { width: 9px; height: 9px; border-radius: 50%; background: rgba(253,246,237,.4); border: none; cursor: pointer; padding: 0; transition: background .3s, transform .3s; }
.hero-dot.active { background: var(--gold); transform: scale(1.3); }
/* Arrows */
.hero-arr  { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.18);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: background .2s; }
.hero-arr:hover { background: rgba(0,0,0,.6); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

/* ── CATEGORIES SECTION ─────────────────────────────────────────────────────── */
.cats-section { background: var(--white); padding: 16px 0 10px; }
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat-tile {
  aspect-ratio: 3/5; position: relative; overflow: hidden;
  cursor: pointer; display: flex; align-items: flex-end;
  transition: transform .3s; background: var(--cream-d);
  border-radius: 9999px 9999px 0 0;
  border: 1.5px solid rgba(201,168,76,.55);
}
.cat-tile::after {
  content: ''; position: absolute; inset: 3px 3px 0 3px;
  border-radius: 9999px 9999px 0 0;
  border: 1px solid rgba(201,168,76,.25);
  z-index: 3; pointer-events: none;
}
.cat-tile:hover { transform: translateY(-5px); z-index: 2; }
.cat-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; transition: transform .4s;
}
.cat-tile:hover img { transform: scale(1.04); }
.cat-tile-bg {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 13px; color: var(--gold-d);
  letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 16px;
}
.cat-overlay {
  position: relative; z-index: 2; width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,.68) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  padding: 28px 14px 16px;
}
.cat-name {
  font-family: var(--font-serif); font-size: 18px; color: var(--cream);
  font-weight: 500; display: block; letter-spacing: .04em; line-height: 1.25;
}
.cat-count { font-size: 12px; color: rgba(253,246,237,.7); margin-top: 3px; }
.cat-arrow { display: none; }

/* ── PRODUCT CARD ───────────────────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.product-card {
  background: var(--white); border: 1px solid var(--border); position: relative;
  overflow: hidden; transition: box-shadow .25s; cursor: pointer; border-radius: 4px;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-img-wrap { aspect-ratio: 3/4; background: var(--cream-d); position: relative; overflow: hidden; border-radius: 4px 4px 0 0; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-m); text-align: center; padding: 16px; letter-spacing: .06em;
}
.product-badges { position: absolute; bottom: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; }
.product-wish {
  position: absolute; top: 12px; right: 12px;
  background: var(--white); width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s; border: 1px solid var(--border);
  cursor: pointer; z-index: 2;
}
.product-card:hover .product-wish { opacity: 1; }
.product-wish.wishlisted { opacity: 1; background: #fff0f3; border-color: #fda4af; }
.product-wish svg { width: 16px; height: 16px; stroke: var(--text-m); fill: none; stroke-width: 1.5; }
.product-wish.wishlisted svg { stroke: var(--red); fill: #fda4af; }
.product-info { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 5px; }
.product-name { font-family: var(--font-serif); font-size: 20px; color: var(--text-d); font-weight: 500; line-height: 1.25; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-price-row { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; overflow: hidden; }
.product-price { font-size: 19px; font-weight: 600; color: var(--maroon); }
.product-mrp { font-size: 15px; color: var(--text-m); text-decoration: line-through; opacity: .65; }
.product-disc { font-size: 13px; background: #FEF3C7; color: #92400E; padding: 2px 7px; font-weight: 500; }
.product-add-btn {
  width: 100%; margin-top: auto; padding-top: 12px; background: var(--maroon); color: #fff;
  border: none; padding: 11px; font-size: 14px; letter-spacing: .1em;
  text-transform: uppercase; cursor: pointer; font-family: var(--font-sans);
  font-weight: 500; transition: background .2s; border-radius: 4px;
}
.product-add-btn:hover { background: var(--maroon-l); }
.product-fabric { font-size: 14px; color: var(--text-m); margin-top: 5px; }

@media (min-width: 769px) {
  .product-add-btn { display: none; }
}

/* ── SECTION HEADERS ────────────────────────────────────────────────────────── */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 12px; }
.view-all { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--maroon); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.view-all:hover { color: var(--gold-d); }

/* ── COLLECTIONS ────────────────────────────────────────────────────────────── */
.coll-tabs { display:flex; gap:10px; overflow-x:auto; scrollbar-width:none; padding-bottom:24px; flex-wrap:nowrap; }
.coll-tabs::-webkit-scrollbar { display:none; }
.coll-tab {
  flex-shrink:0; padding:10px 24px; border:1.5px solid var(--border);
  background:var(--white); color:var(--text-d); font-size:13px;
  letter-spacing:.1em; text-transform:uppercase; cursor:pointer;
  transition:all .2s; white-space:nowrap; font-family:var(--font-sans);
  border-radius:2px;
}
.coll-tab.active, .coll-tab:hover { background:var(--maroon); color:var(--cream); border-color:var(--maroon); }

/* ── PROMO BANNER ───────────────────────────────────────────────────────────── */
.promo-banner-wrap { width: 100%; line-height: 0; }
.promo-banner-item { width: 100%; line-height: 0; }
.promo-banner-item a { display: block; line-height: 0; }
.promo-img { width: 100%; height: auto; display: block; }
.promo-img-m { display: none; }
@media(max-width: 768px) {
  .promo-img-d { display: none; }
  .promo-img-m { display: block; }
}

/* Banner device visibility */
@media(max-width: 768px)  { .banner-hide-mobile  { display: none !important; } }
@media(min-width: 769px)  { .banner-hide-desktop { display: none !important; } }

/* ── STORY SECTION ──────────────────────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img-wrap {
  aspect-ratio: 4/5; background: var(--cream-d); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story-img-wrap::before {
  content: ''; position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(201,168,76,.35); pointer-events: none; z-index: 1;
}
.story-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-m); text-align: center; padding: 24px; line-height: 1.7;
}
.story-quote {
  font-family: var(--font-serif); font-size: 20px; font-style: italic;
  color: var(--maroon-l); border-left: 2px solid var(--gold);
  padding-left: 20px; margin: 24px 0; line-height: 1.65;
}
.story-body { font-size: 16.5px; color: var(--text-m); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.story-feats { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.story-feat { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--text-d); }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── TESTIMONIALS ───────────────────────────────────────────────────────────── */
/* ── REVIEWS SCROLL ─────────────────────────────────────────────────────────── */
.rev-section { background: var(--cream-d); padding: 16px 0; }
.rev-scroll-wrap { overflow: hidden; }
.rev-scroll {
  display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 6px 12px; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--gold) rgba(201,168,76,.15);
}
.rev-scroll::-webkit-scrollbar { height: 3px; }
.rev-scroll::-webkit-scrollbar-track { background: rgba(201,168,76,.15); }
.rev-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.rev-card {
  flex: 0 0 260px; background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 14px; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 10px;
}
.rev-card-top { display: flex; align-items: center; gap: 10px; }
.rev-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream-d); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--maroon);
}
.rev-name { font-size: 14px; font-weight: 600; color: var(--text-d); }
.rev-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-top: 1px; }
.rev-text { font-size: 13px; color: var(--text-m); line-height: 1.6; }
.rev-img-wrap { aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; margin-top: 0; }
.rev-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── INSTAGRAM GRID ─────────────────────────────────────────────────────────── */
.insta-section { background: var(--maroon-d); padding: 60px 0; }

.insta-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.insta-title { font-family: var(--font-serif); color: var(--cream); font-size: 25px; font-weight: 500; }
.insta-handle { color: var(--gold-l); font-size: 15px; letter-spacing: .06em; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; }
.insta-tile {
  aspect-ratio: 9/16; background: #000;
  display: block; overflow: hidden; position: relative;
}
.insta-tile iframe { width:100%; height:100%; border:none; display:block; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: #25D366; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); cursor: pointer;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float:hover { background: #22c55e; transform: scale(1.05); }
@media(max-width:768px) { .wa-float { bottom: 88px; right: 16px; width: 46px; height: 46px; } }

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
footer { background: #1A0A10; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-serif); font-size: 29px; color: var(--gold-l); letter-spacing: .06em; }
.footer-logo-img { height: 42px; width: auto; display: block; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.footer-desc { font-size: 15px; color: rgba(253,246,237,.4); line-height: 1.85; margin-top: 14px; font-weight: 300; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-soc {
  width: 34px; height: 34px; border: 1px solid rgba(201,168,76,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-l); font-size: 14px; cursor: pointer; transition: border-color .2s;
}
.footer-soc svg { width: 16px; height: 16px; }
.footer-soc:hover { border-color: var(--gold); }
.footer-pays { display: flex; gap: 7px; margin-top: 18px; flex-wrap: wrap; }
.footer-pay {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(253,246,237,.4); font-size: 12px; letter-spacing: .08em;
  padding: 4px 10px; text-transform: uppercase;
}
.footer-col h4 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 15px; color: rgba(253,246,237,.4); text-decoration: none; margin-bottom: 10px; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,.1); padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 14px; color: rgba(253,246,237,.22); font-weight: 300; flex-wrap: wrap; gap: 8px;
}

/* ── SHOP PAGE ──────────────────────────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filter-panel { background: var(--white); border: 1px solid var(--border); padding: 24px; position: sticky; top: calc(var(--header-h) + 16px); }
.filter-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.filter-panel-title { font-size: 15px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--maroon); }
.filter-clear { font-size: 14px; color: var(--text-m); cursor: pointer; text-decoration: underline; }
.filter-clear:hover { color: var(--maroon); }
.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group-title { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; color: var(--text-d); }
.filter-check { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; }
.filter-check input { accent-color: var(--maroon); width: 14px; height: 14px; }
.filter-check-label { font-size: 16px; color: var(--text-m); }
.filter-range { display: flex; gap: 8px; align-items: center; }
.filter-range input { flex: 1; padding: 8px 10px; border: 1px solid var(--border); font-size: 16px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.shop-count { font-size: 16px; color: var(--text-m); }
.shop-sort select { padding: 8px 12px; border: 1px solid var(--border); font-size: 16px; background: var(--white); color: var(--text-d); }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.active-filter { display: flex; align-items: center; gap: 6px; background: var(--cream); border: 1px solid var(--border); padding: 4px 10px; font-size: 14px; color: var(--maroon); }
.active-filter-remove { cursor: pointer; opacity: .6; }
.active-filter-remove:hover { opacity: 1; }

/* ── PRODUCT DETAIL PAGE ────────────────────────────────────────────────────── */
.product-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-gallery-wrap { position: sticky; top: calc(var(--header-h) + 20px); }
.gallery-main { aspect-ratio: 3/4; background: var(--cream-d); overflow: hidden; position: relative; margin-bottom: 10px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-thumb {
  aspect-ratio: 3/4; background: var(--cream-d); overflow: hidden;
  cursor: pointer; border: 2px solid transparent; transition: border-color .2s;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { padding-top: 8px; }
.product-detail-cat { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 8px; }
.product-detail-name { font-family: var(--font-serif); font-size: clamp(27px,3vw,39px); font-weight: 500; line-height: 1.2; color: var(--maroon-d); margin-bottom: 12px; }
.product-detail-price { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.product-detail-price .price { font-size: 31px; font-weight: 600; color: var(--maroon); font-family: var(--font-serif); }
.product-detail-price .mrp { font-size: 19px; color: var(--text-m); text-decoration: line-through; opacity: .65; }
.product-detail-price .disc { font-size: 15px; background: #FEF3C7; color: #92400E; padding: 3px 9px; font-weight: 500; }
.product-detail-divider { height: 1px; background: var(--border); margin: 20px 0; }
.product-detail-spec { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.spec-row { display: flex; gap: 12px; font-size: 16.5px; }
.spec-label { color: var(--text-m); min-width: 120px; font-size: 15px; letter-spacing: .04em; }
.spec-val { color: var(--text-d); font-weight: 500; }
.product-detail-btns { display: flex; gap: 12px; flex-direction: column; margin-top: 24px; }
.product-detail-btns .btn { font-size: 15px; padding: 15px; }
.stock-info { font-size: 15px; color: var(--green); display: flex; align-items: center; gap: 5px; margin-top: 12px; }
.stock-info.low { color: #d97706; }
.stock-info.out { color: var(--red); }

/* ── CHECKOUT ───────────────────────────────────────────────────────────────── */
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 32px; align-items: start; }
.checkout-card { background: var(--white); border: 1px solid var(--border); padding: 28px; margin-bottom: 20px; }
.checkout-card-title { font-family: var(--font-serif); font-size: 21px; font-weight: 500; color: var(--maroon); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.payment-option { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border: 1px solid var(--border); margin-bottom: 10px; cursor: pointer; transition: border-color .2s; }
.payment-option.selected { border-color: var(--gold); background: rgba(201,168,76,.05); }
.payment-option input[type="radio"] { accent-color: var(--maroon); margin-top: 2px; }
.payment-option-label { font-size: 17px; font-weight: 500; }
.payment-option-desc { font-size: 15px; color: var(--text-m); margin-top: 3px; }
.order-summary { background: var(--white); border: 1px solid var(--border); padding: 24px; position: sticky; top: calc(var(--header-h) + 20px); }
.order-summary-title { font-family: var(--font-serif); font-size: 21px; font-weight: 500; color: var(--maroon); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-item { display: flex; gap: 14px; margin-bottom: 14px; }
.summary-item-img { width: 64px; height: 85px; object-fit: cover; background: var(--cream-d); flex-shrink: 0; }
.summary-item-name { font-size: 16px; font-weight: 500; line-height: 1.3; }
.summary-item-var { font-size: 14px; color: var(--text-m); }
.summary-item-price { font-size: 16px; font-weight: 600; color: var(--maroon); margin-top: 4px; }
.summary-calc { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 8px; color: var(--text-m); }
.summary-row.total { font-size: 20px; font-weight: 600; color: var(--text-d); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.summary-row.total span:last-child { color: var(--maroon); font-family: var(--font-serif); font-size: 23px; }
.coupon-row { display: flex; gap: 8px; margin-bottom: 16px; }
.coupon-row input { flex: 1; padding: 10px 12px; border: 1px solid var(--border); font-size: 16px; text-transform: uppercase; }
.coupon-row button { padding: 10px 16px; background: var(--maroon); color: #fff; font-size: 14px; letter-spacing: .08em; }

/* ── PINCODE CHECK ──────────────────────────────────────────────────────────── */
.pincode-row { display: flex; gap: 8px; margin-top: 12px; }
.pincode-row input { flex: 1; padding: 9px 12px; border: 1px solid var(--border); font-size: 16px; }
.pincode-row button { padding: 9px 14px; background: var(--maroon-d); color: var(--gold-l); font-size: 14px; letter-spacing: .06em; }
.pincode-result { font-size: 15px; margin-top: 8px; }
.pincode-ok { color: var(--green); }
.pincode-no { color: var(--red); }

/* ── ACCOUNT PAGE ───────────────────────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.account-sidebar { background: var(--white); border: 1px solid var(--border); overflow: hidden; }
.account-profile { padding: 24px; border-bottom: 1px solid var(--border); }
.account-avatar { width: 52px; height: 52px; background: var(--maroon); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 25px; margin-bottom: 12px; }
.account-name { font-size: 19px; font-weight: 600; }
.account-phone { font-size: 15px; color: var(--text-m); margin-top: 2px; }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 20px; font-size: 16px; color: var(--text-d); border-bottom: 1px solid rgba(0,0,0,.05); transition: background .15s; }
.account-nav a:hover { background: var(--cream); }
.account-nav a.active { background: var(--cream); color: var(--maroon); font-weight: 500; border-left: 3px solid var(--gold); }
.account-content { background: var(--white); border: 1px solid var(--border); padding: 28px; }

/* ── ORDER TRACKING ─────────────────────────────────────────────────────────── */
.track-steps { display: flex; align-items: flex-start; gap: 0; margin: 32px 0; }
.track-step { flex: 1; text-align: center; position: relative; }
.track-step::before { content: ''; position: absolute; top: 14px; left: -50%; right: 50%; height: 2px; background: var(--border); }
.track-step:first-child::before { display: none; }
.track-step.done::before { background: var(--gold); }
.track-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; position: relative; z-index: 1; }
.track-step.done .track-dot { background: var(--gold); border-color: var(--gold); }
.track-step.active .track-dot { border-color: var(--maroon); }
.track-dot svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.track-label { font-size: 14px; color: var(--text-m); }
.track-step.done .track-label, .track-step.active .track-label { color: var(--maroon); font-weight: 500; }

/* ── PAGINATION ─────────────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 40px; flex-wrap: wrap; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 16px; color: var(--text-m); cursor: pointer; transition: all .2s; }
.page-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.page-btn.active { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.page-btn.disabled { opacity: .4; cursor: default; pointer-events: none; }

/* ── EMPTY STATE ────────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 24px; }
.empty-state svg { width: 52px; height: 52px; stroke: var(--border); fill: none; stroke-width: 1; margin: 0 auto 16px; }
.empty-state h3 { font-family: var(--font-serif); font-size: 23px; margin-bottom: 8px; color: var(--text-d); }
.empty-state p { font-size: 16px; color: var(--text-m); }

/* ── LOADING ────────────────────────────────────────────────────────────────── */
.loading-spinner { display: flex; align-items: center; justify-content: center; padding: 40px; }
.spinner { width: 32px; height: 32px; border: 2px solid var(--border); border-top-color: var(--maroon); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── MODAL ──────────────────────────────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 800; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.modal-title { font-family: var(--font-serif); font-size: 23px; font-weight: 500; color: var(--maroon); }
.modal-close { padding: 4px; cursor: pointer; }
.modal-close svg { width: 22px; height: 22px; stroke: var(--text-m); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.modal-body { padding: 24px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .cats-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .product-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery-wrap { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .rev-scroll { padding: 8px 6px 14px; }
  .rev-card { flex: 0 0 220px; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .section-pad { padding: 44px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-slide-d { display: none; }
  .hero-slide-m { display: block; height: auto; object-fit: unset; }
  .hero-slide-link { aspect-ratio: unset !important; }
  .hero-slide-link.m-ratio-1-1   { aspect-ratio: 1/1 !important; }
  .hero-slide-link.m-ratio-4-5   { aspect-ratio: 4/5 !important; }
  .hero-slide-link.m-ratio-3-4   { aspect-ratio: 3/4 !important; }
  .hero-slide-link.m-ratio-9-16  { aspect-ratio: 9/16 !important; }
  .hero-slide-link.m-ratio-2-1   { aspect-ratio: 2/1 !important; }
  .hero-slide-link.m-ratio-16-9  { aspect-ratio: 16/9 !important; }
  .hero-slide-link[class*="m-ratio-"] img { height: 100%; object-fit: cover; }
  .hero-arr { width: 34px; height: 34px; font-size: 13px; }
  .cats-section { padding-top: 16px; }
  .cats-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; padding-bottom: 10px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--gold) rgba(201,168,76,.15); }
  .cats-grid::-webkit-scrollbar { height: 3px; display: block; }
  .cats-grid::-webkit-scrollbar-track { background: rgba(201,168,76,.15); border-radius: 2px; }
  .cats-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
  .cat-tile { flex: 0 0 calc((100% - 20px) / 3); scroll-snap-align: start; border-radius: 9999px 9999px 0 0; }
  .cat-name { font-size: 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .products-grid.h-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 6px; padding-bottom: 10px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--gold) rgba(201,168,76,.15); }
  .products-grid.h-scroll::-webkit-scrollbar { height: 3px; display: block; }
  .products-grid.h-scroll::-webkit-scrollbar-track { background: rgba(201,168,76,.15); border-radius: 2px; }
  .products-grid.h-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
  .products-grid.h-scroll .product-card { flex: 0 0 calc((100% - 6px) / 2); scroll-snap-align: start; }
  .offer-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 5px 0; background: var(--gold); }
  .offer-div { display: none; }
  .offer-item { padding: 14px 10px; background: var(--gold); border: 1px solid rgba(123,31,46,.12); }
  .offer-code { font-size: 20px; }
  .offer-desc { font-size: 12px; }
  .rev-card { flex: 0 0 200px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px 10px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-col h4 { font-size: 11px; margin-bottom: 10px; }
  .footer-col a { font-size: 12px; margin-bottom: 7px; }
  .form-row { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; }
  .trust-strip { overflow: hidden; }
  .account-layout { grid-template-columns: 1fr; }
  .track-step::before { display: none; }
  .track-steps { flex-direction: column; gap: 16px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .announce { font-size: 10.5px; padding: 4px 12px; }
  .user-name { display: none; }
  .user-chevron { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 6px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .product-info { padding: 8px 10px 10px; }
  .product-name { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 5px; }
  .product-cat  { font-size: 10px; margin-bottom: 2px; }
  .product-price { font-size: 14px; }
  .product-mrp  { font-size: 12px; }
  .product-disc { font-size: 10px; padding: 1px 5px; white-space: nowrap; }
  .product-price-row { flex-wrap: nowrap; gap: 4px; align-items: center; }
  .product-add-btn { font-size: 11px; padding: 9px 6px; margin-top: 8px; letter-spacing: .06em; }
  .cat-tile { flex: 0 0 calc((100% - 20px) / 3); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}