/** Shopify CDN: Minification failed

Line 1828:1 Expected "}" to go with "{"

**/
/* ============================================================
   STELLYFIRE — Complete Stylesheet
   Brand: Cormorant Garamond (headings) + DM Sans (body/nav)
   Palette: #1C1410 · #F5F0E8 · #C9A96E · #F2E0D5
   ============================================================ */

/* Font-face rules are injected via theme.liquid <style> block using asset_url */

/* ── CSS Custom Properties ── */
:root {
  --color-dark:    #1C1410;
  --color-dark2:   #2A2420;
  --color-deep:    #15100D;
  --color-ivory:   #F5F0E8;
  --color-gold:    #C9A96E;
  --color-blush:   #F2E0D5;
  --color-grey:    #A09888;
  --color-rust:    #8B3A2E;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --section-pad:   clamp(30px, 3.75vw, 42px);
  --max-width:     1200px;
  --max-wide:      1440px;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

body {
  background: var(--color-dark);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

@media (pointer: fine) {
  body, a, button { cursor: none; }
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* ── Custom cursor ── */
.sf-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  background: var(--color-ivory);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  transition: width .2s ease, height .2s ease;
  will-change: transform;
}
.sf-cursor.hover {
  width: 34px;
  height: 34px;
}
@media (pointer: coarse) {
  .sf-cursor { display: none !important; }
}

/* ── Spatula scroll indicator ── */
.sf-scroll {
  position: fixed;
  right: 12px;
  top: 0;
  height: 100%;
  z-index: 55;
  pointer-events: none;
}
.sf-scroll-thumb {
  position: absolute;
  right: 0;
  transition: top .08s linear;
}
@media (max-width: 768px) {
  .sf-scroll { display: none !important; }
}
@media (max-width: 768px) {
  .sf-header-inner {
    grid-template-columns: 1fr auto 1fr !important;
    padding: 0 15px !important;
  }
  .sf-nav-left {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }
  .sf-nav-left a {
    display: none !important;
  }
  .sf-nav-left::after {
    content: '' !important;
  }
  .sf-logo {
    text-align: center !important;
  }
  .sf-nav-right .sf-nav-links {
    display: none !important;
  }
  .sf-nav-right {
    justify-content: flex-end !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }.sf-mobile-search {
    display: flex !important;
  }
  .sf-nav-right .sf-ib[aria-label="Search"] {
    display: none !important;
  }
}

/* ── Announcement bar ── */
.sf-announce {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(201,169,110,0.08);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top .3s ease;
}
.sf-announce.hidden { top: -36px; }
.sf-announce-text {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 400;
}

/* ── Header ── */
.sf-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: none;
  transition: top .3s ease, background .35s ease, border-color .35s ease;
}
.sf-header.scrolled {
  top: 0;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.sf-header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.sf-nav-left {
  display: flex;
  gap: 32px;
  align-items: center;
}
.sf-nav-right {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
}
.sf-nav-links {
  display: flex;
  gap: 32px;
}
.sf-logo {
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-gold);
  text-decoration: none;
  white-space: nowrap;
}

/* ── Nav links ── */
.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ivory);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
  border: none;
  cursor: pointer;
}
.btn-gold-o {
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  background: transparent;
}
.btn-gold-o:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}
.btn-dark {
  color: var(--color-ivory);
  border: 1px solid var(--color-dark);
  background: var(--color-dark);
}
.btn-dark:hover {
  background: var(--color-dark2);
  border-color: var(--color-dark2);
}
.btn-out-dark {
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  background: transparent;
}
.btn-out-dark:hover {
  background: var(--color-dark);
  color: var(--color-ivory);
}

/* ── Story / underline links ── */
.story-link {
  position: relative;
  display: inline-block;
}
.story-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.story-link:hover::after { transform: scaleX(1); }

/* ── Icon buttons ── */
.sf-ib {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-ivory);
  display: inline-flex;
  align-items: center;
  transition: opacity .3s ease;
}
.sf-ib:hover { opacity: .7; }

/* ── Mobile menu button ── */
.sf-mob { display: none; }

/* ── Marquee ── */
.sf-marq {
  display: flex;
  white-space: nowrap;
  animation: sfm 36s linear infinite;
}
@keyframes sfm {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sf-marq { animation: none; }
}

/* ── Hero ── */
.sf-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sf-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, var(--color-dark2) 0%, var(--color-dark) 60%, var(--color-deep) 100%);
}
.sf-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,20,16,0.2) 0%, transparent 30%, transparent 60%, var(--color-dark) 100%);
}
.sf-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.sf-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sf-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(28,20,16,0.25) 0%, rgba(28,20,16,0.45) 40%, rgba(28,20,16,0.88) 100%);
}
.sf-hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 24px;
  max-width: 880px;
}
.sf-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.0;
  font-weight: 400;
  color: var(--color-ivory);
  margin: 0;
}
.sf-hero-h1 em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
}

/* ── Trust bar ── */
.sf-trust {
  background: var(--color-ivory);
  padding: var(--section-pad) 28px;
}
.sf-trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 16px;
}
.sf-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-width: 110px;
}
.sf-trust-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-dark);
}

/* ── Section eyebrow ── */
.sf-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
}

/* ── Section headings ── */
.sf-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}
.sf-heading em {
  font-style: italic;
  color: var(--color-gold);
}

/* ── Wave divider ── */
.sf-wave {
  display: block;
  width: 100%;
  height: 64px;
  margin-top: -1px;
  margin-bottom: -1px;
}

/* ── Product Showcase ── */
.sf-showcase {
  background: var(--color-dark);
}
.sf-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 480px;
}
.sf-showcase-img {
  position: relative;
  background: var(--color-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sf-showcase-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--color-dark2) 0%, var(--color-deep) 75%);
}
.sf-showcase-content {
  background: var(--color-ivory);
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-dark);
}
.sf-showcase-tabs {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(28,20,16,0.1);
}
.sf-tab-btn {
  background: none;
  border: none;
  padding-bottom: 12px;
  position: relative;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-grey);
  transition: color .3s;
}
.sf-tab-btn.active {
  font-weight: 600;
  color: var(--color-dark);
}
.sf-tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--color-gold);
}
.sf-showcase-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  color: var(--color-dark);
}
.sf-showcase-feats {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf-showcase-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(28,20,16,0.75);
  line-height: 1.6;
}
.sf-feat-dot {
  margin-top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}
.sf-showcase-price {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
}
.sf-fup { animation: sffu .4s ease; }
@keyframes sffu {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .sf-fup, .sf-fade { animation: none; }
}
.sf-fade { animation: sff .45s ease; }
@keyframes sff {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Founder's Story ── */
.sf-founder {
  background: var(--color-dark);
}
.sf-founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.sf-founder-img {
  position: relative;
  background: var(--color-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 360px;
}
.sf-founder-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--color-dark2) 0%, var(--color-deep) 80%);
}
.sf-founder-img-label {
  position: relative;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-grey);
}
.sf-founder-content {
  background: var(--color-ivory);
  padding: clamp(30px, 4.5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-dark);
}
.sf-founder-heading {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-dark);
}
.sf-founder-heading em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-founder-body {
  margin-top: 14px;
  max-width: 440px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(28,20,16,0.75);
  line-height: 1.8;
}
.sf-founder-quote {
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--color-gold);
}
.sf-founder-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.25;
  margin: 0;
}
.sf-founder-sub {
  margin-top: 20px;
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

/* ── What's Inside ── */
.sf-inside {
  background: var(--color-ivory);
  padding: var(--section-pad) 28px;
  color: var(--color-dark);
}
.sf-inside-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.sf-inside-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 28px;
  color: var(--color-dark);
}
.sf-inside-heading em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-inside-split {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  align-items: stretch;
}
.sf-inside-left {
  flex: 3;
}
.sf-inside-right {
  flex: 2;
  min-height: 374px;
}
.sf-inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 14px;
  height: 100%;
}
.sf-inside-flip {
  height: 100%;
}
@media (max-width: 768px) {
  .sf-inside-split { flex-direction: column; }
  .sf-inside-right { min-height: 280px; }
  .sf-inside-grid { grid-template-rows: 150px 150px; }
}
.sf-inside-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-dark);
  padding: clamp(24px, 3.5vw, 40px);
}
/* Always side-by-side with divider */
.sf-2col {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}
.sf-2col-divider {
  background: var(--color-gold);
  width: 1px;
  margin: 0 20px;
  align-self: stretch;
}
.sf-inside-col {
  padding: 0 16px;
}
.sf-inside-col:first-child { padding-left: 0; }
.sf-inside-col:last-child { padding-right: 0; }
.sf-stat {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-gold);
  font-weight: 300;
  line-height: .85;
}
.sf-inside-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}
.sf-inside-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ivory);
}

/* ── Five Layers ── */
.sf-layers {
  background: var(--color-dark);
  padding: var(--section-pad) 28px;
}
.sf-layers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.sf-layers-heading {
  text-align: center;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 8px;
}
.sf-layers-heading em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-layers-hint {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  color: var(--color-grey);
  margin: 8px 0 28px;
}
/* Fix 5: All 5 cards in ONE horizontal row */
.sf-5grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sf-5grid::-webkit-scrollbar { display: none; }
.sf-5grid .flip-card {
  flex: 0 0 calc((100% - 56px) / 5);
  min-width: 160px;
  height: 260px;
}

/* ── Flip cards ── */
.flip-card { perspective: 1200px; }
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.flip-back { transform: rotateY(180deg); }
.sf-layer-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--color-gold);
  font-weight: 300;
  line-height: 1;
}
.sf-layer-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ivory);
  margin: 0;
}
.sf-layer-back-name {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin: 0;
}
.sf-layer-back-body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-dark);
  line-height: 1.65;
  margin: 0;
}

/* ── Compatibility ── */
.sf-compat {
  background: var(--color-dark);
  padding: var(--section-pad) 28px;
}
.sf-compat-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.sf-compat-heading {
  text-align: center;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 28px;
}
.sf-compat-heading em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-4grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.compat-tile {
  background: var(--color-dark2);
  border: 1px solid rgba(201,169,110,0.12);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .35s ease;
}
.compat-tile:hover { border-color: rgba(201,169,110,0.45) !important; }
.compat-icon-wrap {
  margin: 0 auto 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compat-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}
.compat-body {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ivory);
  line-height: 1.5;
}

/* ── Certification Badges ── */
.sf-badges {
  background: var(--color-blush);
  padding: var(--section-pad) 28px;
}
.sf-badges-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.sf-badges-heading {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--color-dark);
}
.sf-badges-heading em { font-style: italic; }
.sf-badges-hint {
  margin-top: 8px;
  font-style: italic;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(28,20,16,0.53);
}
.sf-badges-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.badge-seal {
  border-radius: 9999px;
  width: 130px;
  height: 130px;
  perspective: 800px;
  transition: transform .4s ease;
}
.badge-seal:hover { transform: rotate(5deg); }
.badge-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .6s ease;
  transform-style: preserve-3d;
}
.badge-seal:hover .badge-inner { transform: rotateY(180deg); }
.badge-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.badge-back { transform: rotateY(180deg); }
.badge-front-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  text-align: center;
}
.badge-front-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.3;
}
.badge-back-text {
  padding: 0 12px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-ivory);
  line-height: 1.5;
}

/* ── Stellyfire Standard ── */
.sf-standard {
  background: var(--color-dark);
  padding: var(--section-pad) 28px;
}
.sf-standard-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.sf-standard-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--color-ivory);
  margin: 0 0 28px;
  white-space: pre-line;
}
.sf-standard-heading em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-standard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.sf-std-card {
  height: 240px;
}
.sf-std-front-text {
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  white-space: pre-line;
  margin: 0;
}
.sf-std-back-text {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

/* ── Product Grid Carousel ── */
.sf-pgrid {
  background: var(--color-ivory);
  padding: var(--section-pad) 0;
  color: var(--color-dark);
}
.sf-pgrid-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.sf-pgrid-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 6px;
  color: var(--color-dark);
}
.sf-pgrid-heading em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-gold-rule {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 12px auto 0;
}
.sf-arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.sf-garr {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(28,20,16,0.2);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, border-color .3s ease;
}
.sf-garr:hover {
  background: rgba(28,20,16,0.06);
  border-color: rgba(28,20,16,0.45);
}
.sf-gtrack {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px 28px 8px;
  max-width: var(--max-width);
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sf-gtrack::-webkit-scrollbar { display: none; }
.sf-prod {
  flex: 0 0 calc((100% - 40px) / 2.5);
  scroll-snap-align: start;
  min-width: 0;
}
.sf-well {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--color-blush);
  overflow: hidden;
}
.sf-wimg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s ease;
}
.sf-prod:hover .sf-wimg { transform: scale(1.04); }
.sf-prod-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 12px;
  background: var(--color-gold);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.sf-qa {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.sf-prod:hover .sf-qa {
  opacity: 1;
  transform: translateY(0);
}
.sf-prod-info { padding-top: 16px; text-align: center; }
.sf-prod-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-dark);
}
.sf-prod-prices {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
}
.sf-prod-mrp {
  text-decoration: line-through;
  color: var(--color-grey);
}
.sf-prod-price { font-weight: 500; color: var(--color-dark); }
.sf-pgrid-cta {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  margin-top: 22px;
}

/* ── Reviews ── */
.sf-reviews-section {
  background: var(--color-ivory);
  padding: var(--section-pad) 0;
  color: var(--color-dark);
}
.sf-reviews {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: stretch;
  padding: 0 28px;
}
.sf-review-anchor {
  background: var(--color-dark);
  padding: 32px 24px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sf-review-anchor-heading {
  margin-top: 12px;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
}
.sf-review-anchor-heading em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-review-rating-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--color-gold);
  font-weight: 300;
  line-height: 1;
}
.sf-review-count {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-grey);
}
.sf-rev-arrows {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}
.sf-rarr {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, border-color .3s ease;
}
.sf-rarr:hover {
  background: rgba(201,169,110,0.15);
  border-color: var(--color-gold);
}
.sf-revt {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sf-revt::-webkit-scrollbar { display: none; }
.sf-rev-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border: 1px solid rgba(28,20,16,0.08);
  display: flex;
  flex-direction: column;
  background: var(--color-ivory);
}
.sf-rev-photo {
  height: 100px;
  background: var(--color-blush);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sf-rev-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sf-rev-stars { display: flex; gap: 2px; }
.sf-rev-quote {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(28,20,16,0.8);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.sf-rev-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(28,20,16,0.08);
}
.sf-rev-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-dark);
}
.sf-rev-loc {
  font-weight: 400;
  color: var(--color-grey);
}
.sf-rev-prod {
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── Comparison Table ── */
.sf-compare {
  background: var(--color-dark);
  padding: var(--section-pad) 28px;
}
.sf-compare-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.sf-compare-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--color-ivory);
  margin: 0 0 28px;
}
.sf-compare-heading em {
  font-style: italic;
  color: var(--color-gold);
}
.sf-compare-scroll { overflow-x: auto; }
.sf-compare-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}
.sf-compare-table th {
  padding: 14px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-grey);
}
.sf-compare-table th.sf-th-gold {
  color: var(--color-gold);
  background: rgba(201,169,110,0.05);
  border-top: 1px solid rgba(201,169,110,0.27);
}
.sf-compare-table td {
  padding: 14px;
  text-align: center;
  border-top: 1px solid rgba(245,240,232,0.08);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-grey);
}
.sf-compare-table td.sf-td-label {
  text-align: left;
  padding-left: 0;
  font-size: 13px;
  color: var(--color-ivory);
  font-weight: 500;
}
.sf-compare-table td.sf-td-gold {
  background: rgba(201,169,110,0.05);
}
.sf-compare-note {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-grey);
}
.sf-comp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.sf-comp-card {
  height: 300px;
}
@media (max-width: 860px) {
  .sf-comp-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sf-comp-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sf-comp-card { height: 260px; }
}

/* ── As Seen In / Press ── */
.sf-press {
  background: var(--color-deep);
  padding: 16px 0;
  border-top: 1px solid rgba(201,169,110,0.06);
  border-bottom: 1px solid rgba(201,169,110,0.06);
}
.sf-press-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sf-press-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-grey);
}
.sf-press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.sf-press-logo {
  width: 100px;
  height: 28px;
  background: var(--color-dark2);
  border: 1px solid rgba(201,169,110,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sf-press-logo span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-grey);
}

/* ── Instagram ── */
.sf-ig-section {
  background: var(--color-ivory);
  padding: 30px 0 0;
  color: var(--color-dark);
}
.sf-ig-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.sf-ig-handle {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--color-dark);
  text-decoration: none;
}
.sf-ig-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.sf-ig {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-grey);
}
.sf-igo {
  position: absolute;
  inset: 0;
  background: rgba(28,20,16,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}
.sf-ig:hover .sf-igo { opacity: 1; }

/* ── Footer ── */
.sf-footer {
  background: var(--color-dark);
  padding: 42px 28px 20px;
  border-top: 1px solid rgba(201,169,110,0.08);
}
.sf-foot {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}
.sf-footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  font-weight: 500;
}
.sf-footer-tagline {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-grey);
  line-height: 1.65;
}
.sf-soc-row {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}
.sf-soc {
  color: var(--color-grey);
  display: inline-flex;
  transition: opacity .3s ease;
}
.sf-soc:hover { opacity: .6; }
.sf-footer-col-head {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}
.sf-footer-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sf-footer-link {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-grey);
  text-decoration: none;
}
.sf-footer-rule {
  margin-top: 36px;
  height: 1px;
  background: rgba(201,169,110,0.18);
}
.sf-fbase {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-grey);
  letter-spacing: 0.06em;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
}

/* ── Cart Drawer ── */
.sf-drw {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background: var(--color-dark);
  border-left: 1px solid rgba(201,169,110,0.1);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  display: flex;
  flex-direction: column;
}
.sf-drw.open { transform: translateX(0); }
.sf-drw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201,169,110,0.13);
}
.sf-drw-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-ivory);
}
.sf-drw-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}
.sf-drw-empty {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-grey);
  margin-top: 28px;
  text-align: center;
}
.sf-drw-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.sf-drw-img {
  width: 48px;
  height: 60px;
  background: var(--color-dark2);
  flex-shrink: 0;
}
.sf-drw-item-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-ivory);
}
.sf-drw-item-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-grey);
  margin-top: 3px;
}
.sf-drw-item-price {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-gold);
  margin-top: 4px;
}
.sf-drw-footer {
  padding: 20px;
  border-top: 1px solid rgba(201,169,110,0.13);
}
.sf-drw-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ivory);
  margin-bottom: 14px;
}
.sf-drw-total-price {
  color: var(--color-gold);
  font-weight: 500;
}

/* ── Overlay ── */
.sf-scm {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.sf-scm.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Toast ── */
.sf-tst {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.sf-tst.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile nav overlay ── */
.sf-mnav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.sf-mnav.open {
  opacity: 1;
  pointer-events: auto;
}
.sf-mnav-close {
  position: absolute;
  top: 24px;
  right: 24px;
}
.sf-mnav .nav-link {
  font-size: 18px;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .sf-dnav { display: none !important; }
  .sf-mob { display: inline-flex !important; }
  .sf-split { grid-template-columns: 1fr !important; }
  .sf-founder-split { grid-template-columns: 1fr !important; }
  .sf-4grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sf-cursor { display: none !important; }
  .sf-reviews {
    grid-template-columns: 1fr !important;
  }
  .sf-foot {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .sf-fbase { flex-direction: column; }
  .sf-ig-grid { grid-template-columns: repeat(3, 1fr) !important; }
  /* What's Inside — keep side by side on mobile via flex */
  .sf-2col {
    grid-template-columns: 1fr 1px 1fr;
  }
  .sf-2col-divider { margin: 0 10px; }
}

@media (max-width: 480px) {
  .sf-ig-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sf-prod { flex: 0 0 calc((100% - 20px) / 1.4) !important; }
}

/* ── Utility ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
@media screen and (max-width: 749px) {
  .template-product .sf-split {
    flex-direction: column !important;
  }
  .template-product .sf-split > div:first-child {
    width: 100% !important;
    position: static !important;
  }
  .template-product .sf-split > div:first-child > div:nth-child(2) {
    display: flex !important;
    gap: 8px !important;
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 8px !important;
  }
 .template-product .sf-split > div:first-child > div:nth-child(2) > div {
    flex-shrink: 0 !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    scroll-snap-align: start !important;
  }
  .template-product .sf-split > div:first-child {
    max-width: 100vw !important;
    overflow: hidden !important;
  }
  .template-product .sf-split > div:first-child::after {
  content: "← Swipe to view more";
  display: block;
  font-size: 11px;
  color: #F5F0E8;
  opacity: 0.5;
  margin-top: 6px;
  text-align: center;
}