/** Shopify CDN: Minification failed

Line 704:0 Expected "}" to go with "{"

**/
/* ================================================================
   OUNCE28 — Complete Theme Stylesheet
   "Pure Leaf" Design System | Flow-inspired | Shopify Compatible
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --cream:#FBF7F0; --cream2:#F5EDE0; --white:#FFFFFF;
  --dark:#18120A;  --dark2:#1C1206;  --dark3:#241810;
  --gold:#BF8420;  --lgold:#E8B84B;  --dgold:#8B5E10;
  --rust:#7A3A15;  --brown:#5C3419;  --tan:#C9A070;
  --muted:#7A6045; --border:#E2D4BE; --border2:#D4C4AA;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --radius: 0px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { background: var(--cream); font-family: 'Lato', sans-serif; color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--gold); color: #fff; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.3rem); }
p { line-height: 1.8; }

/* ── LAYOUT ── */
.container      { max-width: 1440px; margin: 0 auto; padding: 0 60px; }
.container-md   { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.container-sm   { max-width: 780px;  margin: 0 auto; padding: 0 32px; }
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── LABELS & EYEBROWS ── */
.label {
  display: inline-block; font-family: 'Lato', sans-serif;
  font-size: .65rem; font-weight: 900; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.label-light { color: var(--tan); }
.label-white { color: rgba(255,255,255,.6); }

/* ── GOLD DIVIDER ── */
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 20px 0; }
.gold-line.center { margin: 20px auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  border: none; transition: var(--transition); line-height: 1;
  white-space: nowrap;
}
.btn-primary   { background: var(--gold);        color: #fff;            padding: 16px 40px; }
.btn-primary:hover { background: var(--lgold); }
.btn-dark      { background: var(--dark);        color: var(--lgold);    padding: 16px 40px; }
.btn-dark:hover { background: var(--dark2); color: #fff; }
.btn-ghost     { background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); padding: 15px 40px; }
.btn-ghost:hover { border-color: var(--gold); color: var(--lgold); }
.btn-outline   { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 15px 36px; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-outline-dark { background: transparent; border: 1px solid var(--dark); color: var(--dark); padding: 15px 36px; }
.btn-outline-dark:hover { background: var(--dark); color: var(--lgold); }
.btn-sm  { padding: 11px 24px; font-size: .65rem; }
.btn-lg  { padding: 18px 52px; font-size: .8rem; }
.btn-full { width: 100%; }

/* ── BADGE ── */
.badge { display: inline-block; background: var(--gold); color: #fff; font-size: .6rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; }
.badge-rust { background: var(--rust); }
.badge-dark { background: var(--dark); color: var(--lgold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANNOUNCEMENT BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.announce-bar {
  background: var(--rust); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  text-align: center; padding: 10px 20px; position: relative; z-index: 100;
}
.announce-bar a { color: var(--lgold); margin-left: 8px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER / NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.site-header { background: none; border-bottom: 1px solid rgba(38, 22, 11, 0.2); }
.header-nav a { color: #8C6D4C !important; }
.header-nav a:hover, .header-nav a.active { color: #8C6D4C !important; }
.header-icon { color: #8C6D4C !important; }
.header-icon:hover { color: #8C6D4C !important; }
.hamburger span { background: #8C6D4C !important; }
.header-logo { color: #8C6D4C !important; }

/* Mobile */
.mobile-nav a { color: #8C6D4C !important; }
.mobile-nav a:hover { color: #8C6D4C !important; }

.site-header.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,.5); }
.header-inner {
  max-width: 1600px; margin: 0 auto; padding: 0 64px;
  height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
}

.header-logo {
  font-family: 'Playfair Display', serif; font-size: 1.65rem;
  color: var(--lgold); letter-spacing: .5px; flex-shrink: 0;
}
.header-logo img { height: 44px; width: auto; }
.header-nav { display: flex; gap: 0; }
.header-nav a {
  font-size: .82rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.5); padding: 8px 28px; transition: color .2s; position: relative;
}
.header-nav a::after { content:''; position:absolute; bottom:-1px; left:20px; right:20px; height:2px; background:var(--gold); transform:scaleX(0); transition:transform .25s; }
.header-nav a:hover, .header-nav a.active { color: var(--lgold); }
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-icon { background: none; border: none; color: rgba(255,255,255,.6); font-size: 1.1rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: color .2s; position: relative; }
.header-icon:hover { color: var(--lgold); }
.cart-count { position: absolute; top: 2px; right: 2px; background: var(--gold); color: #fff; font-size: .55rem; font-weight: 900; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.header-cta { background: var(--gold); color: #fff; padding: 10px 22px; font-size: .65rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; transition: background .2s; }
.header-cta:hover { background: var(--lgold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.7); transition: var(--transition); }

/* Mobile nav */
.mobile-nav { display: none; background: var(--dark2); border-top: 1px solid rgba(200,134,10,.1); flex-direction: column; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55); padding: 16px 28px; border-bottom: 1px solid rgba(255,255,255,.05); transition: color .2s; }
.mobile-nav a:hover { color: var(--lgold); padding-left: 36px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE / CRAWLER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.marquee-bar { background: var(--gold); overflow: hidden; padding: 11px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; will-change: transform; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; padding: 0 32px; font-size: .65rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; }
.marquee-item::after { content: '✦'; margin-left: 32px; opacity: .45; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — FULL BLEED
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero { position: relative; width: 100%; overflow: hidden; display: flex; align-items: center; background: var(--dark); }
.hero-full { min-height: 100vh; }
.hero-standard { min-height: 88vh; }
.hero-short { min-height: 70vh; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; }
.hero-scrim-left  { background: linear-gradient(90deg, rgba(14,8,4,.92) 0%, rgba(14,8,4,.75) 40%, rgba(14,8,4,.25) 70%, transparent 100%); }
.hero-scrim-center { background: rgba(14,8,4,.55); }
.hero-scrim-bottom { background: linear-gradient(0deg, rgba(14,8,4,.9) 0%, rgba(14,8,4,.4) 50%, rgba(14,8,4,.1) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-content-left   { padding: 0 80px; max-width: 760px; }
.hero-content-center { padding: 0 40px; max-width: 900px; margin: 0 auto; text-align: center; }

.hero-eyebrow { display: inline-block; border: 1px solid var(--gold); color: var(--gold); font-size: .62rem; letter-spacing: 3.5px; text-transform: uppercase; font-weight: 700; padding: 6px 18px; margin-bottom: 28px; }
.hero-title { font-family: 'Playfair Display', serif; color: #FAF6EF; margin-bottom: 22px; }
.hero-title em { color: var(--lgold); font-style: italic; }
.hero-title span { display: block; }
.hero-subtitle { font-size: clamp(.95rem,1.5vw,1.15rem); color: rgba(250,246,239,.55); font-weight: 300; line-height: 1.8; max-width: 480px; margin-bottom: 36px; }
.hero-subtitle.center { margin: 0 auto 36px; }
.hero-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 36px; }
.hero-price { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3.2rem); color: var(--lgold); font-weight: 600; line-height: 1; }
.hero-price-label { color: rgba(250,246,239,.35); font-size: .9rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns.center { justify-content: center; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.3); font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold),transparent); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3;transform:scaleY(1);} 50%{opacity:1;transform:scaleY(1.2);} }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-strip { background: var(--rust); display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 16px; }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-item strong { display: block; color: #fff; font-size: .85rem; margin-bottom: 3px; }
.trust-item span { color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IMAGE WITH TEXT (Story / Split)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-section.reverse .split-visual { order: 2; }
.split-section.reverse .split-text { order: 1; }
.split-visual { position: relative; overflow: hidden; min-height: 580px; background: var(--dark); }
.split-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .88; transition: transform .7s ease; }
.split-section:hover .split-visual img { transform: scale(1.04); }
.split-overlay { position: absolute; inset: 0; z-index: 1; }
.split-caption { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; z-index: 2; font-family: 'Playfair Display', serif; font-style: italic; font-size: .82rem; color: rgba(200,134,10,.65); letter-spacing: 1px; }
.split-text { padding: 88px 72px; display: flex; flex-direction: column; justify-content: center; }
.split-text.bg-cream { background: var(--cream); }
.split-text.bg-dark  { background: var(--dark); }
.split-text.bg-cream2 { background: var(--cream2); }
.pull-quote { border-left: 3px solid var(--gold); padding: 14px 24px; margin: 24px 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; color: var(--brown); line-height: 1.55; }
.pull-quote.light { border-left-color: var(--lgold); color: rgba(250,246,239,.8); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT FEATURE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.product-feature { padding: 100px 0; background: var(--dark); }
.product-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.product-img-cell { position: relative; display: flex; align-items: center; justify-content: center; background: #18120A; min-height: 600px; overflow: hidden; }
.product-main-img { position: relative; z-index: 2; width: min(480px,100%); height: auto; filter: drop-shadow(0 28px 56px rgba(0,0,0,.13)); transition: transform .6s ease; }
.product-img-cell:hover .product-main-img { transform: translateY(-10px) rotate(1deg); }
.product-badge-abs { position: absolute; top: 8px; right: 0; z-index: 3; }
.product-weight-tag { display: inline-flex; align-items: center; gap: 10px; background: var(--cream); border: 1px solid var(--border); padding: 12px 22px; font-size: .8rem; color: var(--brown); font-weight: 700; letter-spacing: .5px; margin: 20px 0 32px; }
.product-features-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.product-features-list li { display: flex; align-items: flex-start; gap: 14px; font-size: .92rem; line-height: 1.65; }
.feat-bullet { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.feat-title { font-weight: 700; color: var(--dark); }
.feat-desc  { color: var(--muted); font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-section { padding: 100px 0; background: var(--dark); }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-card { background: var(--dark2); border: 1px solid rgba(200,134,10,.13); padding: 48px 38px; position: relative; transition: var(--transition); }
.price-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.price-card.featured { border: 2px solid var(--gold); }
.price-featured-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: .6rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; padding: 5px 20px; white-space: nowrap; }
.price-icon { font-size: 36px; margin-bottom: 18px; }
.price-tier { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--tan); margin-bottom: 6px; }
.price-pack { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--cream); margin-bottom: 24px; }
.price-amount { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 6px; line-height: 1; }
.price-currency { font-size: 1.3rem; color: var(--lgold); font-weight: 700; margin-top: 10px; }
.price-number { font-family: 'Playfair Display', serif; font-size: 3.8rem; color: var(--lgold); }
.price-per { color: rgba(200,160,80,.45); font-size: .78rem; margin-bottom: 30px; }
.price-features-list { border-top: 1px solid rgba(200,134,10,.1); margin-bottom: 32px; }
.price-features-list li { padding: 11px 0; border-bottom: 1px solid rgba(200,134,10,.08); color: rgba(250,246,239,.55); font-size: .84rem; font-weight: 300; }
.price-features-list li strong { color: var(--tan); font-weight: 700; }
.price-btn { width: 100%; padding: 14px; background: transparent; border: 1px solid var(--gold); color: var(--gold); font-size: .7rem; font-family: 'Lato', sans-serif; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.price-btn:hover, .price-card.featured .price-btn { background: var(--gold); color: #fff; }
.pricing-note { text-align: center; margin-top: 40px; color: rgba(250,246,239,.2); font-size: .75rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PURITY / CHECKLIST SPLIT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.purity-section { display: grid; grid-template-columns: 1fr 1fr; }
.purity-text { padding: 88px 72px; background: var(--brown); display: flex; flex-direction: column; justify-content: center; }
.purity-visual { position: relative; overflow: hidden; background: var(--dark); min-height: 560px; display: flex; align-items: center; justify-content: center; }
.purity-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .85; z-index: 2; }
.purity-glow { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(200,134,10,.06) 0%,transparent 70%); }
.checklist { display: flex; flex-direction: column; margin-top: 28px; }
.checklist-item { display: flex; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.checklist-item:last-child { border: none; }
.check-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--lgold); color: var(--lgold); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 900; flex-shrink: 0; }
.check-text { color: rgba(250,246,239,.82); font-size: .9rem; line-height: 1.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT / FULL-BLEED SECTION WITH STATS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-section { position: relative; width: 100%; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.about-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 0; }
.collection-hero { position: relative; width: 100%; min-height: 480px; overflow: hidden; background: var(--dark); display: flex; align-items: center; }
.collection-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .6; z-index: 0; }
.collection-hero-overlay { position: relative; z-index: 2; width: 100%; padding: 80px 60px; }
.collection-hero-text { max-width: 600px; }
.about-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,8,4,.6) 0%, rgba(14,8,4,.82) 100%); z-index: 1; }
.about-content { position: relative; z-index: 2; width: 100%; padding: 100px 0; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; max-width: 720px; margin: 48px auto 0; border: 1px solid rgba(200,134,10,.25); }
.stat-item { padding: 36px 28px; border-right: 1px solid rgba(200,134,10,.25); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--lgold); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: .65rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--tan); font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VIDEO SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.video-section { background: var(--dark); }
.video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.video-wrap video, .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: none; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,8,4,.75) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 56px 80px; z-index: 2; pointer-events: none; }
.video-placeholder { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); display: flex; align-items: center; justify-content: center; min-height: 480px; }
.video-play-icon { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 2rem; cursor: pointer; transition: var(--transition); }
.video-play-icon:hover { background: var(--gold); color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ROLLING STEPS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.steps-section { padding: 100px 0; background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 56px; }
.step-card { text-align: center; padding: 48px 32px; background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.step-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin: 0 auto 24px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--dark); }
.step-card p { font-size: .9rem; line-height: 1.8; color: var(--muted); font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVIEWS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reviews-section { padding: 100px 0; background: var(--cream2); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.review-card { background: var(--white); border: 1px solid var(--border); padding: 40px; transition: var(--transition); }
.review-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 2px; }
.review-text { font-size: .92rem; line-height: 1.82; color: var(--muted); font-style: italic; margin-bottom: 24px; font-weight: 300; }
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--brown); margin-bottom: 3px; }
.reviewer-meta { font-size: .72rem; color: var(--tan); font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA / BANNER CALLOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-section { padding: 96px 0; background: var(--dark); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(200,134,10,.04) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { color: var(--cream); margin-bottom: 16px; }
.cta-sub { color: rgba(250,246,239,.4); font-size: 1.05rem; margin-bottom: 44px; font-weight: 300; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RICH TEXT / EDITORIAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rich-text { padding: 80px 0; }
.rich-text.bg-dark { background: var(--dark); }
.rich-text.bg-cream { background: var(--cream); }
.rich-text-inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 32px; }
.rich-text-inner p { font-size: 1.05rem; color: var(--muted); font-weight: 300; line-height: 1.85; margin-top: 18px; }
.rich-text.bg-dark .rich-text-inner h2 { color: var(--cream); }
.rich-text.bg-dark .rich-text-inner p { color: rgba(250,246,239,.5); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IMAGE GALLERY / MULTI-COLUMN
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-section { padding: 80px 0; background: var(--white); }
.gallery-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 4px; }
.gallery-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.gallery-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.gallery-item { overflow: hidden; aspect-ratio: 1; background: var(--cream); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.05); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COLLECTION PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.collection-hero { position: relative; overflow: hidden; }
.collection-hero { min-height: 60vh; }
.collection-hero-bg { height: 100%; min-height: 60vh; }
.collection-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,8,4,.85) 0%, rgba(14,8,4,.4) 100%); display: flex; align-items: flex-end; padding-bottom: 60px; }
.collection-hero-text { padding: 0 60px; }
.collection-filters { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 56px; }
.filter-label { font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.filter-select { border: 1px solid var(--border); padding: 8px 16px; font-size: .8rem; font-family: 'Lato', sans-serif; color: var(--dark); background: var(--cream); appearance: none; -webkit-appearance: none; cursor: pointer; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; padding: 2px; }
.product-card { background: var(--white); overflow: hidden; transition: var(--transition); position: relative; }
.product-card:hover { z-index: 2; }
.product-card-img-wrap { overflow: hidden; aspect-ratio: 1; background: var(--cream); }
.product-card-img { width: 100%; height: 100%; object-fit: contain; padding: 32px; transition: transform .5s ease; }
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-body { padding: 20px 24px 28px; border-top: 1px solid var(--border); }
.product-card-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.product-card-vendor { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tan); margin-bottom: 8px; }
.product-card-price { font-size: 1.1rem; color: var(--gold); font-weight: 700; }
.product-card-compare { font-size: .82rem; color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.product-card-btn { display: block; width: 100%; padding: 12px; margin-top: 16px; background: var(--dark); color: var(--lgold); border: none; font-size: .65rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'Lato', sans-serif; transition: var(--transition); }
.product-card-btn:hover { background: var(--gold); color: #fff; }
.product-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: var(--gold); color: #fff; font-size: .65rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; text-align: center; padding: 10px; transform: translateY(100%); transition: transform .25s; }
.product-card:hover .product-card-overlay { transform: translateY(0); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.product-page { padding: 60px 0 100px; background: var(--cream); }
.product-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-gallery { position: sticky; top: 88px; }
.product-gallery-main { aspect-ratio: 1; overflow: hidden; .product-gallery-main { background: transparent !important; border: none !important; }
; border: 1px solid var(--border); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 40px; transition: transform .4s; }
.product-gallery-main:hover img { transform: scale(1.04); }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.product-thumb { aspect-ratio: 1; border: 1px solid var(--border); cursor: pointer; overflow: hidden; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 8px; transition: border-color .2s; }
.product-thumb.active, .product-thumb:hover { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info { padding-top: 8px; }
.product-breadcrumb { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.product-breadcrumb a:hover { color: var(--gold); }
.product-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.12; margin-bottom: 16px; }
.product-price-wrap { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; }
.product-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); font-weight: 600; line-height: 1; }
.product-compare-price { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.product-price-note { font-size: .75rem; color: var(--muted); }
.product-short-desc { font-size: .95rem; line-height: 1.8; color: var(--muted); font-weight: 300; margin-bottom: 28px; }
.option-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 10px; }
.variant-select { width: 100%; padding: 14px 18px; border: 1px solid var(--border); background: var(--white); font-family: 'Lato', sans-serif; font-size: .95rem; color: var(--dark); appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BF8420' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; margin-bottom: 20px; }
.variant-select:focus { outline: 2px solid var(--gold); }
.qty-wrap { display: flex; align-items: center; margin-bottom: 20px; width: fit-content; border: 1px solid var(--border); }
.qty-btn { width: 44px; height: 48px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--dark); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.qty-btn:hover { background: var(--cream); }
.qty-input { width: 60px; height: 48px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 1rem; font-family: 'Lato', sans-serif; background: var(--cream); -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.atc-btn { width: 100%; padding: 18px; background: var(--gold); color: #fff; border: none; font-size: .78rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'Lato', sans-serif; transition: var(--transition); margin-bottom: 12px; }
.atc-btn:hover { background: var(--lgold); }
.atc-btn:disabled { opacity: .5; cursor: not-allowed; }
.product-trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.product-trust-item { font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.product-tabs { margin-top: 40px; }
.tab-headers { display: flex; border-bottom: 1px solid var(--border); }
.tab-header { background: none; border: none; font-family: 'Lato', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 14px 20px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--transition); }
.tab-header.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { padding: 24px 0; display: none; font-size: .92rem; line-height: 1.82; color: var(--muted); font-weight: 300; }
.tab-content.active { display: block; }
.tab-content h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 12px; }
.tab-content p { margin-bottom: 14px; }
.tab-content ul { padding-left: 16px; list-style: disc; display: flex; flex-direction: column; gap: 8px; }
.tab-content ul li { color: var(--muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; padding: 80px 0; }
.blog-card { border: 1px solid var(--border); background: var(--white); overflow: hidden; transition: var(--transition); }
.blog-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--cream); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(8%); transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 28px; }
.blog-tag { display: inline-block; font-size: .58rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 3px 12px; margin-bottom: 14px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.blog-card-meta { font-size: .68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--tan); }
.article-header { padding: 72px 0 48px; background: var(--cream); }
.article-body { max-width: 780px; margin: 0 auto; padding: 0 32px 80px; }
.article-body p { font-size: 1.02rem; line-height: 1.9; color: var(--dark); margin-bottom: 24px; font-weight: 300; }
.article-body h2 { font-size: 1.6rem; color: var(--brown); margin: 40px 0 16px; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 32px 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: var(--brown); }
.article-body img { width: 100%; margin: 32px 0; filter: sepia(8%); }
.article-share { display: flex; align-items: center; gap: 16px; padding: 32px 0; border-top: 1px solid var(--border); flex-wrap: wrap; }
.article-share-label { font-size: .65rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CART DRAWER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 890; backdrop-filter: blur(2px); }
.cart-overlay.open { display: block; }
.cart-drawer { position: fixed; top: 0; right: -480px; width: 480px; max-width: 100vw; height: 100%; background: var(--cream); z-index: 895; transition: right .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,.25); }
.cart-drawer.open { right: 0; }
.cart-drawer-header { background: var(--dark); padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.cart-drawer-title { font-family: 'Playfair Display', serif; color: var(--lgold); font-size: 1.25rem; }
.cart-close-btn { background: none; border: none; color: rgba(255,255,255,.5); font-size: 1.5rem; cursor: pointer; line-height: 1; transition: color .2s; padding: 4px; }
.cart-close-btn:hover { color: var(--lgold); }
.cart-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-empty-msg { text-align: center; padding: 80px 0; }
.cart-empty-msg p { color: var(--muted); font-style: italic; margin-bottom: 24px; }
.cart-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 88px; height: 88px; object-fit: contain; background: var(--white); padding: 8px; border: 1px solid var(--border); }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--dark); margin-bottom: 5px; }
.cart-item-variant { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.cart-item-price { font-size: 1rem; color: var(--gold); font-weight: 700; }
.cart-remove-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.1rem; line-height: 1; padding: 4px; transition: color .2s; }
.cart-remove-btn:hover { color: var(--rust); }
.cart-footer { padding: 24px 28px; border-top: 1px solid var(--border); flex-shrink: 0; background: var(--white); }
.cart-subtotal-row { display: flex; justify-content: space-between; align-items: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.cart-subtotal-amount { color: var(--gold); font-weight: 600; }
.cart-shipping-note { font-size: .72rem; color: var(--muted); margin-bottom: 20px; }
.cart-checkout-btn { display: block; width: 100%; padding: 17px; background: var(--gold); color: #fff; border: none; font-size: .75rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: 'Lato', sans-serif; transition: var(--transition); text-align: center; margin-bottom: 10px; }
.cart-checkout-btn:hover { background: var(--lgold); }
.cart-continue-btn { display: block; width: 100%; padding: 14px; background: transparent; color: var(--muted); border: 1px solid var(--border); font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: 'Lato', sans-serif; transition: var(--transition); text-align: center; }
.cart-continue-btn:hover { border-color: var(--dark); color: var(--dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer { background: #0C0806; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand-logo { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--lgold); display: block; margin-bottom: 16px; }
.footer-brand-logo img { height: 48px; width: auto; }
.footer-tagline { font-size: .85rem; color: rgba(250,246,239,.28); line-height: 1.78; max-width: 230px; font-weight: 300; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(200,134,10,.25); display: flex; align-items: center; justify-content: center; color: rgba(250,246,239,.35); font-size: .75rem; transition: var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--lgold); background: rgba(200,134,10,.08); }
.footer-col-title { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--tan); margin-bottom: 20px; font-family: 'Lato', sans-serif; font-weight: 900; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(250,246,239,.3); font-size: .85rem; font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: var(--lgold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.04); padding: 28px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .72rem; color: rgba(250,246,239,.18); }
.footer-payment { display: flex; gap: 8px; align-items: center; }
.footer-legal-bar { background: #000; text-align: center; padding: 16px 24px; border-top: 1px solid rgba(255,255,255,.04); }
.footer-legal-bar p { font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); line-height: 1.7; font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MISC PAGES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero { background: var(--dark); padding: 72px 0; text-align: center; }
.page-content { padding: 80px 0; }
.page-content h1 { font-size: 2.2rem; margin-bottom: 32px; }
.page-content p { font-size: 1rem; line-height: 1.85; color: var(--muted); margin-bottom: 20px; font-weight: 300; }
.breadcrumb { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold); }
.empty-state { text-align: center; padding: 100px 0; }
.empty-state h2 { font-size: 1.8rem; margin-bottom: 16px; color: var(--cream); }
.empty-state p { color: rgba(250,246,239,.4); margin-bottom: 36px; }
.error-page { background: var(--dark); min-height: 70vh; display: flex; align-items: center; text-align: center; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 60px; padding-bottom: 20px; }
.pagination a, .pagination span { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--dark); transition: var(--transition); }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--border); background: var(--cream); font-family: 'Lato', sans-serif; font-size: .95rem; color: var(--dark); transition: border-color .2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-errors { background: #fff0f0; border: 1px solid #e53e3e; padding: 14px 20px; margin-bottom: 20px; font-size: .9rem; color: #c53030; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NOTIFICATIONS / TOASTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--dark); color: var(--lgold); padding: 16px 24px; font-size: .8rem; font-weight: 700; letter-spacing: 1px; z-index: 9999; transform: translateY(100px); opacity: 0; transition: all .3s; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 3px solid var(--gold); }
.toast.error { border-left: 3px solid var(--rust); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width:1200px) {
  .container { padding: 0 40px; }
  .header-inner { padding: 0 32px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media(max-width:1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse .split-visual { order: 0; }
  .split-section.reverse .split-text { order: 0; }
  .split-visual { min-height: 400px; }
  .split-text { padding: 60px 40px; }
  .product-feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .purity-section { grid-template-columns: 1fr; }
  .purity-visual { min-height: 340px; }
  .purity-text { padding: 64px 40px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 40px auto 0; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin: 40px auto 0; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; max-width: 320px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(200,134,10,.25); }
  .stat-item:last-child { border-bottom: none; }
  .product-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-gallery { position: static; }
  .hero-content-left { padding: 0 40px; }
  .collection-hero-text { padding: 0 32px; }
  .collection-filters { padding: 0 32px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .video-overlay { padding: 40px 40px; }
}
@media(max-width:768px) {
  .container { padding: 0 24px; }
  .container-md { padding: 0 24px; }
  .section-pad { padding: 72px 0; }
  .hero-content-left { padding: 0 28px; max-width: 100%; }
  .hero-content-center { padding: 0 24px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-item:last-child { border-bottom: none; }
  .split-text { padding: 52px 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .gallery-grid-3 { grid-template-columns: repeat(2,1fr); }
  .gallery-grid-4 { grid-template-columns: repeat(2,1fr); }
  .cart-drawer { width: 100vw; }
  .header-inner { padding: 0 20px; }
  .video-overlay { padding: 32px 24px; }
}
@media(max-width:480px) {
  .hero-full { min-height: 100svh; }
  .hero-standard { min-height: 100svh; }
  .btn-lg { padding: 15px 32px; }
  .gallery-grid-2 { grid-template-columns: 1fr; }
  .gallery-grid-3 { grid-template-columns: 1fr; }
  .gallery-grid-4 { grid-template-columns: 1fr; }
}
/* ── CART DRAWER ── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 900;
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--dark2);
  border-left: 1px solid rgba(200,134,10,.2);
  z-index: 950;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.cart-drawer.is-open { right: 0; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(200,134,10,.15);
}
.cart-drawer-title { font-family: 'Playfair Display', serif; color: var(--lgold); font-size: 1.1rem; letter-spacing: 1px; }
.cart-close-btn { background: none; border: none; color: rgba(255,255,255,.5); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.cart-close-btn:hover { color: var(--lgold); }
.cart-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty-msg, .cart-empty { color: rgba(250,246,239,.4); font-size: .9rem; text-align: center; padding: 40px 0; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(200,134,10,.1); }
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.cart-item-details { display: flex; flex-direction: column; gap: 4px; }
.cart-item-title { color: var(--cream); font-size: .9rem; font-weight: 700; }
.cart-item-variant, .cart-item-qty { color: var(--tan); font-size: .78rem; }
.cart-item-price { color: var(--lgold); font-size: .9rem; font-weight: 700; }
.cart-footer { padding: 20px 24px; border-top: 1px solid rgba(200,134,10,.15); }
.cart-subtotal-row { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--cream); font-size: .9rem; font-weight: 700; }
.cart-subtotal-amount { color: var(--lgold); }
.cart-shipping-note { color: rgba(250,246,239,.3); font-size: .72rem; margin-bottom: 16px; }
.cart-checkout-btn { display: block; width: 100%; background: var(--gold); color: #fff; text-align: center; padding: 14px; font-size: .72rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.cart-checkout-btn:hover { background: var(--lgold); }
.cart-continue-btn { display: block; width: 100%; background: transparent; border: 1px solid rgba(200,134,10,.3); color: rgba(250,246,239,.4); padding: 12px; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; }
.cart-continue-btn:hover { border-color: var(--gold); color: var(--lgold); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--dark); border: 1px solid var(--gold); color: var(--lgold); padding: 12px 28px; font-size: .8rem; letter-spacing: 1px; opacity: 0; transition: all .3s ease; z-index: 9999; pointer-events: none; }
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0);

/* ── Overrides ── */

footer, .site-footer { background-color: #0C0806 !important; }
.site-header { background: none !important; border-bottom: 1px solid rgba(92,52,25,.2) !important; }

.pricing-section { background-color: #18120A !important; }
.rich-text.bg-dark { background-color: #18120A !important; }

/* Product Feature */
.product-feature .container { max-width: 100% !important; padding: 0 !important; }
.product-feature-grid { min-height: 600px; }
.product-img-cell {
  position: relative;
  overflow: hidden;
  background: #18120A;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-main-img {
  position: relative;
  display: block;
  width: 80%;
  height: auto;
  object-fit: contain;
  filter: none;
  margin: auto;
  padding: 40px 0;
}

.product-badge-abs { position: absolute; top: 16px; right: 16px; z-index: 3; }
.product-img-ring { display: none !important; }

@media (max-width: 1024px) {
  .product-img-cell { min-height: 400px; }
  .product-feature-grid { min-height: 400px; }
}


