/* ============================================================
   DREAM ATTITUDE — Storefront CSS
   Brand: Black × Gold × White
   Version: 2.0 — Full Rewrite (April 2026)
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {

  /* ── Brand Core ─────────────────────────────────────────── */
  --color-bg-primary: #FFFFFF;
  --color-bg-surface: #F8F8F6;
  --color-bg-elevated: #F0F0EE;
  --color-bg-dark: #0A0A0A;
  --color-bg-dark-soft: #141414;

  /* ── Gold ───────────────────────────────────────────────── */
  --color-gold: #C9963A;
  --color-gold-light: #E8C97A;
  --color-gold-dark: #A07830;
  --color-gold-muted: rgba(201, 150, 58, 0.12);

  /* ── Text ───────────────────────────────────────────────── */
  --color-text-primary: #0A0A0A;
  --color-text-secondary: #3A3A3A;
  --color-text-muted: #888888;

  /* ── Borders ────────────────────────────────────────────── */
  --color-border: #E4E4E0;
  --color-border-gold: rgba(201, 150, 58, 0.25);

  /* ── Status ─────────────────────────────────────────────── */
  --color-error: #C53030;
  --color-success: #276749;

  /* ── Aliases (Blade templates use these) ─────────────────
     NOTE: --color-plum and --color-dark are BOTH mapped to
     Rich Black. The old "plum" purple has been retired.
     ──────────────────────────────────────────────────────── */
  --color-plum: #0A0A0A;
  --color-dark: #0A0A0A;
  --color-warm: #C9963A;

  /* ── Layout ─────────────────────────────────────────────── */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --transition: all 0.25s ease;
  --sf-container-max: 1200px;
  --sf-container-pad: 24px;
  --sf-section-pad-y: 64px;
  --sf-bottom-nav-h: 60px;
}


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

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  font-size: 14px;
  line-height: 1.6;
}

h1,
h2,
h3,
.playfair {
  font-family: 'Playfair Display', serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Prevent iOS Safari zoom on input focus */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
select,
textarea {
  font-size: 16px !important;
}

/* Fix iOS tap highlight */
a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(201, 150, 58, 0.1);
}

/* Fix Safari button appearance */
button,
.sf-btn-primary,
.sf-hero-cta,
.btn-add,
.sf-pdp-add,
.sf-pdp-buy {
  -webkit-appearance: none;
}


/* ── Utilities ───────────────────────────────────────────── */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-block {
  display: inline-block !important;
}

.text-secondary {
  color: var(--color-text-secondary) !important;
}

.text-success {
  color: var(--color-success) !important;
}

.text-danger {
  color: var(--color-error) !important;
}

.is-invalid {
  border-color: var(--color-error) !important;
}

.is-valid {
  border-color: var(--color-success) !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.border-top {
  border-top: 1px solid var(--color-border) !important;
}


/* ── Keyframes ───────────────────────────────────────────── */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}


/* ── Layout Containers ───────────────────────────────────── */
.sf-container {
  max-width: var(--sf-container-max);
  margin: 0 auto;
  padding: 0 var(--sf-container-pad);
}

.sf-section {
  padding: var(--sf-section-pad-y) 0;
}


/* ============================================================
   ANNOUNCE BAR
   ============================================================ */
.sf-announce-bar {
  background: var(--color-gold);
  color: #1A1A1A;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 500;
}

.sf-announce-bar .btn-dismiss {
  position: absolute;
  right: 16px;
  color: #1A1A1A;
  cursor: pointer;
  font-size: 18px;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}


/* ============================================================
   HEADER
   ============================================================ */
.sf-header {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.sf-header .logo {
  color: var(--color-gold);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  white-space: nowrap;
}

.sf-header-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
}

.sf-header .nav-links a {
  color: var(--color-text-secondary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 12px;
  transition: var(--transition);
  white-space: nowrap;
}

.sf-header .nav-links a:hover {
  color: var(--color-gold);
}

.sf-header .search-input {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 7px 16px;
  color: var(--color-text-primary);
  font-size: 12px;
  width: 180px;
  transition: var(--transition);
}

.sf-header .search-input:focus {
  border-color: var(--color-gold);
  outline: none;
}

.sf-header .cart-icon {
  color: var(--color-gold);
}

.sf-header .sf-cart-badge {
  background: var(--color-gold);
  color: #1A1A1A;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: -8px;
  right: -8px;
  pointer-events: none;
}

/* Hamburger */
.sf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.sf-hamburger span {
  background: var(--color-gold);
  height: 2px;
  width: 22px;
  display: block;
  border-radius: 1px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .sf-hamburger {
    display: flex;
  }

  .sf-header .nav-links {
    display: none;
  }

  .sf-header .search-input {
    display: none;
  }
}


/* ── Desktop Dropdown Nav ────────────────────────────────── */
.sf-nav-dropdown {
  position: relative;
}

.sf-nav-dropdown .sf-nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sf-nav-chevron {
  font-size: 9px;
  transition: transform 0.25s ease;
}

.sf-nav-dropdown:hover .sf-nav-chevron {
  transform: rotate(180deg);
}

.sf-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 200px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 110;
}

/* Invisible hover bridge */
.sf-nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.sf-nav-dropdown:hover .sf-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sf-nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  white-space: nowrap;
}

.sf-nav-dropdown-menu a:hover {
  color: var(--color-gold) !important;
  background: var(--color-bg-surface);
  padding-left: 24px;
}


/* ── Mobile Drawer ───────────────────────────────────────── */
.sf-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  /* z-index above bottom nav (1050) and overlay (1049) */
  z-index: 1060;
  background: #1A1A1A;
  border-right: 1px solid var(--color-border-gold);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 24px 20px;
  overflow-y: auto;
}

.sf-mobile-drawer.open {
  transform: translateX(0);
}

.sf-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1049;
  display: none;
}

.sf-drawer-overlay.open {
  display: block;
}

.sf-mobile-drawer .close-drawer {
  position: absolute;
  color: var(--color-gold);
  top: 16px;
  right: 16px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.sf-mobile-drawer a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #E0E0E0;
  font-size: 14px;
}

.sf-mobile-drawer a:hover {
  color: var(--color-gold);
}

/* Drawer Accordion */
.sf-drawer-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sf-drawer-group>a {
  border-bottom: none;
}

.sf-drawer-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sf-drawer-parent a {
  flex: 1;
  border-bottom: none !important;
}

.sf-drawer-toggle {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 14px;
  padding: 12px 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.sf-drawer-group.open .sf-drawer-toggle {
  transform: rotate(180deg);
}

.sf-drawer-children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 16px;
}

.sf-drawer-group.open .sf-drawer-children {
  max-height: 300px;
}

.sf-drawer-children a {
  font-size: 13px;
  padding: 10px 0 10px 12px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  position: relative;
}

.sf-drawer-children a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

.sf-drawer-children a:last-child {
  border-bottom: none !important;
}

.sf-drawer-children a:hover {
  color: var(--color-gold);
}


/* ============================================================
   HERO — FULL WIDTH SLIDER
   ============================================================ */
.sf-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--color-bg-dark);
}

.sf-hero-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  touch-action: pan-y;
  /* Allow vertical scroll, handle horizontal in JS */
  -webkit-touch-callout: none;
  user-select: none;
}

.sf-hero-slide {
  width: 100%;
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.sf-hero-img-wrap {
  width: 100%;
  display: block;
  overflow: hidden;
  /* Prevent layout jumps explicitly across slides */
  aspect-ratio: 1920 / 800;
  transition: aspect-ratio 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .sf-hero-img-wrap {
    /* Controlled vertical height ratio for mobile screens */
    aspect-ratio: 1080 / 1350;
  }
}

.sf-hero-picture {
  width: 100%;
  display: block;
}

.sf-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fallback shimmer while image loads */
.sf-hero-img-wrap:not(:has(img[src])) {
  background: linear-gradient(90deg,
      var(--color-bg-dark) 25%,
      var(--color-bg-dark-soft) 50%,
      var(--color-bg-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Overlay gradient */
.sf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 60%,
      transparent 100%);
  pointer-events: none;
}

/* Text content on slide */
.sf-hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 520px;
}

.sf-hero-content,
.sf-hero-content * {
  color: #FFFFFF;
}

.sf-hero-tag {
  color: var(--color-gold) !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-weight: 500;
  display: block;
}

.sf-hero-title {
  font-family: 'Playfair Display', serif;
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sf-hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.sf-hero-cta {
  display: inline-block;
  background: var(--color-gold);
  color: #0A0A0A;
  padding: 12px 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.sf-hero-cta:hover {
  background: var(--color-gold-light);
  color: #0A0A0A;
}

@media (max-width: 768px) {
  .sf-hero-title {
    font-size: 24px;
  }

  .sf-hero-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }
}

/* Slider Arrows */
.sf-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sf-hero-arrow:hover {
  background: var(--color-gold);
  color: #0A0A0A;
}

.sf-hero-prev {
  left: 16px;
}

.sf-hero-next {
  right: 16px;
}

@media (max-width: 768px) {
  .sf-hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .sf-hero-prev {
    left: 10px;
  }

  .sf-hero-next {
    right: 10px;
  }
}

/* Slider Dots */
.sf-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.sf-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.sf-hero-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .sf-hero-dots {
    bottom: 10px;
  }

  .sf-hero-dot {
    width: 6px;
    height: 6px;
  }
}


/* ── Hero Split (Legacy — kept for backward compat) ──────── */
.sf-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  overflow: hidden;
}

.sf-hero-split-left {
  background: var(--color-bg-dark);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sf-hero-split-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 60px;
  background: var(--color-bg-dark);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

.sf-hero-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 150, 58, 0.15);
  border: 1px solid rgba(201, 150, 58, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 11px;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  width: fit-content;
}

.sf-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.sf-hero-split-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.sf-hero-split-title em {
  color: var(--color-gold-light);
  font-style: italic;
}

.sf-hero-split-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 28px;
}

.sf-hero-split-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sf-hero-split-btn-primary {
  background: var(--color-gold);
  color: #0A0A0A;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  -webkit-appearance: none;
}

.sf-hero-split-btn-primary:hover {
  background: var(--color-gold-light);
  color: #0A0A0A;
}

.sf-hero-split-btn-outline {
  background: transparent;
  color: #FFFFFF;
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  -webkit-appearance: none;
}

.sf-hero-split-btn-outline:hover {
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

.sf-hero-micro-trust {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.sf-hero-micro-trust span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.05em;
}

.sf-hero-micro-trust span i {
  color: var(--color-gold-light);
  font-size: 12px;
}

.sf-hero-split-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.sf-hero-grid-img {
  overflow: hidden;
  position: relative;
}

.sf-hero-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.sf-hero-grid-img:hover img {
  transform: scale(1.06);
}

.sf-hero-grid-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #FFFFFF;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .sf-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sf-hero-split-left {
    padding: 36px 20px 32px;
    order: 1;
  }

  .sf-hero-split-left::after {
    display: none;
  }

  .sf-hero-split-title {
    font-size: 28px;
  }

  .sf-hero-split-ctas {
    flex-direction: column;
  }

  .sf-hero-split-btn-primary,
  .sf-hero-split-btn-outline {
    text-align: center;
  }

  .sf-hero-split-right {
    order: 2;
    height: 240px;
    grid-template-rows: 1fr;
  }

  .sf-hero-grid-img:nth-child(3),
  .sf-hero-grid-img:nth-child(4) {
    display: none;
  }

  .sf-hero-micro-trust {
    gap: 10px;
  }

  .sf-hero-micro-trust span {
    font-size: 10px;
  }
}


/* ============================================================
   TRUST STRIP
   ============================================================ */
.sf-trust-strip {
  background: var(--color-bg-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sf-trust-item {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sf-trust-item:last-child {
  border-right: none;
}

.sf-trust-val {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 3px;
}

.sf-trust-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .sf-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-trust-item:nth-child(2) {
    border-right: none;
  }

  .sf-trust-item:nth-child(3),
  .sf-trust-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sf-trust-item:nth-child(4) {
    border-right: none;
  }
}


/* ============================================================
   SECTION HEADERS (Shared)
   ============================================================ */
.sf-section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  display: block;
}

.sf-section-title {
  color: var(--color-dark);
  font-size: 34px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: normal;
  text-transform: none;
}

.sf-section-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.sf-section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.sf-view-all {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--color-dark);
  padding-bottom: 2px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.sf-view-all:hover {
  color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.sf-view-all-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--color-dark);
  color: var(--color-dark);
  padding: 12px 36px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  margin-top: 32px;
}

.sf-view-all-btn:hover {
  background: var(--color-dark);
  color: #FFFFFF;
}


/* ============================================================
   CATEGORY CIRCLES
   ============================================================ */
.sf-cat-circle-wrap {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: var(--sf-container-max);
  margin: 0 auto;
  padding: 0 var(--sf-container-pad);
}

@media (max-width: 768px) {
  .sf-cat-circle-wrap {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .sf-cat-circle-wrap::-webkit-scrollbar {
    display: none;
  }
}

.sf-cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: var(--transition);
}

.sf-cat-circle-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--color-border);
  background: var(--color-bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sf-cat-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-cat-circle-img i {
  font-size: 32px;
  color: var(--color-gold);
}

.sf-cat-circle-item:hover .sf-cat-circle-img {
  border-color: var(--color-gold);
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(201, 150, 58, 0.15);
}

.sf-cat-circle-name {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  max-width: 110px;
  line-height: 1.3;
}

.sf-cat-circle-item:hover .sf-cat-circle-name {
  color: var(--color-gold-dark);
}

@media (max-width: 768px) {
  .sf-cat-circle-img {
    width: 76px;
    height: 76px;
  }

  .sf-cat-circle-name {
    font-size: 10px;
    max-width: 76px;
  }
}


/* ── Legacy Category Grid (backward compat) ──────────────── */
.sf-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 768px) {
  .sf-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sf-category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.sf-cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  cursor: pointer;
  height: 180px;
  transition: var(--transition);
  display: block;
}

.sf-cat-card:hover {
  border-color: var(--color-gold);
  transform: scale(1.02);
}

.sf-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 60%);
}

.sf-cat-card label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #FFFFFF;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  z-index: 2;
  cursor: pointer;
}


/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.sf-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 768px) {
  .sf-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .sf-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.sf-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sf-product-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Square image with aspect-ratio + padding-top fallback */
.sf-product-card .img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--color-bg-surface);
}

.sf-product-card .img-wrap::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.sf-product-card .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@supports (aspect-ratio: 1 / 1) {
  .sf-product-card .img-wrap::before {
    display: none;
  }

  .sf-product-card .img-wrap img {
    position: static;
    aspect-ratio: 1 / 1;
  }
}

.sf-product-card:hover .img-wrap img {
  transform: scale(1.06);
}

/* Badges */
.sf-product-card .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--color-gold);
  color: #1A1A1A;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 2;
}

.sf-product-card .badge-sale {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-bg-dark);
  color: var(--color-gold-light);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 2;
}

/* Wishlist */
.sf-product-card .wishlist-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--color-text-muted);
  font-size: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: var(--transition);
  z-index: 2;
}

.sf-product-card .wishlist-heart.active,
.sf-product-card .wishlist-heart:hover {
  color: var(--color-gold);
}

/* Card Body */
.sf-product-card .card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sf-product-card .product-name {
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.sf-product-card .card-subtitle {
  font-size: 11px;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
  font-weight: 400;
}

/* Ratings */
.sf-product-card .card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.sf-product-card .card-stars i {
  font-size: 12px;
  color: #F5A623;
}

.sf-product-card .card-stars span {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Price */
.sf-product-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.sf-product-card .sale-price {
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 600;
}

.sf-product-card .mrp {
  color: var(--color-text-muted);
  font-size: 11px;
  text-decoration: line-through;
}

.sf-product-card .discount {
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 500;
}

/* Add to Cart Button */
.sf-product-card .btn-add {
  width: 100%;
  margin-top: 10px;
  background: var(--color-dark);
  border: 1px solid var(--color-dark);
  color: #FFFFFF;
  padding: 9px 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  -webkit-appearance: none;
}

.sf-product-card .btn-add:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #0A0A0A;
}

.sf-product-card .btn-add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--color-bg-elevated);
  border-color: var(--color-border);
  color: var(--color-text-muted);
}


/* ============================================================
   USP STRIP — Why Trust Us
   ============================================================ */
.sf-usp-strip {
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.sf-usp-section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--color-dark);
  margin-bottom: 8px;
  padding-top: 48px;
  font-weight: 400;
}

.sf-usp-section-sub {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.sf-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: var(--sf-container-max);
  margin: 0 auto;
  padding: 0 var(--sf-container-pad) 48px;
}

@media (max-width: 767px) {
  .sf-usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sf-usp-section-title {
    font-size: 24px;
    padding-top: 36px;
  }
}

.sf-usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.sf-usp-icon-wrap {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--color-border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-bg-primary);
  color: var(--color-gold);
  font-size: 22px;
  transition: var(--transition);
}

.sf-usp-item:hover .sf-usp-icon-wrap {
  border-color: var(--color-gold);
  background: var(--color-gold-muted);
  transform: scale(1.08);
}

.sf-usp-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.sf-usp-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 180px;
}


/* ============================================================
   BENEFITS STRIP (Circular — HealthyNutty inspired)
   ============================================================ */
.sf-benefits-strip {
  padding: 40px 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
}

.sf-benefits-scroll {
  display: flex;
  gap: 32px;
  justify-content: center;
  max-width: var(--sf-container-max);
  margin: 0 auto;
  padding: 0 var(--sf-container-pad);
  flex-wrap: wrap;
}

.sf-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 90px;
  flex-shrink: 0;
  text-align: center;
  cursor: default;
}

.sf-benefit-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-surface);
  transition: var(--transition);
}

.sf-benefit-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-benefit-circle i {
  font-size: 28px;
  color: var(--color-gold);
}

.sf-benefit-item:hover .sf-benefit-circle {
  border-color: var(--color-gold);
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(201, 150, 58, 0.15);
}

.sf-benefit-label {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 90px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .sf-benefits-scroll {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .sf-benefits-scroll::-webkit-scrollbar {
    display: none;
  }

  .sf-benefit-item {
    scroll-snap-align: start;
  }

  .sf-benefit-circle {
    width: 68px;
    height: 68px;
  }
}


/* ============================================================
   AWARD / BRAND STORY SECTION
   ============================================================ */
.sf-award-section {
  background: var(--color-bg-dark);
  padding: 56px 0;
}

.sf-award-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--sf-container-max);
  margin: 0 auto;
  padding: 0 var(--sf-container-pad);
}

@media (max-width: 768px) {
  .sf-award-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sf-award-right {
    order: -1;
  }
}

.sf-award-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 12px;
  display: block;
}

.sf-award-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .sf-award-title {
    font-size: 26px;
  }
}

.sf-award-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sf-award-link {
  color: var(--color-gold-light);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 2px;
  transition: var(--transition);
  display: inline-block;
}

.sf-award-link:hover {
  color: var(--color-gold);
}

.sf-award-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .sf-award-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .sf-award-stats {
    grid-template-columns: 1fr;
  }
}

.sf-award-stat {
  border-left: 2px solid var(--color-gold);
  padding-left: 14px;
}

.sf-award-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--color-gold-light);
  display: block;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 768px) {
  .sf-award-stat-num {
    font-size: 22px;
  }
}

.sf-award-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.sf-award-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sf-award-img-block {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
  min-width: 0;
}

.sf-award-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .sf-award-img-block {
    height: 120px;
  }
}


/* ============================================================
   REVIEW SLIDER
   ============================================================ */
.sf-review-slider {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  overflow: hidden;
}

.sf-review-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
  touch-action: pan-y;
}

.sf-review-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 8px;
}

.sf-review-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.sf-review-stars {
  color: #F5A623;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.sf-review-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.sf-reviewer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sf-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}

.sf-reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  display: block;
}

.sf-reviewer-role,
.sf-reviewer-product {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
  display: block;
}

.sf-reviewer-verified {
  font-size: 10px;
  color: var(--color-success);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  justify-content: flex-start;
}

.sf-review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.sf-review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.sf-review-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .sf-review-card {
    padding: 24px 20px;
  }

  .sf-review-text {
    font-size: 13px;
  }
}

/* Legacy review grid (backward compat) */
.sf-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .sf-review-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .sf-review-grid::-webkit-scrollbar {
    display: none;
  }

  .sf-review-grid .sf-review-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
}


/* ============================================================
   INSTAGRAM / SOCIAL SECTION
   (On-brand: Black + Gold instead of Instagram purple/red)
   ============================================================ */
.sf-instagram-section {
  padding: 56px 0;
  text-align: center;
  background: var(--color-bg-dark);
}

.sf-instagram-inner {
  max-width: var(--sf-container-max);
  margin: 0 auto;
  padding: 0 var(--sf-container-pad);
}

.sf-instagram-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-weight: 500;
  display: block;
}

.sf-instagram-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.sf-instagram-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.sf-instagram-icon {
  font-size: 36px;
  color: var(--color-gold-light);
  margin-bottom: 12px;
  display: block;
}

.sf-instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gold);
  color: #0A0A0A;
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.sf-instagram-cta:hover {
  background: var(--color-gold-light);
  color: #0A0A0A;
  transform: translateY(-2px);
}

.sf-instagram-proof {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  letter-spacing: 0.05em;
  display: block;
}

/* Optional Instagram image grid */
.sf-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .sf-instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sf-instagram-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.sf-instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sf-instagram-tile:hover img {
  transform: scale(1.08);
}


/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.sf-pdp {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .sf-pdp {
    grid-template-columns: 55% 45%;
  }
}

@media (max-width: 1023px) {
  .sf-pdp {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.sf-pdp-gallery .main-img-wrap {
  position: relative;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sf-pdp-gallery .main-img-wrap::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.sf-pdp-gallery .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@supports (aspect-ratio: 1 / 1) {
  .sf-pdp-gallery .main-img-wrap::before {
    display: none;
  }

  .sf-pdp-gallery .main-img {
    position: static;
    aspect-ratio: 1 / 1;
  }
}

.sf-pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.sf-pdp-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--color-border);
  cursor: pointer;
  opacity: 0.6;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.sf-pdp-thumbs img.active,
.sf-pdp-thumbs img:hover {
  border-color: var(--color-gold);
  opacity: 1;
}

/* Info */
.sf-pdp-info-block {
  margin-bottom: 20px;
}

.sf-pdp .title {
  color: var(--color-text-primary);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sf-pdp .price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.sf-pdp .price {
  color: var(--color-dark);
  font-size: 28px;
  font-weight: 600;
}

.sf-pdp .mrp {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 16px;
}

.sf-pdp .saving-badge {
  background: var(--color-gold-muted);
  color: var(--color-gold-dark);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Variants */
.sf-pdp .variant-label {
  color: var(--color-text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.sf-pdp .variant-btn {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}

.sf-pdp .variant-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

.sf-pdp .variant-btn.active {
  border-color: var(--color-gold);
  background: var(--color-gold-muted);
  color: var(--color-gold-dark);
  font-weight: 600;
}

.sf-pdp .variant-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Qty */
.sf-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.sf-qty button {
  background: var(--color-bg-elevated);
  border: none;
  border-right: 1px solid var(--color-border);
  color: var(--color-gold);
  width: 36px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sf-qty button:last-child {
  border-right: none;
  border-left: 1px solid var(--color-border);
}

.sf-qty button:hover {
  background: var(--color-gold-muted);
}

.sf-qty input {
  background: transparent;
  border: none;
  padding: 0 16px;
  color: var(--color-text-primary);
  font-size: 14px;
  text-align: center;
  width: 54px;
  height: 40px;
}

/* PDP Buttons */
.sf-pdp-add {
  width: 100%;
  height: 50px;
  background: var(--color-dark);
  color: #FFFFFF;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  -webkit-appearance: none;
}

.sf-pdp-add:hover {
  background: var(--color-gold);
  color: #0A0A0A;
}

.sf-pdp-buy {
  width: 100%;
  height: 50px;
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  -webkit-appearance: none;
}

.sf-pdp-buy:hover {
  background: var(--color-gold-muted);
}

/* Trust row */
.sf-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.sf-trust-row i {
  color: var(--color-gold);
  margin-right: 4px;
}

/* Description */
.sf-pdp-desc {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

/* Mobile sticky bar — product page */
@media (max-width: 768px) {
  .sf-mobile-sticky {
    position: fixed;
    /* Sits above bottom nav */
    bottom: var(--sf-bottom-nav-h);
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-bg-surface);
    border-top: 1px solid var(--color-border-gold);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    z-index: 50;
  }
}

@media (min-width: 769px) {
  .sf-mobile-sticky {
    display: none;
  }
}

/* PDP bottom padding (mobile) — accounts for sticky bar + bottom nav */
@media (max-width: 768px) {
  .sf-pdp {
    padding-bottom: calc(var(--sf-bottom-nav-h) + 72px);
  }
}


/* ============================================================
   CART
   ============================================================ */
.sf-cart-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .sf-cart-layout {
    grid-template-columns: 65% 35%;
  }
}

.sf-cart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.sf-cart-row:last-child {
  border-bottom: none;
}

.sf-cart-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.sf-cart-name {
  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 500;
  display: block;
}

.sf-cart-variant {
  color: var(--color-text-muted);
  font-size: 11px;
}

.sf-cart-price {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 600;
}

.sf-cart-remove {
  color: var(--color-text-muted);
  cursor: pointer;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.sf-cart-remove:hover {
  color: var(--color-error);
  border-color: var(--color-error);
  background: rgba(197, 48, 48, 0.08);
}

/* Cart Summary */
.sf-cart-summary {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.sf-cart-total {
  border-top: 1px solid var(--color-border-gold);
  padding-top: 12px;
  margin-top: 12px;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.sf-cart-summary .btn-checkout {
  width: 100%;
  height: 50px;
  background: var(--color-gold);
  color: #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  transition: var(--transition);
  -webkit-appearance: none;
}

.sf-cart-summary .btn-checkout:hover {
  background: var(--color-gold-light);
}

/* Free Shipping Progress Bar */
.sf-shipping-bar {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 6px;
  margin: 12px 0 6px;
}

.sf-shipping-bar-fill {
  height: 100%;
  background: var(--color-gold);
  border-radius: var(--radius-sm);
  transition: width 0.5s ease;
}

.sf-shipping-msg {
  font-size: 12px;
  color: var(--color-text-secondary);
  text-align: center;
}

.sf-shipping-msg strong {
  color: var(--color-gold-dark);
}


/* ============================================================
   CHECKOUT
   ============================================================ */
/* 
   Mobile layout: form first, order summary second.
   No RTL hack. Pure CSS Grid order.
*/
.sf-checkout-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .sf-checkout-layout {
    grid-template-columns: 60% 40%;
  }
}

@media (max-width: 1023px) {
  .sf-checkout-form {
    order: 1;
  }

  /* Form always first on mobile */
  .sf-checkout-summary {
    order: 2;
  }

  /* Summary always second */
}

/* Error Block */
.sf-checkout-errors {
  background: rgba(197, 48, 48, 0.08);
  border: 1px solid var(--color-error);
  border-left: 4px solid var(--color-error);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 1.5rem;
}

.sf-checkout-errors .error-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-error);
  margin-bottom: 8px;
}

.sf-checkout-errors ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-error);
  font-size: 13px;
}

.sf-checkout-errors ul li {
  margin-bottom: 4px;
}


/* ============================================================
   FORMS (Shared)
   ============================================================ */
.sf-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.sf-input:focus {
  border-color: var(--color-gold);
  outline: none;
  background: var(--color-bg-primary);
}

.sf-input.is-invalid {
  border-color: var(--color-error) !important;
}

.sf-input.is-valid {
  border-color: var(--color-success) !important;
}

select.sf-input {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
}

textarea.sf-input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.sf-label {
  color: var(--color-text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}

.sf-checkout-radio input[type="radio"] {
  accent-color: var(--color-gold);
}

.sf-btn-primary {
  width: 100%;
  height: 50px;
  background: var(--color-gold);
  color: #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  transition: var(--transition);
  -webkit-appearance: none;
}

.sf-btn-primary:hover {
  background: var(--color-gold-light);
}


/* ============================================================
   AUTH
   ============================================================ */
.sf-auth-card {
  max-width: 420px;
  margin: 60px auto;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.sf-auth-card .logo {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 32px;
  font-size: 24px;
  display: block;
}

.sf-auth-link {
  color: var(--color-text-muted);
  font-size: 13px;
  text-align: center;
  display: block;
  margin-top: 16px;
}

.sf-auth-link a {
  color: var(--color-gold-dark);
  font-weight: 500;
}

.sf-auth-link a:hover {
  color: var(--color-gold);
}


/* ============================================================
   ACCOUNT
   ============================================================ */
.sf-account-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .sf-account-layout {
    grid-template-columns: 240px 1fr;
  }
}

.sf-sidebar {
  background: var(--color-bg-surface);
  border-right: 1px solid var(--color-border-gold);
  padding: 24px 0;
}

.sf-sidebar-link {
  display: block;
  padding: 12px 20px;
  color: var(--color-text-secondary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.sf-sidebar-link:hover {
  color: var(--color-gold);
  background: rgba(201, 150, 58, 0.05);
}

.sf-sidebar-link.active {
  color: var(--color-gold-dark);
  font-weight: 600;
  border-left: 3px solid var(--color-gold);
  padding-left: 17px;
}

.sf-account-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}

.sf-account-content {
  padding: 32px;
  min-height: 400px;
}

@media (max-width: 767px) {
  .sf-account-content {
    padding: 16px;
  }
}

/* Badges */
.sf-badge {
  padding: 4px 10px;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-block;
}

.sf-badge.processing,
.sf-badge.confirmed,
.sf-badge.pending {
  background: rgba(201, 150, 58, 0.12);
  color: var(--color-gold-dark);
}

.sf-badge.shipped {
  background: #DBEAFE;
  color: #1E3A8A;
}

.sf-badge.delivered {
  background: #D1FAE5;
  color: #064E3B;
}

.sf-badge.cancelled {
  background: #FEE2E2;
  color: #991B1B;
}

.sf-badge.refunded {
  background: rgba(80, 80, 80, 0.15);
  color: var(--color-text-secondary);
}


/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
#sf-toast-container {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

@media (max-width: 767px) {
  #sf-toast-container {
    top: auto;
    bottom: calc(var(--sf-bottom-nav-h) + 8px);
    right: 12px;
    left: 12px;
    align-items: stretch;
  }
}

.sf-toast {
  min-width: 300px;
  max-width: 420px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-toast::before {
  font-family: 'bootstrap-icons';
  font-size: 16px;
  flex-shrink: 0;
}

.sf-toast-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sf-toast-success {
  background: #059669;
  border-left: 4px solid #34D399;
}

.sf-toast-success::before {
  content: '\F26A';
}

.sf-toast-error {
  background: #DC2626;
  border-left: 4px solid #F87171;
}

.sf-toast-error::before {
  content: '\F333';
}

.sf-toast-info {
  background: var(--color-dark);
  border-left: 4px solid var(--color-gold);
}

.sf-toast-info::before {
  content: '\F431';
  color: var(--color-gold);
}


/* ============================================================
   PAGINATION
   ============================================================ */
.sf-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.sf-page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sf-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.sf-page-link:hover {
  color: var(--color-gold-dark);
  border-color: var(--color-gold);
  background: var(--color-gold-muted);
}

.sf-page-link.sf-page-active {
  background: var(--color-dark);
  color: #FFFFFF;
  border-color: var(--color-dark);
  font-weight: 600;
  cursor: default;
}

.sf-page-link.sf-page-disabled {
  color: var(--color-text-muted);
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.sf-page-link.sf-page-dots {
  border: none;
  background: none;
  min-width: 24px;
  padding: 0;
  cursor: default;
  color: var(--color-text-muted);
}

@media (max-width: 480px) {
  .sf-page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 10px;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.sf-footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-gold);
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.6);
}

.sf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 480px) and (max-width: 1023px) {
  .sf-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 479px) {
  .sf-footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.sf-footer .brand {
  color: var(--color-gold);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.sf-footer .tagline {
  color: var(--color-text-muted);
  font-size: 13px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.sf-footer .social-icons a {
  color: var(--color-text-muted);
  font-size: 18px;
  margin-right: 12px;
  transition: var(--transition);
}

.sf-footer .social-icons a:hover {
  color: var(--color-gold);
}

.sf-footer h4 {
  color: #FFFFFF;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.sf-footer .links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.sf-footer .links a:hover {
  color: var(--color-gold-light);
}

.sf-footer-trust {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.sf-footer-trust span {
  color: var(--color-text-muted);
  font-size: 12px;
}

.sf-footer-copy {
  color: var(--color-text-muted);
  font-size: 11px;
  text-align: center;
  margin-top: 24px;
}

/* Footer mobile accordion */
@media (max-width: 479px) {
  .sf-footer-grid>div+div {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .sf-footer-col-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 0;
    cursor: pointer;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
  }

  .sf-footer-col-toggle i {
    transition: transform 0.3s ease;
    color: var(--color-gold);
  }

  .sf-footer-col-toggle.open i {
    transform: rotate(180deg);
  }

  .sf-footer-col-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .sf-footer-col-links.open {
    max-height: 300px;
  }
}


/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */
.sf-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  height: var(--sf-bottom-nav-h);
  /* iOS safe area */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.sf-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.sf-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  color: var(--color-text-muted);
  font-size: 10px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.sf-bottom-nav-item i {
  font-size: 20px;
}

.sf-bottom-nav-item.active,
.sf-bottom-nav-item:hover {
  color: var(--color-gold-dark);
}

.sf-bottom-nav-item .sf-bnav-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 18px);
  background: var(--color-gold);
  color: #0A0A0A;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 768px) {
  .sf-bottom-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* Body padding — only the bottom nav height, nothing extra */
  body {
    padding-bottom: var(--sf-bottom-nav-h);
  }
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.sf-animate {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sf-animate.sf-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child elements */
.sf-animate-delay-1 {
  transition-delay: 0.1s;
}

.sf-animate-delay-2 {
  transition-delay: 0.2s;
}

.sf-animate-delay-3 {
  transition-delay: 0.3s;
}


/* ============================================================
   SECTION BACKGROUND HELPERS
   (Names now match their actual colour)
   ============================================================ */
.sf-section-white {
  background: var(--color-bg-primary) !important;
}

/* Pure White */
.sf-section-cream {
  background: var(--color-bg-surface) !important;
}

/* Off-White / Cream */
.sf-section-dark {
  background: var(--color-bg-dark) !important;
}

/* Black */


/* ============================================================
   MISC COMPONENTS
   ============================================================ */

/* Spotlight / Featured product card */
.sf-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .sf-spotlight-grid {
    grid-template-columns: 1fr;
  }
}

.sf-spotlight-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  transition: var(--transition);
}

.sf-spotlight-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.sf-spotlight-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.sf-spotlight-body {
  flex: 1;
}

.sf-spotlight-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.sf-spotlight-tag {
  font-size: 11px;
  color: var(--color-gold-dark);
  margin-bottom: 10px;
  display: block;
}

.sf-spotlight-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 14px;
  display: block;
}

.sf-spotlight-btn {
  display: inline-block;
  background: var(--color-dark);
  color: #FFFFFF;
  padding: 9px 22px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.sf-spotlight-btn:hover {
  background: var(--color-gold);
  color: #0A0A0A;
}

/* Newsletter */
.sf-newsletter {
  background: var(--color-bg-dark);
  padding: 56px 0;
  text-align: center;
}

.sf-newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.sf-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.sf-newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}

.sf-newsletter-input {
  flex: 1;
  padding: 13px 18px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  transition: var(--transition);
}

.sf-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.sf-newsletter-input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.12);
}

.sf-newsletter-btn {
  background: var(--color-gold);
  color: #0A0A0A;
  border: none;
  padding: 13px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition);
  -webkit-appearance: none;
}

.sf-newsletter-btn:hover {
  background: var(--color-gold-light);
}

/* SF Input option fix */
.sf-input option {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

/* Gold link contrast fix on white */
a.sf-gold-link {
  color: var(--color-gold-dark);
  transition: var(--transition);
}

a.sf-gold-link:hover {
  filter: brightness(1.1);
  text-decoration: underline;
}

/* ============================================================
   CATEGORIES SLIDER (AUTO)
   ============================================================ */
.sf-cat-circle-wrap {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 10px 4px 20px 4px;
  scrollbar-width: none;
}

.sf-cat-circle-wrap::-webkit-scrollbar {
  display: none;
}

.sf-cat-circle-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 90px;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 768px) {
  .sf-cat-circle-item {
    width: 120px;
    scroll-snap-align: center;
  }
}

.sf-cat-circle-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-bg-surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sf-cat-circle-item:hover .sf-cat-circle-img {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.sf-cat-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-cat-circle-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

.sf-cat-circle-item:hover .sf-cat-circle-name {
  color: var(--color-gold);
}

/* ============================================================
   REVIEWS / TESTIMONIALS SLIDER
   ============================================================ */
.sf-review-slider {
  position: relative;
  width: 100%;
}

.sf-review-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 4px 30px;
}

.sf-review-track::-webkit-scrollbar {
  display: none;
}

.sf-review-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .sf-review-slide {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }
}

@media (min-width: 1024px) {
  .sf-review-slide {
    flex: 0 0 30%;
  }
}

@media (min-width: 1200px) {
  .sf-review-slide {
    flex: 0 0 24.5%;
  }
}

.sf-review-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sf-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sf-review-stars {
  color: var(--color-gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.sf-review-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.sf-reviewer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.sf-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  border: 2px solid var(--color-gold-light);
}

.sf-review-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.sf-reviewer-name {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 14px;
}

.sf-reviewer-role {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ============================================================
   DECISION ENGINE - LUXURY & ARCHITECTURE UPGRADES
   ============================================================ */
   
/* Trust Strip Deep Luxury Refinement */
.sf-trust-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  background: linear-gradient(135deg, #111111 0%, #080808 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 24px;
  gap: 32px;
  scrollbar-width: none;
}
.sf-trust-strip::-webkit-scrollbar { display: none; }
.sf-trust-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.sf-trust-item:last-child {
  border-right: none;
  padding-right: 0;
}
.sf-trust-val {
  color: var(--color-gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.sf-trust-label {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Category Grid (3 Banners) */
.sf-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .sf-category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.sf-category-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  text-decoration: none !important;
  background: var(--color-bg-dark);
}
.sf-category-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sf-category-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  pointer-events: none;
}
.sf-category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .sf-category-content { transform: translateY(0); }
  .sf-category-cta { opacity: 1 !important; }
}
.sf-category-banner:hover img {
  transform: scale(1.05);
}
.sf-category-banner:hover .sf-category-content {
  transform: translateY(0);
}
.sf-category-banner h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 4px;
}
.sf-category-cta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sf-category-banner:hover .sf-category-cta {
  opacity: 1;
}

/* Bento Grid (Top Picks) */
.sf-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}
@media (min-width: 768px) {
  .sf-bento-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.sf-bento-item-high {
  grid-column: span 2;
  grid-row: span 2;
}
.sf-bento-item-high .sf-product-card {
  height: 100%;
}
.sf-bento-item-high .sf-product-img-wrap {
  aspect-ratio: 1/1; 
}
.sf-bento-item-medium {
  grid-column: span 1;
  grid-row: span 1;
}

/* Single Problem Hook - Clean Conversion UI */
.sf-card-signal-single {
    font-size: 11px;
    line-height: 1.4;
    color: var(--color-text-secondary);
    
    display: flex;
    align-items: flex-start;
    gap: 6px;

    min-height: 34px; /* fixed alignment */
    margin: 12px 16px 0 16px;
}

.sf-card-signal-single i {
    color: var(--color-success);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sf-card-signal-single span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Funnel Catch CTA */
.sf-funnel-catch {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  margin-top: 24px;
}
.sf-funnel-catch-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--color-gold);
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
}
.sf-funnel-catch h3 {
  color: #fff;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.sf-funnel-catch p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

/* Problem Solution Engine */
.sf-ps-engine {
  display: grid;
  gap: 32px;
}
@media (min-width: 992px) {
  .sf-ps-engine {
    grid-template-columns: 350px 1fr;
    gap: 48px;
    align-items: start;
  }
}
.sf-ps-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.sf-ps-tab {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sf-ps-tab:hover {
  background: var(--color-bg-surface);
}
.sf-ps-tab.active {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.sf-ps-tab.active i {
  color: var(--color-gold);
  transform: translateX(4px);
  transition: transform 0.3s ease;
}
.sf-ps-content {
  display: none;
  animation: sfFadeInUp 0.4s ease forwards;
}
.sf-ps-content.active {
  display: block;
}
.sf-ps-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}
@media (min-width: 768px) {
  .sf-ps-solution-grid {
    grid-template-columns: 2fr 1fr 1fr; /* Custom asymmetric layout for PS Strip */
    gap: 24px;
  }
}
.sf-ps-primary {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .sf-ps-primary {
    grid-column: span 1; /* In 2fr 1fr 1fr array, this takes up the 2fr slot roughly */
  }
}

@keyframes sfFadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
  color: var(--color-gold);
}