/* =========================================================================
   JAKORA — STYLESHEET
   Token system lives at the top under :root — change colors/fonts there.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root{
  /* ---- color tokens ---- */
  --ink:        #0b0b0c;
  --ink-soft:   #17140f;
  --gold:       #c9a05c;
  --gold-light: #ecd7a8;
  --gold-deep:  #8a6a34;
  --wine:       #6b1f2a;
  --wine-deep:  #4a131b;
  --cream:      #f6f0e4;
  --paper:      #fbf9f4;
  --charcoal:   #211d1a;
  --muted:      #8a8175;
  --line:       #e7ddc9;
  --whatsapp:   #25D366;

  /* ---- type ---- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  /* ---- layout ---- */
  --maxw: 1280px;
  --radius: 2px;
  --shadow-soft: 0 10px 30px rgba(11,11,12,.10);
  --shadow-lift: 0 18px 44px rgba(11,11,12,.20);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------------------
   RESET
--------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,p{ margin:0; }
.container{ max-width: var(--maxw); margin:0 auto; padding: 0 28px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------------------------------------------------------------------
   UTILITY
--------------------------------------------------------------------- */
.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.section{ padding: 96px 0; }
.section-head{ text-align:center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2{
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
}
.section-head p{ margin-top: 14px; color: var(--muted); font-size: 16px; line-height:1.6; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 30px;
  font-size: 13px; letter-spacing:.12em; text-transform:uppercase; font-weight:600;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-gold{ background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep)); color: var(--ink); box-shadow: var(--shadow-soft); }
.btn-gold:hover{ box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.btn-outline{ background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline:hover{ background: var(--gold); color: var(--ink); }
.btn-outline-light{ background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-light:hover{ background: #fff; color: var(--ink); }
.btn-whatsapp{ background: var(--whatsapp); color:#fff; }
.btn-whatsapp:hover{ filter: brightness(1.07); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-dark{ background: var(--ink); color: var(--gold-light); }
.btn-dark:hover{ background: #000; }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.5; cursor:not-allowed; transform:none !important; }

.pill{
  display:inline-block; padding: 5px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing:.08em; text-transform:uppercase; font-weight:600;
}
.pill-sale{ background: var(--wine); color:#fff; }
.pill-out{ background:#e6e0d4; color:#8a8175; }

.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

/* =======================================================================
   ANNOUNCEMENT BAR
======================================================================= */
.announce{
  background: var(--ink); color: var(--gold-light);
  font-size: 12.5px; letter-spacing:.06em; text-align:center;
  padding: 9px 12px; overflow:hidden; position:relative;
}
.announce-track{ display:inline-flex; gap:64px; animation: marquee 22s linear infinite; white-space:nowrap; }
.announce-track span{ opacity:.92; }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* =======================================================================
   HEADER
======================================================================= */
.site-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(11,11,12,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,160,92,.18);
  transition: transform .4s var(--ease);
}
.site-header.hide{ transform: translateY(-101%); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding: 14px 28px; max-width: var(--maxw); margin:0 auto; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 34px; width:auto; }
.main-nav{ display:flex; gap:32px; }
.main-nav a{
  color: #efe9dc; font-size: 13.5px; letter-spacing:.06em; text-transform:uppercase;
  position:relative; padding: 6px 0; font-weight:500;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0%;
  background: var(--gold); transition: width .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.header-actions{ display:flex; align-items:center; gap:18px; }
.icon-btn{
  background:none; border:none; color:#efe9dc; position:relative;
  display:flex; align-items:center; justify-content:center; width:36px; height:36px;
  transition: color .25s;
}
.icon-btn:hover{ color: var(--gold); }
.icon-btn svg{ width:21px; height:21px; }
.cart-count{
  position:absolute; top:-4px; right:-6px; background: var(--wine); color:#fff;
  font-size: 10px; font-weight:700; min-width:17px; height:17px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding: 0 3px;
}
.nav-toggle{ display:none; }

/* =======================================================================
   HERO
======================================================================= */
.hero{
  position:relative; min-height: 92vh; display:flex; align-items:center;
  background: radial-gradient(120% 100% at 80% 0%, #241a12 0%, var(--ink) 55%);
  color:#fff; overflow:hidden;
  padding-top: 40px;
}
.hero-bg{
  position:absolute; inset:0; opacity:.5; mix-blend-mode: luminosity;
  background-size: cover; background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns{ from{ transform: scale(1);} to{ transform: scale(1.08);} }
.hero::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,11,12,.35), rgba(11,11,12,.85) 78%, var(--ink) 100%);
}
.hero-inner{ position:relative; z-index:2; max-width: var(--maxw); margin:0 auto; padding: 0 28px; width:100%; }
.hero-eyebrow{ color: var(--gold-light); display:flex; align-items:center; gap:12px; letter-spacing:.3em; font-size:12px; text-transform:uppercase; }
.hero-eyebrow .rule{ width:44px; height:1px; background: var(--gold); display:inline-block; }
.hero h1{
  font-family: var(--font-display); font-weight:600; font-style:italic;
  font-size: clamp(48px, 8vw, 104px); line-height: .98; margin: 22px 0 20px;
  max-width: 900px;
}
.hero h1 em{ color: var(--gold-light); font-style:italic; }
.hero p.lede{ max-width:480px; color: #d8d2c4; font-size:17px; line-height:1.7; margin-bottom:36px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-scroll{
  position:absolute; bottom: 26px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px; color: var(--gold-light);
  font-size: 10px; letter-spacing:.2em; text-transform:uppercase; z-index:2;
}
.hero-scroll .dot{ width:1px; height:34px; background: linear-gradient(var(--gold), transparent); animation: dropline 1.8s ease-in-out infinite; }
@keyframes dropline{ 0%{ opacity:0; transform: scaleY(0); transform-origin:top;} 40%{opacity:1; transform: scaleY(1);} 100%{ opacity:0; transform: scaleY(1);} }

/* decorative gold border frame, signature motif echoing a saree pallu edge */
.hero-frame{ position:absolute; inset: 18px; border:1px solid rgba(201,160,92,.35); pointer-events:none; z-index:2; }
.hero-frame::before, .hero-frame::after{
  content:""; position:absolute; width:26px; height:26px; border: 1px solid var(--gold);
}
.hero-frame::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.hero-frame::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }

/* =======================================================================
   MARKETPLACE STRIP
======================================================================= */
.marketstrip{ background: var(--cream); border-bottom:1px solid var(--line); padding: 18px 0; }
.marketstrip .container{ display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.marketstrip span.label{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); margin-right:6px; }
.market-link{
  display:flex; align-items:center; gap:8px; padding: 9px 18px; border:1px solid var(--line);
  border-radius: 999px; background:#fff; font-size:13px; font-weight:600; color: var(--charcoal);
  transition: border-color .25s, transform .25s;
}
.market-link:hover{ border-color: var(--gold); transform: translateY(-2px); }
.market-link .dot{ width:7px; height:7px; border-radius:50%; }

/* =======================================================================
   CATEGORY / COLLECTION CARDS
======================================================================= */
.collections{ background: var(--paper); }
.coll-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.coll-card{
  position:relative; aspect-ratio: 3/4; overflow:hidden; border-radius: var(--radius);
  background-size:cover; background-position:center; display:flex; align-items:flex-end;
  box-shadow: var(--shadow-soft);
}
.coll-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.82)); transition: background .35s; }
.coll-card:hover::after{ background: linear-gradient(180deg, rgba(0,0,0,.15) 20%, rgba(0,0,0,.9)); }
.coll-card .coll-label{ position:relative; z-index:2; padding: 22px; color:#fff; width:100%; }
.coll-card .coll-label .eyebrow{ color: var(--gold-light); }
.coll-card h3{ font-family: var(--font-display); font-size: 26px; font-weight:600; margin-top:6px; }
.coll-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform: scale(1.02); transition: transform .6s var(--ease); }
.coll-card:hover img{ transform: scale(1.1) rotate(.4deg); }

/* =======================================================================
   PRODUCT FILTER TABS
======================================================================= */
.shop-controls{ display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom: 44px; }
.tab-btn{
  background:transparent; border:1px solid var(--line); color: var(--charcoal);
  padding: 10px 22px; border-radius: 999px; font-size: 13px; letter-spacing:.05em;
  transition: all .25s var(--ease);
}
.tab-btn:hover{ border-color: var(--gold); }
.tab-btn.active{ background: var(--ink); border-color: var(--ink); color: var(--gold-light); }

/* =======================================================================
   PRODUCT GRID / CARD
======================================================================= */
.product-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px 22px; }
.product-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  display:flex; flex-direction:column; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-media{ position:relative; aspect-ratio: 4/5; overflow:hidden; background:var(--cream); cursor:pointer; }
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.06); }
.product-tags{ position:absolute; top:10px; left:10px; display:flex; gap:6px; z-index:2; }
.quick-add{
  position:absolute; left:10px; right:10px; bottom:-52px; z-index:2;
  transition: bottom .35s var(--ease);
}
.product-card:hover .quick-add{ bottom:10px; }
.quick-add button{ width:100%; font-size:11.5px; padding: 11px; }
.product-body{ padding: 16px 16px 18px; display:flex; flex-direction:column; gap:8px; flex:1; }
.product-cat{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--gold-deep); font-weight:600; }
.product-name{ font-family: var(--font-display); font-size: 21px; font-weight:600; color: var(--ink); line-height:1.2; }
.product-colour{ font-size:12.5px; color: var(--muted); }
.product-price{ display:flex; align-items:baseline; gap:8px; margin-top:2px; }
.product-price .now{ font-weight:700; font-size:16px; color: var(--charcoal); }
.product-price .mrp{ font-size:13px; color: var(--muted); text-decoration: line-through; }
.product-price .off{ font-size:11.5px; color: var(--wine); font-weight:700; }
.swatch-row{ display:flex; gap:6px; margin-top:2px; flex-wrap:wrap; }
.swatch{
  width:18px; height:18px; border-radius:50%; border:2px solid #fff; box-shadow: 0 0 0 1px var(--line);
  cursor:pointer; transition: transform .2s, box-shadow .2s;
}
.swatch:hover{ transform: scale(1.15); }
.swatch.active{ box-shadow: 0 0 0 2px var(--gold); }
.card-actions{ margin-top:auto; display:flex; gap:8px; padding-top:10px; }
.card-actions .btn{ flex:1; padding: 11px 10px; font-size:11.5px; }

.grid-empty{ text-align:center; padding: 60px 0; color: var(--muted); grid-column: 1/-1; }

.load-more-wrap{ text-align:center; margin-top: 44px; }

/* =======================================================================
   ABOUT / STORY
======================================================================= */
.about{ background: var(--ink); color:#efe9dc; }
.about-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
.about .eyebrow{ color: var(--gold); }
.about h2{ font-family: var(--font-display); font-size: clamp(32px,4vw,46px); font-weight:600; margin: 12px 0 20px; }
.about p{ color:#c9c2b3; line-height:1.8; margin-bottom:16px; font-size:15.5px; }
.about-stats{ display:flex; gap:36px; margin-top: 30px; }
.about-stats div{ }
.about-stats strong{ display:block; font-family: var(--font-display); font-size: 34px; color: var(--gold-light); }
.about-stats span{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:#a39a86; }
.about-visual{ position:relative; }
.about-visual .frame{
  position:relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow:hidden;
  box-shadow: var(--shadow-lift);
}
.about-visual img{ width:100%; height:100%; object-fit:cover; }
.about-visual .ring{
  position:absolute; width: 140px; height:140px; border:1px solid var(--gold); border-radius:50%;
  top: -30px; right: -30px; opacity:.6;
}

/* =======================================================================
   PROMISE / TRUST STRIP
======================================================================= */
.promise-strip{ background: var(--cream); }
.promise-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.promise-item{ text-align:center; padding: 10px; }
.promise-item .ic{
  width:52px; height:52px; margin: 0 auto 14px; border-radius:50%; background: var(--ink);
  display:flex; align-items:center; justify-content:center; color: var(--gold);
}
.promise-item h4{ font-family: var(--font-display); font-size:18px; font-weight:600; color: var(--ink); margin-bottom:6px; }
.promise-item p{ font-size:13.5px; color: var(--muted); line-height:1.5; }

/* =======================================================================
   INSTAGRAM CALLOUT
======================================================================= */
.insta{
  position:relative; padding: 90px 0; text-align:center; color:#fff;
  background: linear-gradient(135deg, var(--wine-deep), var(--wine) 55%, #3a1015);
  overflow:hidden;
}
.insta::before{
  content:""; position:absolute; inset:-20%; opacity:.12;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), transparent 60%);
}
.insta-inner{ position:relative; z-index:2; }
.insta .eyebrow{ color: var(--gold-light); }
.insta h2{ font-family: var(--font-display); font-size: clamp(30px,4vw,44px); margin: 12px 0 20px; }
.insta p{ color:#f0d9de; max-width:520px; margin: 0 auto 30px; line-height:1.7; }

/* =======================================================================
   NEWSLETTER / CONTACT
======================================================================= */
.contact-cta{ background: var(--paper); text-align:center; }
.contact-cta .card{
  max-width:720px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 56px 40px; box-shadow: var(--shadow-soft);
}
.contact-cta h2{ font-family: var(--font-display); font-size: 32px; color:var(--ink); margin-bottom:12px; }
.contact-cta p{ color: var(--muted); margin-bottom: 26px; }
.contact-row{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* =======================================================================
   FOOTER
======================================================================= */
.site-footer{ background: var(--ink); color:#cfc7b6; padding: 70px 0 24px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 46px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand img{ height:30px; margin-bottom:14px; }
.footer-brand p{ font-size:13.5px; line-height:1.7; color:#a39a86; max-width:280px; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:36px; height:36px; border:1px solid rgba(255,255,255,.15); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition: border-color .25s, background .25s;
}
.footer-social a:hover{ border-color: var(--gold); background: rgba(201,160,92,.12); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h5{ color: var(--gold-light); font-size:12.5px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:18px; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col a{ font-size:13.5px; color:#cfc7b6; transition: color .2s; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:22px; font-size:12px; color:#8a8175; flex-wrap:wrap; gap:10px; }

/* =======================================================================
   PRODUCT QUICK-VIEW MODAL
======================================================================= */
.modal-overlay{
  position:fixed; inset:0; background: rgba(11,11,12,.72); backdrop-filter: blur(3px);
  z-index: 200; display:flex; align-items:center; justify-content:center; padding: 24px;
  opacity:0; pointer-events:none; transition: opacity .3s var(--ease);
}
.modal-overlay.open{ opacity:1; pointer-events:all; }
.modal-card{
  background:#fff; max-width: 920px; width:100%; max-height: 88vh; overflow:auto;
  border-radius: var(--radius); display:grid; grid-template-columns: 1fr 1fr;
  transform: translateY(24px) scale(.98); transition: transform .35s var(--ease); box-shadow: var(--shadow-lift);
}
.modal-overlay.open .modal-card{ transform:none; }
.modal-media{ position:relative; background: var(--cream); display:flex; flex-direction:column; }
.modal-media-main{ position:relative; flex:1; overflow:hidden; }
.modal-media-main img{ width:100%; height:100%; object-fit:cover; min-height:340px; display:block; }
.modal-thumbs{ display:flex; gap:8px; padding:10px; background:#fff; overflow-x:auto; }
.modal-thumb{
  width:56px; height:70px; flex:0 0 auto; border-radius:2px; overflow:hidden; cursor:pointer;
  border:2px solid transparent; opacity:.6; transition: opacity .2s, border-color .2s;
}
.modal-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.modal-thumb:hover{ opacity:1; }
.modal-thumb.active{ opacity:1; border-color: var(--gold); }
.modal-nav-arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,.85); border:none; display:flex; align-items:center; justify-content:center;
  z-index:4; transition: background .2s;
}
.modal-nav-arrow:hover{ background:#fff; }
.modal-nav-arrow.prev{ left:12px; }
.modal-nav-arrow.next{ right:12px; }
.modal-close{
  position:absolute; top:14px; right:14px; width:34px; height:34px; border-radius:50%;
  background: rgba(11,11,12,.55); color:#fff; border:none; display:flex; align-items:center; justify-content:center;
  z-index: 5; transition: background .2s;
}
.modal-close:hover{ background: var(--ink); }
.modal-info{ padding: 38px 36px; display:flex; flex-direction:column; }
.modal-info .product-cat{ margin-bottom:6px; }
.modal-info h2{ font-family: var(--font-display); font-size: 30px; font-weight:600; color:var(--ink); }
.modal-sku{ font-size:12px; color: var(--muted); margin-top:4px; letter-spacing:.03em; }
.modal-price{ display:flex; align-items:baseline; gap:10px; margin: 16px 0; }
.modal-price .now{ font-size:24px; font-weight:700; }
.modal-price .mrp{ font-size:15px; color:var(--muted); text-decoration:line-through; }
.modal-desc{ color: var(--muted); font-size:14.5px; line-height:1.75; margin-bottom: 20px; }
.modal-meta{ font-size:13px; color:var(--charcoal); margin-bottom:18px; }
.modal-meta strong{ color: var(--gold-deep); }

.field-block{ margin-bottom:20px; }
.field-label{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); margin-bottom:10px; display:block; }
.variant-options{ display:flex; gap:10px; flex-wrap:wrap; }
.variant-chip{
  display:flex; align-items:center; gap:8px; padding: 8px 14px 8px 8px; border:1px solid var(--line);
  border-radius: 999px; font-size:13px; transition: border-color .2s, background .2s;
}
.variant-chip .sw{ width:20px; height:20px; border-radius:50%; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.variant-chip:hover{ border-color: var(--gold); }
.variant-chip.active{ border-color: var(--ink); background: var(--cream); font-weight:600; }

.qty-row{ display:flex; align-items:center; gap:14px; }
.qty-control{ display:flex; align-items:center; border:1px solid var(--line); border-radius: 999px; overflow:hidden; }
.qty-control button{ width:38px; height:38px; background:#fff; border:none; font-size:16px; }
.qty-control button:hover{ background: var(--cream); }
.qty-control span{ width:36px; text-align:center; font-weight:600; }

.modal-actions{ display:flex; gap:10px; margin-top: auto; padding-top: 8px; }
.modal-actions .btn{ flex:1; padding: 15px; }
.stock-note{ font-size:12px; color: var(--muted); margin-top:12px; display:flex; align-items:center; gap:6px; }
.stock-dot{ width:7px; height:7px; border-radius:50%; background:#2e9e5b; }

/* =======================================================================
   CART DRAWER
======================================================================= */
.cart-overlay{
  position:fixed; inset:0; background: rgba(11,11,12,.55); z-index: 210;
  opacity:0; pointer-events:none; transition: opacity .3s var(--ease);
}
.cart-overlay.open{ opacity:1; pointer-events:all; }
.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width: 420px; max-width: 92vw;
  background:#fff; z-index: 211; display:flex; flex-direction:column;
  transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: -12px 0 40px rgba(0,0,0,.25);
}
.cart-overlay.open .cart-drawer{ transform:none; }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding: 22px 24px; border-bottom:1px solid var(--line); }
.cart-head h3{ font-family: var(--font-display); font-size:22px; }
.cart-items{ flex:1; overflow:auto; padding: 10px 24px; }
.cart-item{ display:flex; gap:14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img{ width:68px; height:84px; object-fit:cover; border-radius: 2px; }
.cart-item-info{ flex:1; }
.cart-item-info h4{ font-family: var(--font-display); font-size:16px; font-weight:600; }
.cart-item-info p{ font-size:12px; color: var(--muted); margin-top:2px; }
.cart-item-row{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; }
.cart-item-remove{ background:none; border:none; color: var(--muted); font-size:12px; text-decoration:underline; }
.cart-item-remove:hover{ color: var(--wine); }
.cart-empty{ text-align:center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg{ margin: 0 auto 16px; opacity:.4; }
.cart-foot{ padding: 20px 24px 26px; border-top:1px solid var(--line); }
.cart-subtotal{ display:flex; justify-content:space-between; font-size:15px; margin-bottom:16px; }
.cart-subtotal strong{ font-family: var(--font-display); font-size:20px; }
.cart-note{ font-size:11.5px; color: var(--muted); margin-top:10px; text-align:center; line-height:1.5; }

/* =======================================================================
   TOAST
======================================================================= */
.toast{
  position:fixed; bottom: 28px; left:50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--gold-light); padding: 14px 24px; border-radius: 999px;
  font-size:13.5px; z-index: 300; opacity:0; pointer-events:none; transition: all .35s var(--ease);
  display:flex; align-items:center; gap:10px; box-shadow: var(--shadow-lift);
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }

/* =======================================================================
   SIMPLE CONTENT PAGES (policies, FAQ, etc.)
======================================================================= */
.page-hero{
  background: var(--ink); color:#fff; padding: 74px 0 54px; text-align:center;
}
.page-hero .eyebrow{ color: var(--gold); }
.page-hero h1{ font-family: var(--font-display); font-weight:600; font-size: clamp(34px,5vw,52px); margin-top:10px; }
.page-hero p{ color:#c9c2b3; margin-top:12px; }
.page-content{ max-width: 760px; margin: 0 auto; padding: 70px 28px 90px; }
.page-content h2{ font-family: var(--font-display); font-size: 26px; font-weight:600; color: var(--ink); margin: 40px 0 14px; }
.page-content h2:first-child{ margin-top:0; }
.page-content p{ color: var(--charcoal); line-height:1.85; font-size:15.5px; margin-bottom:14px; }
.page-content ul{ margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.page-content li{ color: var(--charcoal); line-height:1.8; font-size:15.5px; margin-bottom:8px; }
.page-content a{ color: var(--gold-deep); text-decoration: underline; text-underline-offset:2px; }
.page-updated{ font-size:12.5px; color: var(--muted); margin-bottom: 30px; }
.page-note{
  background: var(--cream); border-left: 3px solid var(--gold); padding: 16px 20px;
  font-size: 13.5px; color: var(--charcoal); margin: 26px 0; line-height:1.7;
}
.faq-item{ border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item summary{ font-family: var(--font-display); font-size:18px; font-weight:600; color: var(--ink); cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:22px; color: var(--gold-deep); transition: transform .25s; }
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ margin-top:12px; }

/* =======================================================================
   "VIEW FULL DETAILS" LINK (product card + quick-view modal)
======================================================================= */
.details-link{
  display:inline-block; font-size:12.5px; color: var(--gold-deep); font-weight:600;
  text-decoration: none; margin-top: 2px; transition: color .2s, transform .2s;
}
.details-link:hover{ color: var(--wine); transform: translateX(2px); }

/* =======================================================================
   BREADCRUMB
======================================================================= */
.breadcrumb{
  display:flex; align-items:center; flex-wrap:wrap; gap:6px; font-size:12.5px;
  color: var(--muted); padding: 20px 0;
}
.breadcrumb a{ color: var(--muted); transition: color .2s; }
.breadcrumb a:hover{ color: var(--gold-deep); }
.breadcrumb .sep{ color: var(--line); }
.breadcrumb .current{ color: var(--charcoal); font-weight:600; }

/* =======================================================================
   PRODUCT DETAIL PAGE
======================================================================= */
.pdp{ padding: 10px 0 90px; }
.pdp-grid{ display:grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items:flex-start; }

.pdp-gallery{ position:sticky; top: 100px; }
.pdp-main-media{
  position:relative; aspect-ratio: 4/5; overflow:hidden; border-radius: var(--radius);
  background: var(--cream); box-shadow: var(--shadow-soft);
}
.pdp-main-media img{ width:100%; height:100%; object-fit:cover; }
.pdp-main-media .product-tags{ position:absolute; top:14px; left:14px; z-index:2; }
.pdp-nav-arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%;
  background: rgba(255,255,255,.9); border:none; display:flex; align-items:center; justify-content:center;
  z-index:3; transition: background .2s;
}
.pdp-nav-arrow:hover{ background:#fff; }
.pdp-nav-arrow.prev{ left:14px; }
.pdp-nav-arrow.next{ right:14px; }
.pdp-thumbs{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.pdp-thumb{
  width:74px; height:92px; border-radius:2px; overflow:hidden; cursor:pointer;
  border:2px solid transparent; opacity:.62; transition: opacity .2s, border-color .2s;
}
.pdp-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.pdp-thumb:hover{ opacity:1; }
.pdp-thumb.active{ opacity:1; border-color: var(--gold); }

.pdp-info .product-cat{ font-size:12.5px; }
.pdp-info h1{ font-family: var(--font-display); font-size: clamp(30px,3.4vw,42px); font-weight:600; color: var(--ink); margin: 8px 0 6px; line-height:1.1; }
.pdp-sku{ font-size:12.5px; color: var(--muted); margin-bottom: 18px; }
.pdp-price{ display:flex; align-items:baseline; gap:12px; margin-bottom: 22px; }
.pdp-price .now{ font-size: 28px; font-weight:700; color: var(--charcoal); }
.pdp-price .mrp{ font-size:16px; color: var(--muted); text-decoration: line-through; }
.pdp-price .off{ font-size:13px; color: var(--wine); font-weight:700; }
.pdp-desc{ color: var(--muted); font-size:15.5px; line-height:1.8; margin-bottom: 24px; padding-bottom:24px; border-bottom:1px solid var(--line); }

.pdp-actions{ display:flex; gap:12px; margin: 26px 0 10px; }
.pdp-actions .btn{ flex:1; padding:16px; font-size:12.5px; }

.pdp-trust{ display:flex; flex-direction:column; gap:10px; margin-top: 22px; padding-top:22px; border-top:1px solid var(--line); }
.pdp-trust-item{ display:flex; align-items:center; gap:10px; font-size:13px; color: var(--charcoal); }
.pdp-trust-item svg{ flex:0 0 auto; color: var(--gold-deep); }

.pdp-accordion{ margin-top: 28px; border-top:1px solid var(--line); }
.pdp-accordion-item{ border-bottom:1px solid var(--line); }
.pdp-accordion-item summary{
  display:flex; align-items:center; justify-content:space-between; padding: 16px 2px;
  font-family: var(--font-display); font-size:17px; font-weight:600; color: var(--ink);
  cursor:pointer; list-style:none;
}
.pdp-accordion-item summary::-webkit-details-marker{ display:none; }
.pdp-accordion-item summary::after{ content:"+"; font-size:20px; color: var(--gold-deep); transition: transform .25s; }
.pdp-accordion-item[open] summary::after{ transform: rotate(45deg); }
.pdp-accordion-item .body{ padding: 0 2px 18px; color: var(--muted); font-size:14.5px; line-height:1.8; }
.pdp-accordion-item .body a{ color: var(--gold-deep); text-decoration: underline; }

.related-section{ margin-top: 90px; }
.related-section .section-head{ text-align:left; margin: 0 0 30px; max-width:none; }
.related-section .section-head h2{ font-size: clamp(26px,3vw,34px); }

.pdp-notfound{ text-align:center; padding: 120px 20px; }
.pdp-notfound h1{ font-family: var(--font-display); font-size:34px; margin-bottom:14px; }
.pdp-notfound p{ color: var(--muted); margin-bottom: 26px; }

@media (max-width: 980px){
  .pdp-grid{ grid-template-columns: 1fr; gap:32px; }
  .pdp-gallery{ position:static; }
}
@media (max-width: 620px){
  .pdp-actions{ flex-direction:column; }
  .breadcrumb{ font-size:11.5px; }
}

/* =======================================================================
   RESPONSIVE
======================================================================= */
@media (max-width: 1080px){
  .coll-grid{ grid-template-columns: repeat(2,1fr); }
  .product-grid{ grid-template-columns: repeat(3,1fr); }
  .about-grid{ grid-template-columns: 1fr; gap:40px; }
  .promise-grid{ grid-template-columns: repeat(2,1fr); gap:30px; }
  .footer-grid{ grid-template-columns: 1fr 1fr 1fr; gap:34px; }
}

@media (max-width: 860px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width: 78vw; max-width:340px;
    background: var(--ink); flex-direction:column; padding: 100px 32px 32px; gap:26px;
    transform: translateX(100%); transition: transform .4s var(--ease); z-index:59;
  }
  .main-nav.open{ transform:none; }
  .nav-toggle{
    display:flex; align-items:center; justify-content:center; width:36px; height:36px;
    background:none; border:none; color:#efe9dc; flex-direction:column; gap:5px; z-index:61;
  }
  .nav-toggle span{ width:22px; height:1.5px; background: currentColor; transition: all .3s; display:block; }
  .nav-scrim{ position:fixed; inset:0; background: rgba(0,0,0,.5); z-index:58; opacity:0; pointer-events:none; transition: opacity .3s; }
  .nav-scrim.open{ opacity:1; pointer-events:all; }
  .product-grid{ grid-template-columns: repeat(2,1fr); gap:18px; }
  .modal-card{ grid-template-columns: 1fr; }
  .modal-media img{ min-height: 260px; }
}

@media (max-width: 620px){
  .container{ padding: 0 18px; }
  .section{ padding: 64px 0; }
  .coll-grid{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: repeat(2,1fr); gap:14px; }
  .product-name{ font-size:17px; }
  .card-actions{ flex-direction:column; }
  .promise-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .hero h1{ font-size: 42px; }
  .hero p.lede{ font-size:15px; }
  .cart-drawer{ width: 100vw; }
  .about-stats{ gap: 20px; flex-wrap:wrap; }
}
