/* ============================================================
   Arcreative — Premium Home Decor
   Design system: deep emerald, warm gold, cream & ivory
   ============================================================ */

:root {
  --emerald-900: #0A211A;
  --emerald-800: #143C2F;
  --emerald-700: #1B4332;
  --emerald-600: #2D6A4F;
  --emerald-500: #40916C;
  --gold: #C9A227;
  --gold-2: #E3C868;
  --gold-pale: #F3E5B8;
  --cream: #FAF6EE;
  --cream-2: #F3EBDC;
  --paper: #FFFFFF;
  --ink: #191919;
  --ink-2: #3E3E3E;
  --muted: #6E6E63;
  --line: #E9E0CC;
  --line-2: #DCD0B4;
  --danger: #B3402E;
  --success: #2D6A4F;

  --font-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', Verdana, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(26, 25, 20, .06);
  --shadow: 0 12px 34px rgba(26, 25, 20, .10);
  --shadow-lg: 0 30px 70px rgba(26, 25, 20, .18);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

.container { width: min(1600px, 95%); margin-inline: auto; }

h1, h2, h3, h4, .serif { font-family: var(--font-head); font-weight: 600; color: var(--emerald-900); line-height: 1.18; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-body); font-weight: 500; font-size: 15px; letter-spacing: .02em;
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:active { transform: scale(.96); }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.35); transform: translateX(-120%) skewX(-20deg); transition: transform .6s; }
.btn:hover::after { transform: translateX(120%) skewX(-20deg); }

.btn-gold { background: linear-gradient(135deg, #D4AF37, #B8912B); color: #241a04; box-shadow: 0 10px 24px rgba(201,162,39,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201,162,39,.45); }

.btn-dark { background: var(--emerald-800); color: var(--gold-pale); box-shadow: 0 10px 24px rgba(20,60,47,.28); }
.btn-dark:hover { transform: translateY(-2px); background: var(--emerald-900); }

.btn-outline { border-color: var(--emerald-800); color: var(--emerald-800); background: transparent; }
.btn-outline:hover { background: var(--emerald-800); color: #fff; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink-2); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--emerald-800); color: var(--emerald-800); background: var(--cream); }

.btn-glass { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }

.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ============================================================
   Flags & badges
   ============================================================ */
.flag { position: absolute; top: 26px; left: 26px; z-index: 2; padding: 5px 13px; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.flag-sale { background: var(--danger); color: #fff; }
.flag-new { background: var(--gold); color: #241a04; }
.flag-best { background: #fff; color: var(--emerald-800); box-shadow: 0 2px 10px rgba(10,33,26,.25); border: 1px solid rgba(201,162,39,.45); }

.badge {
  position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--gold); color: #241a04; font-size: 11px; font-weight: 600;
  display: grid; place-items: center; line-height: 1; transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.badge.pop { transform: scale(1.5); }

.star { color: #D9D0BB; font-size: 15px; }
.star.on { color: var(--gold); }

/* ============================================================
   Announcement bar & header
   ============================================================ */
.announce { background: var(--emerald-800); color: #EDE6D2; font-size: 13px; }
.announce-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 9px 0; }
.announce-text { letter-spacing: .04em; }
.announce-links { display: flex; align-items: center; gap: 14px; }
.announce-links a:hover { color: var(--gold-2); }
.announce-sep { width: 1px; height: 14px; background: rgba(255,255,255,.25); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(26,25,20,.10); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }

.brand { display: flex; align-items: center; flex-shrink: 0; }

/* Premium logo holder — slightly larger, deliberately framed, never cropped */
.brand-logo {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 7px 11px; border-radius: 13px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF7EC 100%);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(13,29,22,.07), inset 0 1px 0 rgba(255,255,255,.9);
  animation: logo-in .7s cubic-bezier(.22,.61,.36,1) both;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-1px);
  border-color: var(--gold-2);
  box-shadow: 0 8px 22px rgba(201,162,39,.18), 0 4px 12px rgba(13,29,22,.08);
}
.brand-logo img { height: 46px; width: auto; display: block; object-fit: contain; }

/* Gentle one-time entrance, then still */
@keyframes logo-in {
  from { opacity: 0; transform: translateY(-6px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; padding: 10px 14px; font-size: 15.5px; color: var(--ink-2); font-weight: 400; letter-spacing: .02em;
  transition: color .2s; background: none; border: 0;
}
.nav-link::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.nav-link:hover, .nav-link.is-active { color: var(--emerald-800); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-drop { position: relative; z-index: 30; }
.nav-drop-toggle { display: flex; align-items: center; gap: 6px; }
/* invisible bridge so the hover stays active while moving into the panel */
.nav-drop::before { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.caret { font-size: 10px; color: var(--gold); transition: transform .25s; }
.nav-drop:hover .caret, .nav-drop.is-open .caret { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(14px);
  width: min(820px, 92vw); background: var(--paper); border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(13,29,22,.20), 0 8px 24px rgba(13,29,22,.10); border: 1px solid var(--line); padding: 26px;
  opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 50;
}
.nav-drop:hover .mega, .nav-drop:focus-within .mega, .nav-drop.is-open .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.mega-head .mega-title { margin-bottom: 0; }
.mega-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--emerald-800); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.mega-link-all { font-size: 14px; color: var(--emerald-800); font-weight: 600; border-bottom: 2px solid var(--gold-pale); padding-bottom: 2px; white-space: nowrap; transition: border-color .2s, color .2s; }
.mega-link-all:hover { border-color: var(--gold); color: var(--gold); }
.mega-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mega-cat-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--ink-2); font-size: 14.5px; font-weight: 500; transition: border-color .25s, transform .25s, box-shadow .25s, color .25s; }
.mega-cat-link:hover { border-color: var(--gold); color: var(--emerald-800); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.mega-cat-link .mega-arrow { color: var(--gold); font-size: 15px; }
.mega-foot { margin-top: 20px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%; border: 0; background: transparent;
  display: grid; place-items: center; color: var(--ink-2); transition: background .25s, color .25s, transform .2s;
}
.icon-btn:hover { background: var(--cream); color: var(--emerald-800); transform: translateY(-2px); }
.icon-btn.is-active { color: var(--emerald-800); }
a.icon-btn { text-decoration: none; }

/* category strip */
.cat-strip { border-top: 1px solid var(--line); background: #fffdf8; }
.cat-strip-inner { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-strip-inner > a { position: relative; padding: 12px 16px; font-size: 13.5px; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.cat-strip-inner > a:hover { color: var(--emerald-800); }
.cat-dot { color: var(--gold); }
.cat-sub { position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--line); border-radius: 0 0 var(--radius-sm) var(--radius-sm); box-shadow: var(--shadow); padding: 6px; min-width: 230px; display: none; flex-direction: column; }
.cat-strip-inner > a:hover .cat-sub { display: flex; }
.cat-sub-item a { display: block; padding: 8px 12px; font-size: 13.5px; color: var(--muted); border-radius: 6px; }
.cat-sub-item a:hover { background: var(--cream); color: var(--emerald-800); }

/* search panel */
.search-panel { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,.61,.36,1); background: #fffdf8; border-bottom: 1px solid var(--line); }
.search-panel.is-open { max-height: 420px; }
.search-form { display: flex; align-items: center; gap: 14px; padding: 22px 0 8px; color: var(--muted); }
.search-form input { flex: 1; border: 0; background: transparent; font-size: 19px; color: var(--ink); outline: none; }
.search-form input::placeholder { color: #B9B19E; }
.search-suggest { padding-bottom: 16px; }
.suggest-item { display: flex; align-items: center; gap: 14px; padding: 9px 6px; border-radius: var(--radius-sm); transition: background .2s; }
.suggest-item:hover { background: var(--cream); }
.suggest-item img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; }
.suggest-item .s-name { font-weight: 500; color: var(--ink); }
.suggest-item .s-price { font-size: 13px; color: var(--emerald-600); }

/* mini cart */
.overlay { position: fixed; inset: 0; background: rgba(10,20,16,.5); backdrop-filter: blur(3px); z-index: 1200; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.overlay.is-open { opacity: 1; visibility: visible; }

.mini-cart {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(410px, 94vw); z-index: 1300;
  background: var(--paper); box-shadow: var(--shadow-lg); transform: translateX(105%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column;
}
.mini-cart.is-open { transform: translateX(0); }
.mini-cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.mini-cart-title { font-size: 21px; display: flex; align-items: center; gap: 8px; }
.mini-cart-title span { background: var(--gold); color: #241a04; font-size: 12px; padding: 2px 9px; border-radius: 999px; }
.mini-cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }

.mini-cart-empty { text-align: center; padding: 50px 10px; color: var(--muted); }
.mini-cart-empty .empty-orb { margin: 0 auto 18px; width: 74px; height: 74px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--gold); }
.mini-cart-empty p { font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.mini-cart-empty span { font-size: 14px; display: block; margin-bottom: 22px; }
.mini-cart-empty .btn { display: inline-flex; }

.ship-progress { background: var(--cream); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.ship-progress strong { color: var(--emerald-800); }
.ship-progress.is-free { background: linear-gradient(135deg, #F3E5B8, #EADCA6); color: #5A4A12; }
.progress-track { height: 6px; background: #E9DFC8; border-radius: 99px; margin-top: 8px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 99px; transition: width .6s ease; }

.mini-cart-items { display: flex; flex-direction: column; gap: 16px; }
.mini-cart-item { display: flex; gap: 14px; position: relative; animation: slideItem .4s ease; }
@keyframes slideItem { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
.mini-cart-thumb { width: 74px; height: 74px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; border: 1px solid var(--line); }
.mini-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-cart-info { flex: 1; min-width: 0; }
.mini-cart-name { font-size: 14px; color: var(--ink); font-weight: 500; display: block; line-height: 1.35; }
.mini-cart-name:hover { color: var(--emerald-600); }
.mini-cart-variant { font-size: 12px; color: var(--muted); }
.mini-cart-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.mini-cart-meta > span { color: var(--emerald-700); font-weight: 600; }
.mini-cart-remove { position: absolute; top: 0; right: 0; border: 0; background: transparent; color: #B7B0A0; padding: 4px; }
.mini-cart-remove:hover { color: var(--danger); }
.mini-cart-foot { border-top: 1px solid var(--line); padding: 18px 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.mini-cart-subtotal { display: flex; justify-content: space-between; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.mini-cart-subtotal strong { font-size: 18px; color: var(--emerald-800); }

.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 34px; height: 34px; border: 0; background: transparent; color: var(--ink-2); font-size: 17px; transition: background .2s; }
.qty-stepper button:hover { background: var(--cream); color: var(--emerald-800); }
.qty-stepper span { min-width: 34px; text-align: center; font-weight: 500; }
.qty-stepper input { width: 42px; text-align: center; border: 0; font-weight: 600; color: var(--ink); }
.qty-stepper.mini button { width: 26px; height: 26px; font-size: 14px; }
.qty-stepper.mini span { min-width: 24px; font-size: 13px; }

/* mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(340px, 88vw); z-index: 1300;
  background: #fffdf8; box-shadow: var(--shadow-lg); transform: translateX(-105%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1); overflow-y: auto; padding: 20px 24px 30px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-nav-head img { height: 36px; }
.mobile-link { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 13px 2px; font-size: 16.5px; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-link:hover { color: var(--emerald-600); }
.mobile-toggle { display: flex; justify-content: space-between; align-items: center; }
.mobile-sub { display: none; padding: 6px 0 12px 14px; }
.mobile-sub.is-open { display: block; }
.mobile-sub a { display: block; padding: 9px 2px; color: var(--muted); font-size: 15px; }
.mobile-sub-all { display: block; padding: 10px 2px 12px; font-size: 15px; font-weight: 600; color: var(--emerald-800) !important; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.mobile-nav-foot { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 620px; background: var(--emerald-800); overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.hero-slide.is-active { opacity: 1; animation: heroKenburns 9s ease-out forwards; }
@keyframes heroKenburns { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,25,20,.82) 0%, rgba(10,25,20,.5) 45%, rgba(10,25,20,.05) 100%); }
.hero-shade::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(10,25,20,.5)); }
.hero-content { position: relative; z-index: 2; height: 620px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: #fff; }
.hero-eyebrow { font-size: 13px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }
.hero-title { font-size: clamp(40px, 6vw, 78px); color: #fff; font-weight: 600; max-width: 640px; margin-bottom: 18px; }
.hero-subtitle { font-size: clamp(16px, 2vw, 21px); color: rgba(255,255,255,.9); max-width: 520px; margin-bottom: 34px; font-weight: 300; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-nav { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 26px; height: 4px; border-radius: 99px; border: 0; background: rgba(255,255,255,.35); transition: background .3s, width .3s; }
.hero-dot.is-active { background: var(--gold-2); width: 40px; }
.hero-scroll { position: absolute; bottom: 26px; right: 5%; z-index: 3; }
.hero-scroll span { display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 99px; position: relative; }
.hero-scroll span::after { content: ''; position: absolute; top: 8px; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: #fff; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 26px; } 100% { opacity: 0; top: 26px; } }

/* hero entrance */
.hero .reveal { opacity: 0; animation: heroUp .9s cubic-bezier(.22,.61,.36,1) forwards; }
.hero .hero-eyebrow { animation-delay: .2s; }
.hero .hero-title { animation-delay: .35s; }
.hero .hero-subtitle { animation-delay: .5s; }
.hero .hero-cta { animation-delay: .65s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Values strip
   ============================================================ */
.values { border-bottom: 1px solid var(--line); background: var(--paper); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 26px 0; }
.value-item { display: flex; align-items: center; gap: 14px; padding: 6px 12px; }
.value-ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px; background: linear-gradient(135deg, var(--gold-pale), var(--cream-2)); display: grid; place-items: center; font-size: 20px; color: var(--gold); }
.value-item h4 { font-size: 16px; margin-bottom: 1px; }
.value-item p { font-size: 13px; color: var(--muted); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 78px 0; }
.section-dark { background: linear-gradient(160deg, var(--emerald-900), var(--emerald-700)); }
.section-dark .section-title { color: #fff; }
.section-dark .section-kicker { color: var(--gold-2); }
.section-dark .section-link { color: var(--gold-2); }
/* Light/Cream text inside dark sections — never dark text on dark backgrounds */
.section-dark .product-card { border-color: rgba(255,255,255,.16); background: #fff; }
.section-dark .product-media { background: rgba(255,255,255,.07); box-shadow: none; }
.section-dark .product-name a:hover { color: var(--emerald-600); }
.section-dark .add-cart-btn { background: var(--emerald-800); border-color: var(--emerald-800); color: #fff; }
.section-dark .add-cart-btn:hover { background: var(--gold); border-color: var(--gold); color: #241a04; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head.light .section-title { color: #fff; }
.section-kicker { display: block; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 600; }
.section-title { font-size: clamp(28px, 4vw, 44px); }
.section-sub { font-size: 15px; color: var(--muted); margin: 0; max-width: 460px; }
.section-head .section-sub { flex-basis: 100%; order: 3; align-self: flex-start; }
.section-head.light .section-sub { color: #C9C0A8; }
.section-link { font-size: 14.5px; color: var(--emerald-800); border-bottom: 2px solid var(--gold-pale); padding-bottom: 2px; transition: border-color .25s, color .25s; white-space: nowrap; }
.section-link:hover { border-color: var(--gold); color: var(--gold); }

/* categories */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.cat-card-img { position: absolute; inset: 0; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.cat-card:hover .cat-card-img img { transform: scale(1.08); }
.cat-card-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,25,20,.72)); }
.cat-card-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; display: flex; align-items: center; justify-content: space-between; color: #fff; }
.cat-card-label span:first-child { font-family: var(--font-head); font-size: 21px; font-weight: 600; }
.cat-card-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.7); display: grid; place-items: center; transition: transform .35s, background .35s; }
.cat-card:hover .cat-card-arrow { transform: rotate(-45deg); background: var(--gold); border-color: var(--gold); color: #241a04; }

/* product grids & cards — shared by every product section (home, shop, search,
   category, collections, related, wishlist). 3 balanced, spacious columns on
   desktop; the wide .container keeps each card large. */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; grid-auto-rows: 1fr; }
.product-card { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.product-img-link { display: block; width: 100%; height: 100%; }
.product-img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.product-card:hover .product-img { transform: scale(1.06); }

/* Badge — fixed top-left of the image, never covers the product */
.card-badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 13px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; box-shadow: 0 2px 8px rgba(10,33,26,.18); }
.badge-sale { background: var(--danger); color: #fff; }
.badge-new { background: var(--gold); color: #241a04; }
.badge-best { background: #fff; color: var(--emerald-800); border: 1px solid rgba(201,162,39,.45); }

/* Wishlist — compact icon fixed top-right of the image */
.wish-btn { position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255,255,255,.95); box-shadow: var(--shadow-sm); color: var(--ink-2); display: grid; place-items: center; cursor: pointer; transition: transform .25s, background .25s, color .25s; }
.wish-btn:hover { transform: scale(1.1); color: var(--gold); }
.wish-btn.is-wished { background: var(--gold); color: #241a04; }
.wish-btn.is-wished svg { animation: popHeart .45s cubic-bezier(.34,1.56,.64,1); }
@keyframes popHeart { 0% { transform: scale(1); } 40% { transform: scale(1.5) rotate(-8deg); } 100% { transform: scale(1); } }

/* Info — everything sits BELOW the image; nothing is absolutely positioned over it */
.product-info { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-size: 18px; color: var(--ink); font-weight: 500; line-height: 1.4; margin: 0; }
.product-name a { color: inherit; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(1.4em * 2); }
.product-name a:hover { color: var(--emerald-600); }
.product-rating { display: flex; align-items: center; gap: 4px; min-height: 24px; }
.star { font-size: 17px; color: #D8D2C0; }
.star.on { color: var(--gold); }
.rating-count { font-size: 14px; color: var(--muted); }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 6px; }
.price-sale { font-size: 21px; font-weight: 600; color: var(--emerald-800); }
.price-regular { font-size: 15px; color: #B7B0A0; text-decoration: line-through; }

/* Add to Cart — a real button in the info block, never on the image */
.add-cart-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  margin-top: 16px; padding: 14px 20px; border-radius: 999px; border: 1.5px solid var(--emerald-800);
  background: var(--emerald-800); color: #fff; font-weight: 600; font-size: 15.5px; cursor: pointer;
  transition: background .25s, transform .2s;
}
.add-cart-btn:hover { background: var(--emerald-700); transform: translateY(-1px); }

/* Shop & search (sidebar present) — sidebar reserves its 260px column; products
   get the remaining space. Category/collection pages render no sidebar, so the
   .shop-main-full child spans BOTH grid columns (otherwise products would be
   squeezed into the 260px sidebar column and look tiny). */
.shop-main, .shop-main-full { min-width: 0; }
.shop-main-full { grid-column: 1 / -1; }

/* promo */
.promo-card { display: grid; grid-template-columns: 1.1fr 1fr; border-radius: 24px; overflow: hidden; background: var(--cream); box-shadow: var(--shadow); }
.promo-visual img { width: 100%; height: 100%; object-fit: cover; }
.promo-body { padding: clamp(30px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.promo-body h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.promo-body p { color: var(--muted); margin-bottom: 28px; max-width: 440px; }

/* story */
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-art { position: relative; }
.story-orb { position: absolute; top: -30px; left: -30px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,.35), transparent 70%); z-index: 0; }
.story-frame { position: relative; z-index: 1; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/6; transform: rotate(-2deg); }
.story-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-badge { position: absolute; z-index: 2; bottom: 30px; right: -14px; background: var(--gold); color: #241a04; font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: 999px; box-shadow: var(--shadow); }
.story-text h2 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 20px; }
.story-text h2 em { font-style: italic; color: var(--gold); }
.story-text p { color: var(--muted); margin-bottom: 24px; max-width: 500px; }
.story-list { margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.story-list li { display: flex; align-items: center; gap: 12px; color: var(--ink-2); }
.story-list span { color: var(--gold); font-size: 17px; }

/* about / team */
.team-section { margin-top: 56px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 34px; }
.team-card { text-align: center; }
.team-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 6/7; background: var(--cream); box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar { width: 100%; height: 100%; display: grid; place-items: center; font-family: var(--font-head); font-size: 56px; color: var(--emerald-700); background: linear-gradient(160deg, var(--cream), #EFE8D8); }
.team-card h3 { font-size: 18px; margin-bottom: 2px; }
.team-role { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.team-exp { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }
.team-bio { margin-top: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.team-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: background .25s, color .25s, border-color .25s, transform .25s; }
.team-social a:hover { background: var(--emerald-800); border-color: var(--emerald-800); color: #fff; transform: translateY(-2px); }

/* sale */
.section-sale { background: linear-gradient(135deg, #2A1E07, #5A4312); }
.section-sale .section-kicker { color: var(--gold-2); }
.sale-banner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; color: #fff; }
.sale-copy h2 { font-size: clamp(30px, 4vw, 48px); color: #fff; margin-bottom: 12px; }
.sale-copy p { color: rgba(255,255,255,.75); }
.sale-products { display: flex; flex-direction: column; gap: 14px; }
.sale-mini { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 12px; backdrop-filter: blur(6px); transition: background .3s, transform .3s; }
.sale-mini:hover { background: rgba(255,255,255,.14); transform: translateX(6px); }
.sale-mini img { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; }
.sale-mini-info { display: flex; flex-direction: column; gap: 2px; }
.sale-mini-info strong { font-size: 15px; }
.sale-mini-info span { display: flex; gap: 10px; }
.sale-mini-info em { color: var(--gold-2); font-style: normal; font-weight: 700; }
.sale-mini-info s { color: rgba(255,255,255,.5); }

/* testimonials */
.section-testi { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--paper); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-stars { display: flex; gap: 2px; }
.testi-card blockquote { font-size: 14.5px; color: var(--ink-2); font-style: italic; flex: 1; }
.testi-card figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald-700), var(--emerald-500)); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 16px; flex-shrink: 0; }
.avatar-lg { width: 54px; height: 54px; font-size: 20px; }
.testi-card figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.testi-card figcaption strong { font-size: 14px; color: var(--ink); }
.testi-card figcaption em { font-size: 12px; color: var(--muted); font-style: normal; }

/* journal */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid-wide { grid-template-columns: repeat(2, 1fr); }
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .35s, box-shadow .35s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-cat { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.blog-card-body h3 { font-size: 21px; }
.blog-card-body p { font-size: 14px; color: var(--muted); flex: 1; }
.blog-read { color: var(--emerald-800); font-size: 14px; font-weight: 500; }

/* ============================================================
   Page hero & breadcrumbs
   ============================================================ */
.page-hero { background: linear-gradient(160deg, var(--cream), var(--cream-2)); padding: 64px 0 54px; position: relative; overflow: hidden; }
.page-hero::after { content: '✳'; position: absolute; right: 6%; top: 30%; font-size: 120px; color: rgba(201,162,39,.08); }
.page-hero-short { padding: 40px 0 34px; }
.page-hero-title { font-size: clamp(32px, 4.5vw, 54px); max-width: 760px; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub { color: var(--muted); max-width: 620px; margin-top: 12px; font-size: 16.5px; }

.breadcrumbs { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumbs a { transition: color .2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: #B9B19E; }
.crumb-here { color: var(--ink-2) !important; }
.breadcrumbs.light, .breadcrumbs.light a { color: rgba(255,255,255,.8); }
.breadcrumbs.light .crumb-here { color: #fff !important; }
.product-crumbs { margin-top: 26px; margin-bottom: 0; }

.cat-hero { position: relative; background-size: cover; background-position: center; color: #fff; }
.cat-hero .page-hero-title { color: #fff; }
.cat-hero .page-hero-sub { color: rgba(255,255,255,.85); }

.subcat-strip { border-bottom: 1px solid var(--line); background: #fffdf8; }
.subcat-list { display: flex; gap: 10px; overflow-x: auto; padding: 16px 0; scrollbar-width: none; }
.subcat-list::-webkit-scrollbar { display: none; }
.subcat-chip { padding: 8px 18px; border-radius: 999px; border: 1.5px solid var(--line-2); font-size: 14px; color: var(--muted); white-space: nowrap; transition: all .25s; }
.subcat-chip:hover { border-color: var(--gold); color: var(--gold); }
.subcat-chip.is-all { background: var(--emerald-800); border-color: var(--emerald-800); color: #fff; }

/* ============================================================
   Shop layout & filters
   ============================================================ */
.shop-layout { padding: 44px 0 80px; }
.shop-layout .container { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }

.filters { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; max-height: calc(100vh - var(--header-h) - 40px); overflow-y: auto; }
.filters-head { display: none; align-items: center; justify-content: space-between; }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--line); }
.filter-group h4 { font-family: var(--font-body); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.check-row { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-size: 14px; color: var(--muted); }
.check-row input { accent-color: var(--emerald-600); width: 16px; height: 16px; }
.check-row:hover { color: var(--emerald-800); }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input { width: 100%; padding: 9px 10px; border: 1.5px solid var(--line-2); border-radius: 8px; font-size: 14px; outline: none; transition: border-color .2s; }
.price-inputs input:focus { border-color: var(--gold); }
.filters form .btn { margin-top: 14px; }
.filters form .btn-ghost { margin-top: 8px; }
.filters-toggle { display: none; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.shop-count { font-size: 14.5px; color: var(--muted); }
.shop-sort { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.shop-sort select { padding: 9px 32px 9px 14px; border: 1.5px solid var(--line-2); border-radius: 999px; background: #fff; color: var(--ink-2); outline: none; cursor: pointer; font-size: 14px; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 46px; flex-wrap: wrap; }
.page-link { min-width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; font-size: 14.5px; color: var(--ink-2); transition: all .25s; }
.page-link:hover { border-color: var(--gold); color: var(--gold); }
.page-link.is-current { background: var(--emerald-800); border-color: var(--emerald-800); color: #fff; }
.page-link.is-gap { border-color: transparent; }

.empty-state { text-align: center; padding: 70px 20px; }
.empty-orb { width: 92px; height: 92px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--cream), var(--cream-2)); display: grid; place-items: center; color: var(--gold); font-size: 34px; }
.empty-state h3 { font-size: 24px; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ============================================================
   Collections page — every category shown as a premium card,
   plus a product preview row per collection
   ============================================================ */
.coll-block { margin-bottom: 60px; }
.coll-block:last-child { margin-bottom: 0; }
.coll-block-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.coll-block-title { font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px); margin: 0; }
.coll-block-sub { color: var(--muted); margin: 6px 0 0; font-size: 15px; max-width: 520px; }
.coll-block-link { font-size: 14.5px; color: var(--emerald-800); font-weight: 600; border-bottom: 2px solid var(--gold-pale); padding-bottom: 2px; white-space: nowrap; transition: border-color .2s, color .2s; }
.coll-block-link:hover { border-color: var(--gold); color: var(--gold); }
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.coll-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: inherit; background: var(--cream); }
.coll-card-media { aspect-ratio: 4/3; overflow: hidden; }
.coll-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.coll-card:hover .coll-card-media img { transform: scale(1.07); }
.coll-card-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(10,25,20,.78)); }
.coll-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.coll-card-name { font-family: var(--font-head); font-size: 24px; font-weight: 600; line-height: 1.2; }
.coll-card-count { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 4px; letter-spacing: .02em; }
.coll-card-go { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.75); display: grid; place-items: center; transition: background .3s, border-color .3s, color .3s; }
.coll-card:hover .coll-card-go { background: var(--gold); border-color: var(--gold); color: #241a04; }

/* ============================================================
   Product detail
   ============================================================ */
.product-detail { padding: 36px 0 40px; }
.pd-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; margin-top: 20px; }

.pd-gallery { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.pd-main { position: relative; border-radius: 22px; overflow: hidden; background: var(--cream); box-shadow: var(--shadow); aspect-ratio: 1/1; }
.pd-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s; }
.pd-flag { top: 18px; left: 18px; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-thumb { width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; padding: 0; background: var(--cream); transition: border-color .25s, transform .25s; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.is-active, .pd-thumb:hover { border-color: var(--gold); transform: translateY(-3px); }

.pd-cat { font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.pd-name { font-size: clamp(28px, 3.4vw, 42px); margin: 8px 0 12px; }
.pd-rating-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.pd-rating { display: inline-flex; gap: 2px; }
.pd-review-link { border-bottom: 1px dashed var(--line-2); }
.pd-review-link:hover { color: var(--gold); }
.pd-sku { font-size: 12.5px; }

.pd-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.pd-price-now { font-size: 34px; font-weight: 700; color: var(--emerald-800); font-family: var(--font-head); }
.pd-price-was { font-size: 20px; color: #B7B0A0; text-decoration: line-through; }
.pd-price-save { font-size: 13px; background: #FBE8E0; color: var(--danger); padding: 4px 12px; border-radius: 999px; font-weight: 600; }
.pd-desc { color: var(--muted); margin-bottom: 18px; font-size: 15.5px; }

.pd-stock { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; margin-bottom: 20px; }
.stock-dot { width: 9px; height: 9px; border-radius: 50%; }
.pd-stock.in-stock { color: var(--success); }
.pd-stock.in-stock .stock-dot { background: var(--success); box-shadow: 0 0 0 4px rgba(45,106,79,.15); }
.pd-stock.out-of-stock { color: var(--danger); }
.pd-stock.out-of-stock .stock-dot { background: var(--danger); box-shadow: 0 0 0 4px rgba(179,64,46,.12); }

.variant-group { margin-bottom: 18px; }
.variant-label { font-size: 13.5px; color: var(--ink); display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .08em; }
.variant-label strong { color: var(--gold); }
.variant-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-opt { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line-2); background: #fff; color: var(--ink-2); font-size: 14px; transition: all .25s; }
.variant-opt:hover { border-color: var(--gold); color: var(--gold); }
.variant-opt.is-selected { background: var(--emerald-800); border-color: var(--emerald-800); color: #fff; }

.pd-buy { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 20px; }
.pd-buy .qty-stepper { height: 50px; }
.pd-buy .qty-stepper button { width: 44px; height: 48px; }
.pd-buy .qty-stepper input { width: 52px; font-size: 16px; }
.pd-add, .pd-buy-now { flex: 1; min-width: 160px; height: 52px; }
.pd-add:disabled, .pd-buy-now:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

.pd-extra { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.pd-wishlist { display: inline-flex; align-items: center; gap: 8px; background: none; border: 0; color: var(--ink-2); font-size: 14.5px; transition: color .2s; }
.pd-wishlist:hover, .pd-wishlist.is-wished { color: var(--gold); }
.pd-share { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.pd-share a { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; font-size: 13px; transition: all .25s; }
.pd-share a:hover { background: var(--gold); border-color: var(--gold); color: #241a04; transform: translateY(-2px); }

.pd-assurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.pd-assurance div { display: flex; align-items: center; gap: 10px; background: var(--cream); border-radius: var(--radius-sm); padding: 12px 14px; }
.pd-assurance span { font-size: 20px; }
.pd-assurance p { font-size: 12.5px; color: var(--ink-2); }

/* tabs */
.pd-tabs { margin-top: 70px; }
.tabs-nav { display: flex; gap: 8px; border-bottom: 2px solid var(--line); flex-wrap: wrap; }
.tab-btn { padding: 14px 22px; background: none; border: 0; font-size: 15.5px; color: var(--muted); position: relative; font-family: var(--font-head); font-weight: 600; font-size: 17px; }
.tab-btn::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; border-radius: 99px; background: var(--gold); transform: scaleX(0); transition: transform .3s; }
.tab-btn.is-active { color: var(--emerald-800); }
.tab-btn.is-active::after { transform: scaleX(1); }
.tabs-panel { display: none; padding: 34px 0 10px; animation: fadeIn .4s ease; }
.tabs-panel.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.rich-text h2, .rich-text h3 { margin: 24px 0 12px; }
.rich-text p { margin-bottom: 14px; color: var(--ink-2); }
.rich-text ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.rich-text ul li { margin-bottom: 6px; }
.rich-text a { color: var(--gold); text-decoration: underline; }
.rich-text em { color: var(--emerald-800); }

.spec-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; max-width: 720px; }
.spec-row { display: grid; grid-template-columns: 1fr 2fr; }
.spec-row:nth-child(odd) { background: var(--cream); }
.spec-row span, .spec-row strong { padding: 13px 20px; font-size: 14.5px; border-top: 1px solid var(--line); }
.spec-row:first-child span, .spec-row:first-child strong { border-top: 0; }
.spec-row span { color: var(--muted); }
.spec-row strong { color: var(--ink); font-weight: 500; }

.reviews-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 40px; }
.reviews-summary { text-align: center; padding: 26px; background: var(--cream); border-radius: var(--radius); align-self: start; }
.review-score strong { display: block; font-family: var(--font-head); font-size: 54px; color: var(--emerald-800); line-height: 1; }
.review-score .pd-rating { justify-content: center; margin: 10px 0 6px; }
.review-score p { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.review-head time { margin-left: auto; font-size: 12.5px; color: var(--muted); }
.review-card h4 { font-size: 17px; margin-bottom: 4px; }
.review-card p { font-size: 14.5px; color: var(--ink-2); }
.review-helpful { display: inline-block; font-size: 12px; color: var(--gold); margin-top: 8px; }
.no-reviews { color: var(--muted); }

.review-form { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 34px; grid-column: 1 / -1; }
.review-form h3 { margin-bottom: 14px; }
.review-stars-input { display: flex; flex-direction: row-reverse; justify-content: flex-start; gap: 4px; margin-bottom: 18px; }
.review-stars-input label { font-size: 28px; color: #DDD3BB; cursor: pointer; transition: color .15s, transform .15s; }
.review-stars-input label:hover, .review-stars-input label:hover ~ label { color: var(--gold); transform: scale(1.15); }
.review-stars-input input { display: none; }
.review-stars-input input:checked ~ label { color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-field label { font-size: 13.5px; margin-bottom: 7px; color: var(--ink); font-weight: 500; }
.form-field input, .form-field textarea, .form-field select {
  padding: 12px 16px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--ink); outline: none; transition: border-color .25s, box-shadow .25s; background: #fff;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,.12); }
.form-field textarea { resize: vertical; }
.span-2 { grid-column: span 2; }
.rich-text { line-height: 1.75; }

/* ============================================================
   Cart
   ============================================================ */
.cart-page, .checkout-page, .wishlist-page, .track-section, .account-page { padding: 44px 0 80px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.cart-items { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cart-items-head { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; padding: 14px 22px; background: var(--cream); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cart-item { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; align-items: center; gap: 14px; padding: 18px 22px; border-top: 1px solid var(--line); }
.cart-item-prod { display: flex; gap: 16px; align-items: center; }
.cart-item-img { width: 92px; height: 92px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-weight: 500; color: var(--ink); line-height: 1.35; }
.cart-item-name:hover { color: var(--emerald-600); }
.cart-item-variant { font-size: 13px; color: var(--muted); display: block; margin: 4px 0 8px; }
.cart-item-remove { background: none; border: 0; color: #B7B0A0; font-size: 13px; text-decoration: underline; }
.cart-item-remove:hover { color: var(--danger); }
.cart-item-price, .cart-item-total { font-size: 15px; }
.cart-item-total { font-weight: 600; color: var(--emerald-800); }
.cart-actions-row { display: flex; justify-content: space-between; padding: 18px 22px; border-top: 1px solid var(--line); }

.cart-summary, .checkout-summary { background: var(--cream); border-radius: var(--radius); padding: 26px; position: sticky; top: calc(var(--header-h) + 20px); }
.cart-summary h3, .checkout-summary h3 { font-size: 22px; margin-bottom: 18px; }
.coupon-form { display: flex; gap: 8px; margin-bottom: 20px; }
.coupon-form input { flex: 1; padding: 11px 16px; border: 1.5px solid var(--line-2); border-radius: 999px; font-size: 14px; outline: none; }
.coupon-form input:focus { border-color: var(--gold); }
.summary-rows { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-2); }
.summary-row strong { font-weight: 600; }
.discount-row { color: var(--success); }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0 8px; }
.summary-total span { font-size: 16px; color: var(--ink); }
.summary-total strong { font-size: 26px; color: var(--emerald-800); font-family: var(--font-head); }
.secure-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }
.secure-note a { color: var(--emerald-800); text-decoration: underline; }

/* ============================================================
   Checkout
   ============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-account-hint { background: linear-gradient(135deg, var(--gold-pale), var(--cream)); border: 1px solid #E5D5A2; border-radius: var(--radius-sm); padding: 14px 20px; font-size: 14px; margin-bottom: 24px; display: flex; gap: 6px; flex-wrap: wrap; }
.checkout-account-hint a { color: var(--emerald-800); font-weight: 600; }
.checkout-account-hint em { color: var(--muted); font-style: normal; }
.checkout-section { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.checkout-section h2 { font-size: 22px; display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--emerald-800); color: #fff; display: grid; place-items: center; font-family: var(--font-body); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-opt input { display: none; }
.payment-card { display: flex; align-items: center; gap: 16px; border: 2px solid var(--line-2); border-radius: var(--radius-sm); padding: 16px 20px; cursor: pointer; transition: all .25s; }
.payment-opt input:checked + .payment-card { border-color: var(--gold); background: #FFFBF0; box-shadow: 0 0 0 4px rgba(201,162,39,.1); }
.payment-ic { font-size: 26px; }
.payment-card strong { display: block; color: var(--ink); }
.payment-card em { font-size: 13px; color: var(--muted); font-style: normal; }
.pay-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

.billing-same-toggle { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; cursor: pointer; font-size: 14.5px; color: var(--ink-2); }
.billing-same-toggle input { width: 18px; height: 18px; accent-color: var(--emerald-800); }
.billing-fields { animation: fadeInUp .3s ease both; }
.billing-fields .form-grid { row-gap: 14px; }

.co-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.co-item { display: flex; align-items: center; gap: 12px; }
.co-item-thumb { position: relative; width: 56px; height: 56px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); flex-shrink: 0; }
.co-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.co-qty { position: absolute; top: -6px; right: -6px; background: var(--gold); color: #241a04; font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 99px; display: grid; place-items: center; }
.co-name { flex: 1; font-size: 14px; color: var(--ink-2); line-height: 1.35; }
.co-name em { color: var(--muted); }
.co-item > strong { color: var(--emerald-800); font-size: 14.5px; }

/* ============================================================
   Order success / track
   ============================================================ */
.order-success { padding: 40px 0 80px; }
.success-card { text-align: center; max-width: 620px; margin: 0 auto 50px; padding: 50px 30px; background: linear-gradient(160deg, var(--cream), var(--cream-2)); border-radius: 24px; }
.success-check { width: 92px; height: 92px; margin: 0 auto 22px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; animation: popCheck .6s cubic-bezier(.34,1.56,.64,1); }
@keyframes popCheck { 0% { transform: scale(0); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }
.success-card h1 { font-size: 38px; margin-bottom: 10px; }
.success-card > p { color: var(--muted); margin-bottom: 20px; }
.order-number-box { display: inline-block; background: var(--paper); border: 1px dashed var(--line-2); border-radius: 999px; padding: 10px 26px; font-size: 14px; margin-bottom: 26px; }
.success-details { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 980px; margin: 0 auto 46px; }
.success-col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.success-col h3 { font-size: 20px; margin-bottom: 18px; }
.success-col address { font-style: normal; color: var(--ink-2); line-height: 1.8; }
.success-contact { font-size: 14px; color: var(--muted); margin-top: 18px; }
.success-contact a { color: var(--gold); }
.success-next { text-align: center; }

.track-container { max-width: 720px; }
.track-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: grid; gap: 16px; }
.track-result { margin-top: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.track-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.track-head h3 { font-size: 20px; }
.track-head p { font-size: 13.5px; color: var(--muted); }
.status-pill { display: inline-block; padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.status-pending { background: #FBE9D6; color: #8A5A14; }
.status-confirmed { background: #E7F0EB; color: var(--success); }
.status-processing { background: #EAF0FB; color: #2C4E8A; }
.status-shipped { background: #F0E9FB; color: #5B3A8A; }
.status-delivered { background: #E2F2E9; color: #1D6A46; }
.status-cancelled { background: #FBE3E0; color: #B3402E; }
.status-out_for_delivery { background: #E6EEFC; color: #2456A6; }
.status-refund_initiated { background: #FDEEDF; color: #8A4A1D; }
.status-refunded { background: #E2F2E9; color: #1D6A46; }

.btn-danger { background: #B3402E; color: #fff; box-shadow: 0 8px 20px rgba(179,64,46,.25); }
.btn-danger:hover { transform: translateY(-2px); background: #992b1c; }

.tracking-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--paper); }
.tracking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.tracking-grid span { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 5px; }
.tracking-grid strong { font-size: 15px; color: var(--ink); word-break: break-all; }
.track-timeline-vertical { flex-direction: column; gap: 4px; }
.track-timeline-vertical .tl-step { text-align: left; padding-left: 34px; }
.track-timeline-vertical .tl-step::before { left: 10px; right: auto; top: -14px; width: 2px; height: 30px; }
.track-timeline-vertical .tl-step:first-child::before { display: none; }
.track-timeline-vertical .tl-dot { margin: 0; position: absolute; left: 0; top: 4px; }
.track-timeline-vertical .tl-step strong { font-size: 14px; }
.track-timeline-vertical .tl-step em { display: block; margin-top: 2px; color: var(--muted); }
.acc-cancel { border: 1px solid #F2D2CC; background: #FDF6F4; }
.acc-cancel h3 { color: #992b1c; }
.cancel-form { max-width: 480px; }
.cancel-form .form-field { margin-bottom: 12px; }
.acc-section .muted { color: var(--muted); font-size: 13.5px; margin: 4px 0 16px; }

@media (max-width: 768px) {
  .tracking-grid { grid-template-columns: 1fr; gap: 10px; }
}

.track-timeline { display: flex; gap: 0; margin-bottom: 26px; position: relative; }
.tl-step { flex: 1; text-align: center; position: relative; }
.tl-step::before { content: ''; position: absolute; top: 10px; left: -50%; right: 50%; height: 2px; background: var(--line-2); }
.tl-step:first-child::before { display: none; }
.tl-step.is-done::before { background: var(--gold); }
.tl-dot { width: 22px; height: 22px; margin: 0 auto 10px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line-2); position: relative; z-index: 1; transition: background .3s, border-color .3s; }
.tl-step.is-done .tl-dot { background: var(--gold); border-color: var(--gold); }
.tl-step.is-done .tl-dot::after { content: '✓'; color: #241a04; font-size: 12px; position: absolute; inset: 0; display: grid; place-items: center; font-weight: 700; }
.tl-step strong { display: block; font-size: 13px; color: var(--muted); font-family: var(--font-body); font-weight: 500; }
.tl-step.is-done strong { color: var(--ink); font-weight: 600; }
.tl-step em { font-size: 11.5px; color: var(--gold); font-style: normal; }
.track-address { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 20px; background: var(--cream); border-radius: var(--radius-sm); margin-bottom: 18px; }
.track-address span { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); display: block; margin-bottom: 4px; }
.track-address strong { font-size: 14.5px; color: var(--ink); }
.track-address p { font-size: 13.5px; color: var(--muted); }
.track-note { font-size: 13.5px; color: var(--muted); }
.track-note a { color: var(--emerald-800); font-weight: 600; }

/* ============================================================
   Account
   ============================================================ */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
.acc-side { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: calc(var(--header-h) + 20px); }
.acc-user { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.acc-user strong { display: block; color: var(--ink); font-size: 15px; }
.acc-user span { font-size: 12.5px; color: var(--muted); word-break: break-all; }
.acc-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.acc-nav a { padding: 10px 14px; border-radius: 10px; color: var(--ink-2); font-size: 14.5px; transition: background .2s, color .2s, padding .2s; }
.acc-nav a em { font-style: normal; color: var(--gold); font-size: 12px; }
.acc-nav a:hover { background: var(--cream); color: var(--emerald-800); }
.acc-nav a.is-active { background: var(--emerald-800); color: #fff; }

.acc-welcome { margin-bottom: 26px; }
.acc-welcome h2 { font-size: 30px; }
.acc-welcome p { color: var(--muted); }
.acc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.acc-stat { display: flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.acc-stat-ic { font-size: 26px; }
.acc-stat strong { display: block; color: var(--ink); font-size: 15px; }
.acc-stat span { font-size: 13px; color: var(--muted); }
.acc-section { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 22px; }
.acc-section > h3 { font-size: 21px; margin-bottom: 18px; }
.acc-table-wrap { overflow-x: auto; }
.acc-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.acc-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding: 12px 14px; border-bottom: 2px solid var(--line); }
.acc-table td { padding: 14px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-2); }
.acc-table td:first-child a { color: var(--emerald-800); font-weight: 600; }
.acc-table tr:hover td { background: #FFFDF6; }
.acc-more { display: inline-block; margin-top: 16px; color: var(--emerald-800); font-size: 14px; font-weight: 500; }
.acc-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.acc-address { font-style: normal; line-height: 1.8; color: var(--ink-2); margin-bottom: 16px; }

.address-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.address-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.address-card h4 { font-size: 17px; margin-bottom: 8px; }
.address-card p { font-size: 14px; color: var(--ink-2); margin-bottom: 14px; line-height: 1.7; }
.address-card.is-new { border-style: dashed; }
.address-card.is-new h4 { margin-bottom: 16px; }
.address-card-head { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   Auth
   ============================================================ */
.auth-page { padding: 70px 0 90px; background: linear-gradient(160deg, var(--cream), var(--paper)); min-height: 70vh; }
.auth-card { max-width: 460px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 40px; box-shadow: var(--shadow); }
.auth-brand { text-align: center; margin-bottom: 22px; }
.auth-brand img { display: inline-block; }
.auth-card h1 { text-align: center; font-size: 30px; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }
.auth-alt { text-align: center; margin-top: 22px; font-size: 14px; color: var(--muted); }
.auth-alt a { color: var(--emerald-800); font-weight: 600; }
.auth-guest { margin-top: 8px; }
.auth-guest a { color: var(--gold); }

/* ============================================================
   Contact
   ============================================================ */
.contact-page { padding: 60px 0 90px; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: transform .3s, box-shadow .3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.contact-ic { width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; background: linear-gradient(135deg, var(--gold-pale), var(--cream-2)); display: grid; place-items: center; color: var(--gold); font-size: 18px; }
.contact-card h3 { font-size: 16.5px; margin-bottom: 3px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--muted); }
.contact-card address { font-style: normal; font-size: 14px; line-height: 1.7; color: var(--muted); }
.contact-gstin { margin-top: 6px; font-size: 13px !important; letter-spacing: .03em; color: var(--emerald-700) !important; font-weight: 500; }
.contact-card a:hover { color: var(--gold); }
.contact-hours { background: var(--emerald-800); color: #EDE6D2; border-radius: var(--radius); padding: 22px 24px; }
.contact-hours h3 { color: var(--gold-2); font-size: 17px; margin-bottom: 8px; }
.contact-hours p { font-size: 14px; line-height: 1.9; }
.contact-form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 34px; }
.contact-form h2 { font-size: 26px; margin-bottom: 22px; }

/* ============================================================
   Blog / Post / Page / 404
   ============================================================ */
.blog-page, .post-page, .page-content { padding: 54px 0 90px; }
.post-container { max-width: 860px; }
.post-article { margin-top: 10px; }
.post-head { text-align: center; margin-bottom: 30px; }
.post-head h1 { font-size: clamp(30px, 4.5vw, 48px); margin: 14px 0; }
.post-deck { font-size: 18px; color: var(--muted); max-width: 640px; margin: 0 auto; }
.post-hero-img { border-radius: 22px; overflow: hidden; margin-bottom: 36px; box-shadow: var(--shadow); }
.post-hero-img img { width: 100%; }
.post-body { max-width: 760px; margin: 0 auto; font-size: 16.5px; }
.post-share { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.post-share span { color: var(--muted); font-size: 14px; margin-right: 8px; }
.post-share a { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: all .25s; }
.post-share a:hover { background: var(--gold); border-color: var(--gold); color: #241a04; transform: translateY(-2px); }

.page-container { max-width: 820px; }
.page-cta { text-align: center; margin-top: 40px; }

.notfound { text-align: center; padding: 90px 0 110px; }
.nf-orb { width: 110px; height: 110px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-pale), var(--cream-2)); display: grid; place-items: center; font-size: 44px; color: var(--gold); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.nf-code { font-family: var(--font-head); font-size: 96px; color: var(--emerald-800); line-height: 1; opacity: .25; }
.notfound h1 { font-size: clamp(26px, 4vw, 40px); margin: 10px 0 12px; }
.notfound > .container > p { color: var(--muted); max-width: 480px; margin: 0 auto 30px; }
.nf-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.nf-links { display: flex; justify-content: center; gap: 26px; font-size: 14.5px; }
.nf-links a { color: var(--muted); }
.nf-links a:hover { color: var(--gold); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--emerald-900); color: #CFC6AD; margin-top: 40px; }
.footer-newsletter { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 44px 0 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-newsletter h3 { color: #fff; font-size: 28px; }
.footer-newsletter p { font-size: 14px; color: #A9A187; }
.newsletter-form { display: flex; gap: 10px; width: min(420px, 100%); }
.newsletter-form input { flex: 1; padding: 14px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; outline: none; font-size: 15px; }
.newsletter-form input::placeholder { color: #8D856F; }
.newsletter-form input:focus { border-color: var(--gold); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 30px; padding: 44px 0; }
.footer-logo-box {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 14px; margin-bottom: 16px; border-radius: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  animation: logo-in .7s cubic-bezier(.22,.61,.36,1) both;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease, box-shadow .35s ease;
}
.footer-brand:hover .footer-logo-box {
  transform: translateY(-2px);
  border-color: rgba(227,200,104,.6);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.footer-logo { height: 46px; width: auto; display: block; object-fit: contain; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; max-width: 300px; margin-bottom: 18px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); color: #F1EAD6; display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a .social-icon-img { width: 20px; height: 20px; object-fit: contain; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #241a04; transform: translateY(-3px); box-shadow: 0 10px 22px rgba(201,162,39,.28); }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; font-size: 13.5px; color: #A9A187; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--gold-2); transform: translateX(3px); }
.footer-contact p { font-size: 13.5px; line-height: 1.7; margin-bottom: 8px; }
.footer-contact address { font-style: normal; font-size: 13.5px; line-height: 1.7; margin-bottom: 8px; color: #A9A187; }
.footer-gstin { display: block; font-size: 12.5px; letter-spacing: .04em; color: var(--gold-2); margin: 4px 0 6px; }

/* Compact contact + map band inside the footer */
.footer-lower { display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; padding: 34px 0 40px; border-top: 1px solid rgba(255,255,255,.1); align-items: stretch; }
.footer-lower-info h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.fli-contact { display: grid; gap: 9px; }
.fli-contact address { display: flex; align-items: flex-start; gap: 10px; font-style: normal; color: #A9A187; font-size: 13.5px; line-height: 1.7; }
.fli-contact a { display: flex; align-items: center; gap: 10px; color: #A9A187; font-size: 13.5px; transition: color .2s; }
.fli-contact a:hover { color: var(--gold-2); }
.fli-contact .fli-ic { width: 20px; flex-shrink: 0; color: var(--gold-2); display: inline-flex; align-items: center; justify-content: flex-start; }
.fli-contact .footer-gstin { display: flex; align-items: center; gap: 10px; margin: 0; }
.fli-map { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 12px 30px rgba(0,0,0,.22); min-height: 200px; }
.fli-map iframe { display: block; width: 100%; height: 250px; border: 0; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #8D856F; }
.footer-payments { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.footer-payments .pay-badge { display: inline-flex; align-items: center; justify-content: center; height: 28px; min-width: 46px; padding: 0 6px; background: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; box-shadow: 0 1px 3px rgba(0,0,0,.18); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.footer-payments .pay-badge .pay-badge-img { height: 18px; width: auto; max-width: 52px; object-fit: contain; display: block; }
.footer-payments .pay-badge .pay-badge-text { font-size: 10px; font-weight: 700; letter-spacing: .04em; color: #2B3A67; }
.footer-payments .pay-badge:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 6px 14px rgba(201,162,39,.25); }

/* ============================================================
   Floating contact & toasts
   ============================================================ */
.floating-contact { position: fixed; right: 20px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.fc-btn { width: 52px; height: 52px; border-radius: 50%; border: 0; display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; color: #fff; }
.fc-wa { background: #25D366; }
.fc-call { background: var(--emerald-700); }
.fc-top { background: var(--gold); color: #241a04; opacity: 0; pointer-events: none; transform: translateY(10px); }
.fc-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.fc-btn:hover { transform: translateY(-4px) scale(1.06); box-shadow: var(--shadow-lg); }

.toasts { position: fixed; top: 96px; right: 20px; z-index: 1500; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { display: flex; align-items: center; gap: 12px; background: var(--paper); border-radius: var(--radius-sm); padding: 14px 18px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--gold); font-size: 14px; color: var(--ink); animation: toastIn .45s cubic-bezier(.34,1.56,.64,1); }
.toast.toast-success { border-left-color: var(--success); }
.toast.toast-error { border-left-color: var(--danger); }
.toast-ic { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); display: grid; place-items: center; font-weight: 700; flex-shrink: 0; }
.toast.toast-success .toast-ic { background: #E2F2E9; color: var(--success); }
.toast.toast-error .toast-ic { background: #FBE3E0; color: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
.toast.is-leaving { animation: toastOut .3s forwards; }
@keyframes toastOut { to { opacity: 0; transform: translateX(40px); } }

/* Tooltips on floating buttons */
.fc-btn { position: relative; }
.fc-btn[data-tip]::after { content: attr(data-tip); position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(6px); background: var(--emerald-900); color: #EDE6D2; font-size: 12.5px; font-weight: 500; white-space: nowrap; padding: 7px 12px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s; box-shadow: var(--shadow); }
.fc-btn[data-tip]::before { content: ''; position: absolute; right: calc(100% + 6px); top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--emerald-900); opacity: 0; transition: opacity .22s; }
.fc-btn[data-tip]:hover::after, .fc-btn[data-tip]:focus-visible::after,
.fc-btn[data-tip]:hover::before, .fc-btn[data-tip]:focus-visible::before { opacity: 1; transform: translateY(-50%); }

/* ============================================================
   Registration success popup
   ============================================================ */
.popup-overlay { position: fixed; inset: 0; z-index: 1600; display: grid; place-items: center; background: rgba(13, 29, 22, .62); backdrop-filter: blur(4px); padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.popup-overlay.is-open { opacity: 1; visibility: visible; }
.popup-card { position: relative; background: var(--paper); border-radius: 24px; padding: 48px 44px 40px; max-width: 440px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); transform: translateY(26px) scale(.96); transition: transform .45s cubic-bezier(.34,1.56,.64,1); border-top: 5px solid var(--gold); }
.popup-overlay.is-open .popup-card { transform: none; }
.popup-overlay.is-closing .popup-card { transform: translateY(18px) scale(.97); transition: transform .3s ease; }
.popup-overlay.is-closing { opacity: 0; }
.popup-burst { position: absolute; top: -34px; left: 50%; transform: translateX(-50%); width: 72px; height: 72px; border-radius: 50%; background: var(--gold); color: #241a04; display: grid; place-items: center; font-size: 30px; box-shadow: 0 10px 26px rgba(201,162,39,.45); animation: burstPop .6s cubic-bezier(.34,1.56,.64,1); }
@keyframes burstPop { 0% { transform: translateX(-50%) scale(0) rotate(-30deg); } 70% { transform: translateX(-50%) scale(1.15) rotate(6deg); } 100% { transform: translateX(-50%) scale(1) rotate(0); } }
.popup-check { width: 66px; height: 66px; margin: 10px auto 20px; border-radius: 50%; background: var(--emerald); color: #fff; display: grid; place-items: center; font-size: 30px; font-weight: 700; animation: checkPop .55s .15s cubic-bezier(.34,1.56,.64,1) backwards; }
@keyframes checkPop { 0% { transform: scale(0) rotate(-20deg); } 100% { transform: scale(1) rotate(0); } }
.popup-card h2 { font-size: 27px; margin-bottom: 10px; }
.popup-card > p { font-size: 14.5px; line-height: 1.7; color: var(--muted); margin-bottom: 24px; }
.popup-card .btn { width: 100%; }
.popup-alt { margin-top: 16px; }
.popup-alt a { font-size: 13.5px; color: var(--muted); text-decoration: underline; }
.popup-alt a:hover { color: var(--gold); }
.popup-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: transparent; color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s, color .2s; }
.popup-close:hover { background: rgba(201,162,39,.14); color: var(--gold); }

/* ============================================================
   Maps
   ============================================================ */
.contact-map-section { padding-top: 0; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); aspect-ratio: 16 / 7; min-height: 240px; max-height: 400px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Social icons (hover animations)
   ============================================================ */
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icons a { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-2); background: #fff; color: var(--emerald-800); display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s; }
.social-icons a svg { width: 20px; height: 20px; }
.social-icons a .social-icon-img { width: 22px; height: 22px; object-fit: contain; }
.social-icons a:hover { color: #241a04; background: var(--gold); border-color: var(--gold); transform: translateY(-4px) scale(1.06); box-shadow: 0 12px 24px rgba(201,162,39,.32); }
.contact-social h3 { font-size: 16px; margin-bottom: 12px; }

/* ============================================================
   Contact extras
   ============================================================ */
.contact-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--emerald); color: #fff; display: grid; place-items: center; font-size: 17px; flex-shrink: 0; }
.contact-info { display: grid; gap: 14px; }
.contact-card a { text-decoration: none; }
.contact-card a:hover { color: var(--gold); }
.contact-form-wrap .form-grid { row-gap: 14px; }

/* ============================================================
   Form helper row (forgot password link, etc.)
   ============================================================ */
.form-help-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 4px; font-size: 13.5px; }
.form-help-row a { color: var(--emerald); text-decoration: underline; }
.form-help-row a:hover { color: var(--gold); }

/* ============================================================
   Product enquiry tab
   ============================================================ */
.enquiry-wrap { max-width: 720px; }
.enquiry-intro h3 { font-size: 22px; margin-bottom: 6px; }
.enquiry-intro p { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.enquiry-form .btn { margin-top: 6px; }


/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .shop-layout .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .shop-layout .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .coll-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav { display: none; }
  .cat-strip { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .sale-banner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-grid { grid-template-columns: 1fr; gap: 34px; }
  .pd-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .shop-layout .container { grid-template-columns: 1fr; }
  .filters { position: fixed; top: 0; left: 0; bottom: 0; width: min(340px, 90vw); z-index: 1300; border-radius: 0; transform: translateX(-105%); transition: transform .4s cubic-bezier(.22,.61,.36,1); max-height: none; overflow-y: auto; }
  .filters.is-open { transform: none; }
  .filters-head { display: flex; }
  .filters-toggle { display: inline-flex; }
  .account-layout { grid-template-columns: 1fr; }
  .acc-side { position: static; }
  .acc-nav { flex-direction: row; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-wrap { grid-template-columns: 1fr; }
  .success-details { grid-template-columns: 1fr; }
  .address-list { grid-template-columns: 1fr; }
  .footer-lower { grid-template-columns: 1fr; gap: 26px; }
  .contact-map { aspect-ratio: 16 / 9; min-height: 220px; max-height: 340px; }
}

@media (max-width: 640px) {
  .announce-links { display: none; }
  .announce-text { width: 100%; text-align: center; }
  .header-inner { height: 64px; }
  .brand-logo { padding: 5px 8px; border-radius: 10px; }
  .brand-logo img { height: 32px; }
  :root { --header-h: 64px; }
  .header-actions .search-toggle, .header-actions .header-wish { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .shop-layout .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .coll-grid { grid-template-columns: 1fr; gap: 14px; }
  .coll-card-name { font-size: 20px; }
  .coll-block { margin-bottom: 40px; }
  .product-name { font-size: 14px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 26px; }
  .hero, .hero-content { min-height: 520px; height: 520px; }
  .hero-content { padding: 84px 0 64px; justify-content: flex-start; }
  .hero-title { font-size: 38px; }
  .card-badge { top: 8px; left: 8px; font-size: 10px; padding: 4px 9px; }
  .wish-btn { top: 8px; right: 8px; width: 34px; height: 34px; }
  .flag { top: 10px; left: 10px; font-size: 10px; padding: 3px 9px; }
  .product-info { padding: 12px 12px 16px; gap: 5px; }
  .price-sale { font-size: 16px; }
  .price-regular { font-size: 12.5px; }
  .product-rating { min-height: 20px; }
  .add-cart-btn { padding: 11px 10px; font-size: 13.5px; margin-top: 10px; gap: 6px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .value-item { flex-direction: column; text-align: center; }
  .blog-grid, .blog-grid-wide { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .cart-items-head { display: none; }
  .cart-item { grid-template-columns: 1fr auto; grid-template-areas: "prod prod" "price qty" "total remove"; row-gap: 10px; }
  .cart-item-prod { grid-area: prod; }
  .cart-item-price { grid-area: price; }
  .cart-item-qty { grid-area: qty; justify-self: end; }
  .cart-item-total { grid-area: total; }
  .cart-item .cart-item-remove { grid-area: remove; justify-self: end; align-self: center; }
  .pd-buy { flex-direction: column; }
  .pd-add, .pd-buy-now { min-width: 100%; }
  .pd-assurance { grid-template-columns: 1fr; }
  .acc-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .toasts { right: 12px; left: 12px; max-width: none; }
  .track-timeline { flex-direction: column; gap: 0; }
  .tl-step { text-align: left; padding-left: 34px; }
  .tl-step::before { left: 10px; right: auto; top: -14px; width: 2px; height: 30px; }
  .tl-step:first-child::before { display: none; }
  .tl-dot { margin: 0 0 8px; }
  .track-address { grid-template-columns: 1fr; }
  .mega { display: none; }
  .enquiry-form .form-row { grid-template-columns: 1fr; }
  .fc-btn[data-tip]::after, .fc-btn[data-tip]::before { display: none; }
  .popup-card { padding: 44px 22px 32px; }
  .fli-map iframe { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; }
  .hero-scroll span::after, .hero-scroll { animation: none; }
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .toast, .product-card:hover .product-img, .product-img { transition-duration: .01s !important; }
  .brand-logo, .footer-logo-box { animation: none !important; transition-duration: .01s !important; }
}

/* ============================================================
   Maintenance mode
   ============================================================ */
.page-maintenance {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.maintenance-inner { max-width: 520px; }
.maintenance-icon {
  width: 84px; height: 84px; margin: 0 auto 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1B4332, #245c45);
  color: #C9A227;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(27,67,50,.28);
}
.maintenance-icon svg { width: 42px; height: 42px; }
.maintenance-title { font-family: "Cormorant Garamond", serif; font-size: 40px; color: #1B4332; margin: 0 0 14px; }
.maintenance-message { font-size: 16px; color: #6b7570; line-height: 1.7; margin: 0 0 30px; }
