:root {
  --bg: #0b0b0d;
  --bg2: #141315;
  --card: #17161a;
  --ink: #f7f3ea;
  --muted: #9b988f;
  --flame: #d49a42; /* Luxury Amber Gold */
  --flame-glow: rgba(212, 154, 66, 0.45);
  --flame2: #f0b865;
  --yellow: #f8d070;
  --rose-gold: #e28d75;
  --cream: #f7f3ea;
  --line: rgba(247, 243, 234, 0.1);
  --glass: rgba(16, 15, 17, 0.75);

  /* Gold primary overrides */
  --gold-primary: #d49a42;
  --gold-hover: #dfb746;
  --dark-bg: #0b0b0d;
  --dark-card: #161616;

  /* Header & Nav Bar (Default Dark) */
  --header-bg: #090e0a;
  --header-border: rgba(212, 154, 66, 0.2);
  --header-gradient: linear-gradient(115deg, transparent 65%, rgba(212, 154, 66, 0.15) 75%, rgba(219, 175, 96, 0.25) 85%, rgba(212, 154, 66, 0.05) 100%);
  --header-logo: #ffffff;
  --header-text: #ffffff;
  --header-text-muted: #a0a0a0;
  --header-search-bg: #161616;

  --nav-bg: #000000;
  --nav-border: rgba(212, 154, 66, 0.12);
  --nav-link-color: #d1d5db;

  /* Section backgrounds and overlays */
  --hero-bg-gradient: radial-gradient(circle at 65% 45%, #2a1f14 0%, #15100c 45%, #0b0b0d 90%);
  --hero-overlay-gradient: linear-gradient(180deg, rgba(11, 11, 13, 0.6) 0%, rgba(11, 11, 13, 0.2) 35%, rgba(11, 11, 13, 0.6) 70%, rgba(11, 11, 13, 0.98) 100%);
  --hero-vid-blend: lighten;
  --hero-vid-opacity: 0.45;
  --feast-bg-gradient: radial-gradient(120% 90% at 50% 40%, #1e1710 0%, #0b0b0d 68%);
  --about-bg-gradient: radial-gradient(circle at 75% 50%, #1c150e 0%, #0b0b0d 70%);
  --about-3d-bg-gradient: radial-gradient(circle at 50% 45%, #221a14 0%, #100e12 100%);
  --wide-overlay-gradient: linear-gradient(90deg, rgba(11, 11, 13, 0.94) 0%, rgba(11, 11, 13, 0.5) 60%, rgba(11, 11, 13, 0.15) 100%);
  --lead-color: rgba(247, 243, 234, 0.74);
}

[data-theme="light"] {
  --bg: #fbfbfb;
  --bg2: #f4f6f8;
  --card: #ffffff;
  --ink: #0b0b0d;
  --muted: #64748b;
  --flame: #b47f2c; /* A slightly darker gold for better readability in light mode */
  --flame-glow: rgba(180, 127, 44, 0.2);
  --flame2: #c59b27;
  --yellow: #d9a036;
  --rose-gold: #c25f43;
  --cream: #fbfbfb;
  --line: rgba(11, 11, 13, 0.1);
  --glass: rgba(255, 255, 255, 0.85);

  /* Header & Nav Bar (Light mode) */
  --header-bg: #ffffff;
  --header-border: rgba(197, 155, 39, 0.15);
  --header-gradient: linear-gradient(115deg, transparent 65%, rgba(197, 155, 39, 0.05) 75%, rgba(197, 155, 39, 0.1) 85%, rgba(197, 155, 39, 0.02) 100%);
  --header-logo: #091512;
  --header-text: #091512;
  --header-text-muted: #64748b;
  --header-search-bg: #f1f5f9;

  --nav-bg: #f4f6f8;
  --nav-border: rgba(197, 155, 39, 0.12);
  --nav-link-color: #334155;

  /* Section backgrounds and overlays (Light) */
  --hero-bg-gradient: radial-gradient(circle at 65% 45%, #fbf5eb 0%, #f4e8d5 45%, #fbfbfb 90%);
  --hero-overlay-gradient: linear-gradient(180deg, rgba(251, 251, 251, 0.2) 0%, rgba(251, 251, 251, 0.05) 35%, rgba(251, 251, 251, 0.1) 70%, rgba(251, 251, 251, 0.25) 100%);
  --hero-vid-blend: multiply;
  --hero-vid-opacity: 0.65;
  --feast-bg-gradient: radial-gradient(120% 90% at 50% 40%, #f7ebd9 0%, #fbfbfb 68%);
  --about-bg-gradient: radial-gradient(circle at 75% 50%, #f7ecd6 0%, #fbfbfb 70%);
  --about-3d-bg-gradient: radial-gradient(circle at 50% 45%, #fbead0 0%, #e6d3ba 100%);
  --wide-overlay-gradient: linear-gradient(90deg, rgba(251, 251, 251, 0.96) 0%, rgba(251, 251, 251, 0.6) 60%, rgba(251, 251, 251, 0.18) 100%);
  --lead-color: rgba(11, 11, 13, 0.75);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden !important;
  width: 100% !important;
}

::selection {
  background: var(--flame);
  color: #0b0b0d;
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #0b0b0d;
}

::-webkit-scrollbar-thumb {
  background: #3a2c1a;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--flame);
}

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

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

.display {
  font-family: 'Anton', 'Cinzel Decorative', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.94;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

.label {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--flame);
  font-weight: 700;
}

.flame {
  color: var(--flame);
  background: linear-gradient(135deg, #fce096 0%, #d49a42 50%, #b87b28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yellow {
  color: var(--yellow);
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--ink);
}

.lead {
  color: var(--lead-color, rgba(247, 243, 234, 0.74));
  line-height: 1.7;
  font-size: clamp(15px, 1.25vw, 18px);
}

/* Scroll Animation Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  will-change: transform, opacity;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  will-change: transform, opacity;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  will-change: transform, opacity;
}

.wrap {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 72px);
}

section {
  position: relative;
}

.pad {
  padding-block: clamp(74px, 11vh, 140px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0b0b0d;
  background: linear-gradient(135deg, #ffe08a, #d49a42);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  box-shadow: 0 12px 34px -10px rgba(212, 154, 66, 0.5);
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -10px rgba(212, 154, 66, 0.75);
  filter: brightness(1.08);
}

.btn.dark {
  color: var(--ink);
  background: rgba(247, 243, 234, 0.03);
  border: 2px solid var(--line);
  box-shadow: none;
}

.btn.dark:hover {
  border-color: var(--flame);
  color: var(--flame);
  background: rgba(212, 154, 66, 0.08);
}

.ph {
  background-color: #1a1612;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== SOFI HEALTH-STYLE EXPANDING WHITE CENTER-CURTAIN PRELOADER ===== */
.sofi-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  pointer-events: all;
  background: #09090b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.15s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
  will-change: transform;
}

.sofi-preloader.done {
  transform: translateY(-100%);
  pointer-events: none;
  visibility: hidden;
  transition: transform 1.15s cubic-bezier(0.85, 0, 0.15, 1), visibility 0s 1.2s;
}

.sofi-curtain-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.85);
  clip-path: inset(48% 0 48% 0); /* Starts as a thin middle slit, expands to full height */
  transition: clip-path 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: clip-path;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sofi-pre-inner {
  position: relative;
  width: 100%;
  height: 100%;
  color: #0b0b0d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 54px);
  box-sizing: border-box;
}

.sofi-pre-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 'Space Grotesk', monospace, sans-serif;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.18em;
  color: #555250;
  text-transform: uppercase;
}

.sofi-pre-header .sofi-brand {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 0.12em;
  color: #0b0b0d;
}

.sofi-pre-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 40px;
}

.sofi-text-mask-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1150px;
  text-align: center;
  min-height: clamp(60px, 12vw, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sofi-phrase-line {
  position: relative;
  width: 100%;
}

.sofi-word-item {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(120%);
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 6.8vw, 98px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0b0b0d;
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s ease;
  pointer-events: none;
}

.sofi-word-item.active {
  position: relative;
  top: auto;
  transform: translateY(0);
  opacity: 1;
}

.sofi-word-item.brand-finale {
  color: #b87b28;
  background: linear-gradient(135deg, #d49a42 0%, #a66f1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sofi-pre-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sofi-counter-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  font-family: 'Space Grotesk', monospace, sans-serif;
}

.sofi-counter-num {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #b87b28;
  line-height: 1;
}

.sofi-counter-sub {
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.2em;
  color: #777471;
  text-transform: uppercase;
}

.sofi-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(11, 11, 13, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 99px;
}

.sofi-progress-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  background: linear-gradient(90deg, #d49a42, #f0b865);
  transition: width 0.15s ease-out;
}

/* ===== SCROLL PROGRESS ===== */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #d49a42, #ffe08a, #d49a42);
  z-index: 120;
}

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 2px solid transparent;
}

#nav.solid {
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(20px, 4vw, 48px);
  transition: padding 0.4s;
}

#nav.solid .navbar {
  padding-block: 13px;
}

.brand {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.brand b {
  color: var(--flame);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
}

.navlinks a {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
  white-space: nowrap;
}

.navlinks a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--flame);
  transition: right 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--ink);
}

.navlinks a:hover::after,
.navlinks a.active::after {
  right: 0;
}

.navcta {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b0b0d;
  background: linear-gradient(135deg, #ffe08a, #d49a42);
  padding: 11px 20px;
  border-radius: 6px;
  white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(212, 154, 66, 0.3);
}

.navcta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212, 154, 66, 0.5);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.25s;
}

.burger span:nth-child(1) {
  top: 14px;
}
.burger span:nth-child(2) {
  top: 20.5px;
}
.burger span:nth-child(3) {
  top: 27px;
}

body.menu-open .burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(11, 11, 13, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 0 clamp(28px, 9vw, 80px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
}

body.menu-open .mobile {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile a {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(30px, 8.5vw, 54px);
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.25s;
}

.mobile a:hover,
.mobile a.active {
  color: var(--ink);
}

.mobile a:hover {
  color: var(--flame);
}

.mobile .navcta {
  margin-top: 24px;
  width: fit-content;
  font-size: 15px;
  padding: 15px 28px;
}

@media (max-width: 1100px) {
  .navlinks {
    display: none;
  }
  .burger {
    display: block;
  }
}

/* ===== SITE-WIDE FLOATING 3D MINIATURES ===== */
.gfloats {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.gf {
  position: absolute;
  aspect-ratio: 1;
  opacity: 0.85;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px rgba(212, 154, 66, 0.3));
  will-change: transform;
  transition: opacity 0.3s;
}

.gf .gf-3d-box {
  width: 100%;
  height: 100%;
}

.gf .gf-3d-box canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.gf1 {
  width: clamp(80px, 8vw, 120px);
  top: 10%;
  left: 1.5%;
}
.gf2 {
  width: clamp(70px, 7vw, 100px);
  top: 32%;
  left: 0.5%;
}
.gf3 {
  width: clamp(75px, 7.5vw, 105px);
  top: 60%;
  left: 1.5%;
}
.gf4 {
  width: clamp(75px, 7.5vw, 105px);
  bottom: 6%;
  left: 2%;
}
.gf5 {
  width: clamp(80px, 8vw, 120px);
  top: 14%;
  right: 1.5%;
}
.gf6 {
  width: clamp(70px, 7vw, 100px);
  top: 38%;
  right: 0.5%;
}
.gf7 {
  width: clamp(75px, 7.5vw, 105px);
  top: 66%;
  right: 1.5%;
}
.gf8 {
  width: clamp(75px, 7.5vw, 105px);
  bottom: 5%;
  right: 2%;
}

@media (max-width: 820px) {
  .gf {
    opacity: 0.6;
  }
  .gf2,
  .gf3,
  .gf6,
  .gf7 {
    display: none;
  }
  .gf1,
  .gf5 {
    width: 60px;
  }
  .gf4,
  .gf8 {
    width: 55px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  position: relative;
}

.hero .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--hero-bg-gradient);
}

.herovid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: var(--hero-vid-opacity);
  mix-blend-mode: var(--hero-vid-blend);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 20%;
  right: 10%;
  background: radial-gradient(circle, rgba(212, 154, 66, 0.25) 0%, rgba(212, 154, 66, 0) 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay-gradient);
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1 {
  font-size: clamp(46px, 9vw, 124px);
  line-height: 0.96;
}

.hero .lead {
  margin-top: 20px;
  max-width: 44ch;
}

.hero .row {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Rotating Stamp Badge */
.badge {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  top: 18vh;
  z-index: 2;
  width: clamp(110px, 13vw, 168px);
  height: clamp(110px, 13vw, 168px);
}

.badge .ring {
  animation: spin 16s linear infinite;
  transform-origin: center;
}

.badge .mid {
  fill: #d49a42;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .badge {
    display: none;
  }
}

/* ===== INFINITE MARQUEE ===== */
.marquee {
  background: linear-gradient(90deg, #d49a42 0%, #f0b865 50%, #d49a42 100%);
  color: #0b0b0d;
  overflow: hidden;
  border-block: 2px solid #0b0b0d;
}

.mtrack {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scrollx 28s linear infinite;
}

.mtrack span {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(20px, 2.5vw, 32px);
  padding: 15px 0;
  letter-spacing: 0.04em;
}

.mtrack span i {
  font-style: normal;
  opacity: 0.55;
  padding: 0 28px;
}

@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

/* ===== FLOATING 3D SHOWCASE SECTION ===== */
.feast {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--feast-bg-gradient);
}

.feast .wrap {
  position: relative;
  z-index: 3;
  text-align: center;
}

.feast-copy {
  max-width: 760px;
  margin-inline: auto;
}

.feast h2 {
  font-size: clamp(44px, 8.5vw, 124px);
}

.feast .lead {
  margin: 22px auto 0;
  max-width: 48ch;
}

.feast .row {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.floaty-wrap {
  position: absolute;
  z-index: 2;
  will-change: transform;
}

.floaty-wrap .viewer-3d-box {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  cursor: grab;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 28px rgba(212, 154, 66, 0.25));
}

.floaty-wrap .viewer-3d-box:active {
  cursor: grabbing;
}

.floaty-wrap .viewer-3d-box:hover {
  transform: scale(1.08);
}

.floaty-wrap .viewer-3d-box canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.floaty-wrap .item-tag {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--flame);
  color: #ffe08a;
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0.9;
}

.fw1 {
  width: clamp(170px, 24vw, 320px);
  top: 4%;
  left: 1%;
}
.fw2 {
  width: clamp(150px, 20vw, 280px);
  bottom: 3%;
  left: 4%;
}
.fw3 {
  width: clamp(170px, 23vw, 320px);
  top: 4%;
  right: 1%;
}
.fw4 {
  width: clamp(180px, 24vw, 320px);
  bottom: 2%;
  right: 3%;
}
.fw5 {
  width: clamp(140px, 18vw, 260px);
  top: 42%;
  left: 1%;
}
.fw6 {
  width: clamp(120px, 15vw, 210px);
  right: 42%;
  bottom: 5%;
}
.fw7 {
  width: clamp(130px, 16vw, 235px);
  top: 2%;
  left: 45%;
}

@media (max-width: 820px) {
  .fw1 {
    width: 170px;
    top: 1%;
    left: -4%;
  }
  .fw3 {
    width: 180px;
    top: auto;
    bottom: 1%;
    right: -4%;
  }
  .fw2,
  .fw4,
  .fw5,
  .fw6,
  .fw7 {
    display: none;
  }
}

/* ===== SECTION HEADERS ===== */
.shead h2 {
  font-size: clamp(40px, 7vw, 108px);
}

.shead .label {
  display: inline-block;
  margin-bottom: 10px;
}

.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

@media (max-width: 880px) {
  .twocol {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLL-PINNED 360° 3D SHAMPOO SECTION (#about) ===== */
.about-pinned-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--about-bg-gradient);
  position: relative;
}

.about-twocol {
  align-items: center;
}

.about-content-col {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-step-tracker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.step-dot {
  width: 38px;
  height: 4px;
  border-radius: 99px;
  background: var(--line) !important;
  transition: background 0.35s, transform 0.35s, width 0.35s;
  cursor: pointer;
}

.step-dot.active {
  background: linear-gradient(90deg, #ffe08a, #d49a42);
  width: 60px;
  box-shadow: 0 0 12px rgba(212, 154, 66, 0.6);
}

.about-stage-wrapper {
  position: relative;
  min-height: 360px;
}

.about-stage {
  display: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-stage.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.about-3d-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-3d-container {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--about-3d-bg-gradient);
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 32px rgba(212, 154, 66, 0.25);
  cursor: grab;
}

.about-3d-container:active {
  cursor: grabbing;
}

.about-3d-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.shampoo-orbit-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--flame);
  padding: 8px 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.shampoo-orbit-badge .orbit-angle {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: var(--yellow);
  line-height: 1;
}

.shampoo-orbit-badge .orbit-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.stat-row {
  display: flex;
  gap: 34px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat-row .s .n {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  color: var(--flame);
  line-height: 0.9;
}

.stat-row .s .l {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-transform: uppercase;
}

/* ===== SIGNATURE DYNAMIC PRODUCTS GRID (4 COLUMNS) ===== */
.signature-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 48px !important;
}

@media (max-width: 1200px) {
  .signature-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .signature-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .signature-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .sig-card-img-wrap {
    height: 150px !important;
  }
  .sig-card-content {
    padding: 10px !important;
  }
}

.sig-product-card {
  background: var(--card) !important;
  border: 1px solid rgba(212, 154, 66, 0.12) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s !important;
  position: relative !important;
  min-height: auto !important;
}

.sig-product-card:hover {
  border-color: rgba(212, 154, 66, 0.45) !important;
  box-shadow: 0 12px 36px rgba(212, 154, 66, 0.15) !important;
  transform: translateY(-4px) !important;
}

.sig-card-img-wrap {
  height: 200px !important;
  position: relative !important;
  background: #0d0e10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(212, 154, 66, 0.08) !important;
}

.sig-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.sig-product-card:hover .sig-card-img {
  transform: scale(1.05) !important;
}

/* Wishlist Button */
.sig-wishlist-btn {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 5 !important;
  background: rgba(11, 11, 13, 0.7) !important;
  border: 1px solid rgba(212, 154, 66, 0.2) !important;
  color: #a0a0a0 !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  backdrop-filter: blur(4px) !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}

.sig-wishlist-btn:hover {
  background: rgba(11, 11, 13, 0.9) !important;
  color: var(--flame) !important;
  border-color: var(--flame) !important;
}

.sig-wishlist-btn.active {
  color: #ff4757 !important;
  border-color: #ff4757 !important;
}

/* Badge tags on top-left */
.sig-badge {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  z-index: 5 !important;
  font-size: 8px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
}

.sig-sale-badge {
  background: #1a3a2a !important;
  color: #4ade80 !important;
}

.sig-new-badge {
  background: #1a2b3a !important;
  color: #60a5fa !important;
}

.sig-best-badge {
  background: rgba(212, 154, 66, 0.18) !important;
  color: var(--gold-primary) !important;
  border: 1px solid var(--gold-primary) !important;
}

/* Card Content Area */
.sig-card-content {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-grow: 1 !important;
}

.sig-card-title {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  margin: 0 0 4px !important;
  letter-spacing: 0.5px !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.sig-card-subtitle {
  font-size: 11px !important;
  color: var(--muted) !important;
  margin: 0 0 10px !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Ratings */
.sig-rating-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 12px !important;
}

.sig-stars {
  color: #fbbf24 !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
}

.sig-rating-val {
  font-size: 10px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

/* Price */
.sig-price-row {
  margin-bottom: 16px !important;
}

.sig-price-sale {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin-right: 6px !important;
}

.sig-price-original {
  font-size: 12px !important;
  color: var(--muted) !important;
  text-decoration: line-through !important;
}

/* CTA Row styling */
.sig-actions-row {
  display: flex !important;
  gap: 8px !important;
}

.sig-add-btn {
  flex: 1 !important;
  background: transparent !important;
  color: var(--gold-primary) !important;
  border: 1px solid rgba(212, 154, 66, 0.3) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}

.sig-add-btn:hover {
  background: var(--gold-primary) !important;
  color: #000 !important;
  border-color: var(--gold-primary) !important;
}

.sig-bag-btn {
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(212, 154, 66, 0.15) !important;
  border-radius: 8px !important;
  color: var(--gold-primary) !important;
  text-decoration: none !important;
  font-size: 12px !important;
  transition: background 0.2s, border-color 0.2s !important;
  flex-shrink: 0 !important;
  background: rgba(212, 154, 66, 0.04) !important;
}

.sig-bag-btn:hover {
  background: var(--gold-primary) !important;
  color: #000 !important;
  border-color: var(--gold-primary) !important;
}



/* 3D Loading Pulse */
.model-loading-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #151317;
  color: var(--flame);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  transition: opacity 0.5s;
}

.model-loading-indicator.loaded {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(212, 154, 66, 0.2);
  border-top-color: var(--flame);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ===== TABBED PRODUCT CATALOG ===== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.tab {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 6px;
  border: 2px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: 0.25s;
}

.tab:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.tab.active {
  color: #0b0b0d;
  background: linear-gradient(135deg, #ffe08a, #d49a42);
  border-color: #d49a42;
  box-shadow: 0 4px 18px rgba(212, 154, 66, 0.35);
}

.menulist {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 60px;
}

@media (max-width: 780px) {
  .menulist {
    grid-template-columns: 1fr;
  }
}

.mitem {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 2px solid var(--line);
  transition: transform 0.2s;
}

.mitem:hover {
  transform: translateX(4px);
}

.mitem .nm {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.mitem .tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0b0b0d;
  background: linear-gradient(135deg, #ffe08a, #d49a42);
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.mitem .dot {
  flex: 1;
  border-bottom: 2px dotted rgba(247, 243, 234, 0.18);
  transform: translateY(-5px);
}

.mitem .pr {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--yellow);
  white-space: nowrap;
}

.mitem .ds {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
  text-transform: none;
}

/* ===== EDITORIAL / GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.gcell {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--line);
  position: relative;
  aspect-ratio: 1;
}

.gcell.tall {
  aspect-ratio: 4/5;
}

.gcell.wide {
  aspect-ratio: 16/10;
}

.gcell .ph {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gcell:hover .ph {
  transform: scale(1.1);
}

/* ===== CONSULTATION & FORM ===== */
.reserve {
  background: var(--bg2);
}

.formgrid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 900px) {
  .formgrid {
    grid-template-columns: 1fr;
  }
}

.formcard {
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3.2vw, 36px);
  background: var(--card);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .frow {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-top: 16px;
}

.field:first-child {
  margin-top: 0;
}

.field label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #0d0c0e;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--flame);
  box-shadow: 0 0 16px var(--flame-glow);
}

.field textarea {
  min-height: 84px;
  resize: vertical;
}

.formok {
  margin-top: 16px;
  color: var(--yellow);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: none;
  padding: 12px;
  border-radius: 6px;
  background: rgba(212, 154, 66, 0.12);
  border: 1px solid var(--flame);
}

.resimg {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 2px solid var(--line);
}

.resimg .ph {
  width: 100%;
  height: 100%;
}

/* ===== SCROLL-PINNED 3D UNBOXING RITUAL SECTION (#events) ===== */
.events-pinned-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 25% 50%, #1c150e 0%, #141315 70%);
  position: relative;
}

.events-twocol {
  align-items: center;
}

.events-3d-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.events-3d-container {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: radial-gradient(circle at 50% 45%, #221a14 0%, #100e12 100%);
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 32px rgba(212, 154, 66, 0.25);
  cursor: grab;
}

.events-3d-container:active {
  cursor: grabbing;
}

.events-3d-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.unboxing-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--flame);
  padding: 8px 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.unboxing-badge .unboxing-state {
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 0.05em;
}

.unboxing-badge .unboxing-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.events-content-col {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events-step-tracker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.events-step-dot {
  width: 38px;
  height: 4px;
  border-radius: 99px;
  background: var(--line) !important;
  transition: background 0.35s, transform 0.35s, width 0.35s;
  cursor: pointer;
}

.events-step-dot.active {
  background: linear-gradient(90deg, #ffe08a, #d49a42);
  width: 60px;
  box-shadow: 0 0 12px rgba(212, 154, 66, 0.6);
}

.events-stage-wrapper {
  position: relative;
  min-height: 340px;
}

.events-stage {
  display: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.events-stage.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.events .media {
  aspect-ratio: auto;
  height: clamp(340px, 40vw, 520px);
}

/* ===== DYNAMIC REVIEWS HORIZONTAL MARQUEE ===== */
.reviews-marquee {
  width: 100% !important;
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  padding: 30px 0 !important;
}

.review-marquee-card {
  display: inline-block !important;
  width: 360px !important;
  vertical-align: top !important;
  white-space: normal !important;
  background: var(--card) !important;
  border: 1px solid rgba(212, 154, 66, 0.12) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  margin-right: 24px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
  transition: border-color 0.3s, transform 0.3s !important;
}

.review-marquee-card:hover {
  border-color: rgba(212, 154, 66, 0.45) !important;
  transform: translateY(-2px) !important;
}

.review-marquee-card .stars {
  color: #fbbf24 !important;
  font-size: 13px !important;
  margin-bottom: 12px !important;
  letter-spacing: 2px !important;
}

.review-marquee-card .review-text {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--ink) !important;
  opacity: 0.8 !important;
  margin-bottom: 20px !important;
  min-height: 70px !important;
}

.review-user-info {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.review-user-info .user-avatar {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(212, 154, 66, 0.1) !important;
  border: 1px solid var(--gold-primary) !important;
  color: var(--gold-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

.review-user-info .user-name {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}

.review-user-info .user-subtitle {
  font-size: 10px !important;
  color: var(--muted) !important;
  margin-top: 2px !important;
}

/* ===== LOCATION & CONTACT ===== */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 54px);
  align-items: stretch;
}

@media (max-width: 860px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
}

.loc-info .item {
  padding: 18px 0;
  border-bottom: 2px solid var(--line);
}

.loc-info .item .k {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
}

.loc-info .item .v {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  margin-top: 8px;
}

.map {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--line);
  min-height: 360px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.4) invert(0.92) hue-rotate(180deg) brightness(0.85) contrast(1.1);
}

/* ===== FOOTER ===== */
footer {
  border-top: 2px solid var(--line);
  background: var(--bg2);
}

.foot {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  padding-block: 60px 30px;
}

@media (max-width: 760px) {
  .foot {
    grid-template-columns: 1fr;
  }
}

.foot .brand {
  font-size: 38px;
}

.foot .col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame);
  margin: 0 0 16px;
  font-weight: 700;
}

.foot .col a,
.foot .col p {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 10px;
  transition: color 0.25s;
}

.foot .col a:hover {
  color: var(--ink);
}

.foot .tag {
  color: var(--muted);
  margin-top: 14px;
  max-width: 36ch;
  line-height: 1.6;
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 42px;
  border-top: 2px solid var(--line);
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.foot-bot .soc {
  display: flex;
  gap: 20px;
}

/* ═══════════════════════════════════════════════════════════
   GOLDEN LUXURY HEADER & MOBILE BOTTOM APP BAR OVERRIDES
   ═══════════════════════════════════════════════════════════ */
:root {
    --gold-primary: #d49a42;
    --gold-hover: #dfb746;
    --dark-bg: #0b0b0d;
    --dark-card: #161616;
}

/* 1. Promo Ticker */
.luxury-ticker {
    background: #000000 !important;
    color: var(--gold-primary) !important;
    padding: 8px 0 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(212, 154, 66, 0.15) !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1000 !important;
}

.luxury-ticker .ticker-track {
    display: flex !important;
    gap: 50px !important;
    width: max-content !important;
    animation: luxuryTickerScroll 25s linear infinite !important;
}

@keyframes luxuryTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

.ticker-item i {
    color: var(--gold-primary) !important;
    font-size: 12px !important;
}

/* 2. Main Header */
.luxury-header {
    background: var(--header-bg) !important;
    border-bottom: 1px solid var(--header-border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
}

.header-main-row {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 16px 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
    background: var(--header-bg) var(--header-gradient) !important;
    transition: background 0.3s ease !important;
}

/* Logo */
.luxury-logo {
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    line-height: 1.1 !important;
    flex-shrink: 0 !important;
}

.luxury-logo .logo-main {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--header-logo) !important;
    letter-spacing: 1.5px !important;
    text-shadow: 0 2px 10px rgba(212,154,66,0.15) !important;
    text-transform: uppercase !important;
    transition: color 0.3s ease !important;
}

.luxury-logo .logo-sub {
    font-family: 'Outfit', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: var(--gold-primary) !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    margin-top: 2px !important;
}

/* Search Box */
.luxury-search-box {
    flex: 1 !important;
    max-width: 650px !important;
    position: relative !important;
}

.search-form-lux {
    display: flex !important;
    align-items: center !important;
    background: var(--header-search-bg) !important;
    border: 1px solid rgba(212, 154, 66, 0.3) !important;
    border-radius: 99px !important;
    padding: 8px 18px !important;
    transition: all 0.3s ease !important;
}

.search-form-lux:focus-within {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 12px rgba(212, 154, 66, 0.2) !important;
}

.search-icon-lux {
    color: var(--gold-primary) !important;
    font-size: 16px !important;
    margin-right: 12px !important;
}

.search-form-lux input {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: var(--header-text) !important;
    font-size: 14px !important;
    font-family: 'Outfit', sans-serif !important;
    transition: color 0.3s ease !important;
}

.search-form-lux input::placeholder {
    color: var(--muted) !important;
}

.search-divider {
    width: 1px !important;
    height: 18px !important;
    background: rgba(212, 154, 66, 0.2) !important;
    margin: 0 12px !important;
}

.mic-icon-lux {
    color: var(--gold-primary) !important;
    font-size: 16px !important;
    cursor: pointer !important;
}

.live-search-dropdown-lux {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: var(--card) !important;
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    z-index: 99999 !important;
    display: none;
    max-height: 420px !important;
    overflow-y: auto !important;
    margin-top: 10px !important;
    padding: 8px 0 !important;
    backdrop-filter: blur(10px) !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
}

.live-results-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 0 8px !important;
}

.live-result-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    background: transparent !important;
    transition: background 0.25s ease !important;
    border-bottom: 1px solid var(--line) !important;
}

.live-result-item:last-child {
    border-bottom: none !important;
}

.live-result-item:hover {
    background: rgba(212, 154, 66, 0.08) !important;
}

.live-result-img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    border: 1px solid var(--line) !important;
    background: var(--bg2) !important;
    flex-shrink: 0 !important;
}

.live-result-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    text-align: left !important;
}

.live-result-title {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transition: color 0.3s ease !important;
}

.live-result-cat {
    font-family: 'Outfit', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: var(--gold-primary) !important;
}

.live-result-price {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 2px !important;
    flex-shrink: 0 !important;
    transition: color 0.3s ease !important;
}

.live-old-price {
    font-size: 11px !important;
    color: var(--muted) !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}

.live-no-results {
    padding: 20px !important;
    text-align: center !important;
    color: var(--muted) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
}

/* User Actions */
.luxury-actions {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.lux-action-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    color: var(--header-text) !important;
    transition: color 0.25s ease !important;
}

.lux-action-item i {
    font-size: 20px !important;
    color: var(--header-text) !important;
    transition: transform 0.25s ease, color 0.25s ease !important;
}

.lux-action-item span {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: var(--header-text-muted) !important;
    transition: color 0.25s ease !important;
}

.lux-action-item:hover i {
    transform: translateY(-2px) !important;
    color: var(--gold-primary) !important;
}

.lux-action-item:hover span {
    color: var(--header-text) !important;
}

/* Badge overlay */
.lux-icon-wrap {
    position: relative !important;
    display: inline-block !important;
}

.lux-badge {
    position: absolute !important;
    top: -6px !important;
    right: -10px !important;
    background: var(--gold-primary) !important;
    color: #000000 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    min-width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px !important;
    border: 1px solid #000000 !important;
}

/* Call Pill */
.luxury-call-pill {
    display: none !important;
}

/* 3. Bottom Navigation Bar */
.luxury-nav-bar {
    background: var(--nav-bg) !important;
    border-top: 1px solid var(--nav-border) !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
}

.nav-bar-inner {
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 40px !important;
}

.lux-nav-list {
    display: flex !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: center !important;
}

.lux-nav-item {
    position: relative !important;
    border-left: 1px solid rgba(212, 154, 66, 0.15) !important;
    padding: 10px 4px !important;
    display: flex !important;
    align-items: center !important;
}

.lux-nav-item:last-child {
    border-right: 1px solid rgba(212, 154, 66, 0.15) !important;
}

.lux-nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--nav-link-color, #d1d5db) !important;
    padding: 10px 18px !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
}

.lux-nav-link i {
    color: var(--gold-primary) !important;
    font-size: 14px !important;
}

.lux-nav-item:hover .lux-nav-link {
    color: var(--header-logo, #ffffff) !important;
    background: rgba(212, 154, 66, 0.05) !important;
}

.lux-nav-item.active .lux-nav-link {
    color: var(--header-logo, #ffffff) !important;
    background: var(--header-search-bg, rgba(20, 20, 20, 0.6)) !important;
    border: 1px solid var(--gold-primary) !important;
    box-shadow: 0 0 15px rgba(212, 154, 66, 0.25) !important;
}

/* Gold glow bar underneath the active pill */
.lux-nav-item.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: 2px !important;
    left: 15% !important;
    width: 70% !important;
    height: 3px !important;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent) !important;
    box-shadow: 0 0 8px var(--gold-primary) !important;
    border-radius: 2px !important;
}

/* Dropdown Menu styling */
.lux-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #0b0b0d !important;
    border: 1px solid rgba(212, 154, 66, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    min-width: 220px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 1002 !important;
}

.lux-nav-item:hover .lux-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.lux-dropdown-list {
    list-style: none !important;
    padding: 8px 0 !important;
    margin: 0 !important;
}

.lux-dropdown-list li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #d1d5db !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.lux-dropdown-list li a:hover {
    color: var(--gold-primary) !important;
    background: rgba(212, 154, 66, 0.08) !important;
    padding-left: 24px !important;
}

/* Best Sellers button in navigation bar */
.lux-best-seller-btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: 1px solid var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    padding: 8px 18px !important;
    border-radius: 99px !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 0 8px rgba(212, 154, 66, 0.1) !important;
}

.lux-best-seller-btn:hover {
    background: var(--gold-primary) !important;
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(212, 154, 66, 0.3) !important;
}

.lux-best-seller-btn i {
    font-size: 13px !important;
}

/* 4. Responsive & Mobile app bottom navigation bar styling */
.mobile-app-bottom-bar {
    display: none !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: var(--header-bg) !important;
    border-top: 1px solid var(--header-border) !important;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15) !important;
    z-index: 9999 !important;
    justify-content: space-around !important;
    padding: 8px 0 !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
}

.mobile-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    color: var(--header-text-muted) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    flex: 1 !important;
    transition: all 0.2s ease, color 0.2s ease !important;
}

.mobile-nav-item i {
    font-size: 18px !important;
    color: var(--header-text-muted) !important;
    transition: color 0.2s ease !important;
}

.mobile-nav-item.active {
    color: var(--gold-primary) !important;
    text-shadow: 0 0 8px rgba(212, 154, 66, 0.2) !important;
}

.mobile-nav-item.active i {
    color: var(--gold-primary) !important;
}

.mobile-icon-badge-wrap {

    position: relative !important;
}

.mobile-badge {
    position: absolute !important;
    top: -6px !important;
    right: -8px !important;
    background: var(--gold-primary) !important;
    color: #000000 !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    min-width: 13px !important;
    height: 13px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #000000 !important;
}

/* Media Queries overrides */
@media (max-width: 991px) {
    .luxury-logo .logo-main {
        font-size: 26px !important;
    }
    
    .luxury-actions {
        gap: 16px !important;
    }
    
    .luxury-call-pill {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .luxury-nav-bar {
        display: none !important;
    }
    
    .mobile-app-bottom-bar {
        display: flex !important;
    }
    
    body {
        padding-bottom: 75px !important;
    }
    
    .luxury-actions {
        display: none !important;
    }
    
    .luxury-search-box {
        max-width: 100% !important;
        margin-top: 8px !important;
        order: 3 !important;
        flex-basis: 100% !important;
    }
    
    .header-main-row {
        flex-wrap: wrap !important;
        padding: 12px 16px !important;
        gap: 10px !important;
    }
    
    .luxury-logo {
        flex: 1 !important;
    }
    
    /* Hide old menu components if they trigger */
    nav#nav, .fnp-header {
        display: none !important;
    }
}



/* ==========================================================================
   CURATED HAIR RITUALS BENTO GRID STYLING
   ========================================================================== */

.curated-rituals-section {
    background: var(--bg) !important;
}

.curated-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    margin-bottom: 40px !important;
    border-bottom: 1px solid var(--border-subtle, rgba(212, 154, 66, 0.15)) !important;
    padding-bottom: 20px !important;
}

.curated-title-group .display {
    font-size: clamp(32px, 5vw, 54px) !important;
    margin-top: 8px !important;
    color: var(--ink) !important;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-weight: 800 !important;
}

.curated-subtitle {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
    font-size: 14px !important;
    color: var(--muted) !important;
    margin-top: 8px !important;
}

.curated-all-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--gold-primary) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: transform 0.25s ease !important;
}

.curated-all-btn:hover {
    transform: translateX(4px) !important;
}
/* ============================================================
   BEST SELLERS SECTION
   ============================================================ */
.bs-section {
    padding: 80px 0 60px !important;
    background: var(--bg, #0b0b0d) !important;
    overflow: hidden !important;
}

.bs-header {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    margin-bottom: 40px !important;
}

.bs-title-group .label {
    color: var(--gold-primary, #d49a42) !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.bs-subtitle {
    font-size: 13px !important;
    color: var(--muted) !important;
    margin-top: 8px !important;
    font-weight: 400 !important;
}

.bs-view-all {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--gold-primary, #d49a42) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: gap 0.3s !important;
    white-space: nowrap !important;
    padding-bottom: 4px !important;
}

.bs-view-all:hover {
    gap: 10px !important;
}

/* Scroll wrapper — relative container for arrows */
.bs-scroll-wrap {
    position: relative !important;
}

/* The scrollable track */
.bs-track {
    display: flex !important;
    gap: 20px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding-bottom: 16px !important;
    -ms-overflow-style: none !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(212,154,66,0.3) transparent !important;
    cursor: grab !important;
}

.bs-track:active {
    cursor: grabbing !important;
}

.bs-track::-webkit-scrollbar {
    height: 4px !important;
}

.bs-track::-webkit-scrollbar-track {
    background: transparent !important;
}

.bs-track::-webkit-scrollbar-thumb {
    background: rgba(212,154,66,0.35) !important;
    border-radius: 2px !important;
}

/* Individual Product Card — 3 visible, rest scrollable */
.bs-card {
    flex: 0 0 calc((100% - 40px) / 3) !important;
    width: calc((100% - 40px) / 3) !important;
    min-width: 240px !important;   /* safety for very narrow viewports */
    background: var(--card) !important;
    border: 1px solid rgba(212,154,66,0.12) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    height: 160px !important;      /* fixed height for uniform row */
    gap: 0 !important;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s !important;
}

.bs-card:hover {
    border-color: rgba(212,154,66,0.45) !important;
    box-shadow: 0 12px 36px rgba(212,154,66,0.1) !important;
    transform: translateY(-3px) !important;
}

/* Image panel */
.bs-card-img {
    width: 130px !important;
    min-width: 130px !important;
    height: 100% !important;
    position: relative !important;
    background: #0d0e10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.bs-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}

.bs-card:hover .bs-card-img img {
    transform: scale(1.06) !important;
}

.bs-badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 3 !important;
    background: #1a3a2a !important;
    color: #4ade80 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    padding: 3px 7px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
}

/* Info panel */
.bs-card-info {
    flex: 1 !important;
    padding: 18px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-width: 0 !important;
}

.bs-category {
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    color: var(--gold-primary, #d49a42) !important;
    text-transform: uppercase !important;
}

.bs-name {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
    margin: 4px 0 2px !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bs-desc {
    font-size: 10px !important;
    color: var(--muted) !important;
    margin: 0 0 8px !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bs-price-row {
    margin-bottom: 10px !important;
}

.bs-sale {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin-right: 6px !important;
}

.bs-orig {
    font-size: 11px !important;
    color: var(--muted) !important;
    text-decoration: line-through !important;
}

/* CTA row */
.bs-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.bs-btn {
    flex: 1 !important;
    background: #1a2e1a !important;
    color: #4ade80 !important;
    border: 1px solid rgba(74,222,128,0.25) !important;
    border-radius: 8px !important;
    padding: 7px 10px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: background 0.2s, border-color 0.2s !important;
    white-space: nowrap !important;
}

.bs-btn:hover {
    background: #4ade80 !important;
    color: #000 !important;
}

.bs-cart-btn {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(212,154,66,0.25) !important;
    border-radius: 8px !important;
    color: var(--gold-primary, #d49a42) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: background 0.2s, border-color 0.2s !important;
    flex-shrink: 0 !important;
}

.bs-cart-btn:hover {
    background: var(--gold-primary, #d49a42) !important;
    color: #000 !important;
    border-color: var(--gold-primary, #d49a42) !important;
}

/* Arrow navigation buttons */
.bs-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    background: rgba(11,11,13,0.85) !important;
    border: 1px solid rgba(212,154,66,0.3) !important;
    color: var(--gold-primary, #d49a42) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    backdrop-filter: blur(8px) !important;
    transition: background 0.2s, transform 0.2s !important;
    margin-top: -8px !important; /* offset for scrollbar */
}

.bs-arrow:hover {
    background: var(--gold-primary, #d49a42) !important;
    color: #000 !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.bs-arrow-left {
    left: -20px !important;
}

.bs-arrow-right {
    right: -20px !important;
}

@media (max-width: 1024px) {
    /* Tablet: show 2 cards */
    .bs-card {
        flex: 0 0 calc((100% - 20px) / 2) !important;
        width: calc((100% - 20px) / 2) !important;
    }
}




/* ============================================================
   END BEST SELLERS SECTION
   ============================================================ */

/* Bento Grid */

.curated-bento-grid {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 24px !important;
}

/* Cards Base */
.bento-card {
    border-radius: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: 1px solid rgba(212, 154, 66, 0.18) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bento-card:hover {
    transform: translateY(-4px) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 12px 40px rgba(212, 154, 66, 0.15) !important;
}

/* Column Left (2 Tall Cards) */
.curated-col-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

.tall-card {
    height: 380px !important;
}

/* Card Flip Container */
.bento-flip-card {
    perspective: 1200px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.flip-card-inner {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-style: preserve-3d !important;
}

/* Hover triggers flip — pure CSS, no JS needed */
.bento-flip-card:hover .flip-card-inner {
    transform: rotateX(180deg) !important;
}

/* JS-driven flip (interval carousel still works) */
.bento-flip-card.is-flipped .flip-card-inner {
    transform: rotateX(180deg) !important;
}

/* Front & Back Sides */
.flip-card-front, .flip-card-back {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid rgba(212, 154, 66, 0.18) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4) !important;
    background-color: #0b0b0d !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.flip-card-back {
    transform: rotateX(180deg) !important;
    border-color: rgba(212, 154, 66, 0.5) !important;
    box-shadow: 0 12px 40px rgba(212, 154, 66, 0.2) !important;
}

/* Video inside front card */
.bento-card-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    opacity: 0.85 !important;
}

/* Overlay on both sides */
.flip-card-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.2) 60%, transparent 100%) !important;
    padding: 28px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    text-align: left !important;
}

/* Hover hint label on front */
.flip-hint {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 3 !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: rgba(212, 154, 66, 0.7) !important;
    border: 1px solid rgba(212, 154, 66, 0.3) !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    backdrop-filter: blur(4px) !important;
    background: rgba(0,0,0,0.3) !important;
    transition: opacity 0.3s !important;
}

.bento-flip-card:hover .flip-hint {
    opacity: 0 !important;
}


.card-badge {
    align-self: flex-start !important;
    background: rgba(212, 154, 66, 0.18) !important;
    border: 1px solid var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    margin-bottom: 12px !important;
}

.card-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-size: clamp(24px, 2.5vw, 36px) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.1 !important;
}

.card-desc {
    font-family: 'Outfit', sans-serif !important;
    font-size: 13.5px !important;
    color: #cccccc !important;
    margin: 8px 0 20px 0 !important;
    line-height: 1.5 !important;
}

.bento-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    align-self: flex-start !important;
    background: linear-gradient(135deg, #dfb746 0%, #d49a42 100%) !important;
    color: #000000 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 10px 18px !important;
    border-radius: 99px !important;
    box-shadow: 0 4px 12px rgba(212, 154, 66, 0.3) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.bento-btn:hover {
    transform: translateX(2px) !important;
    box-shadow: 0 6px 16px rgba(212, 154, 66, 0.45) !important;
}

/* Column Right */
.curated-col-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

/* Stacked Wide Banner Cards Row */
.curated-wide-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

.wide-card {
    height: 178px !important;
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s !important;
}

.wide-card-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: var(--wide-overlay-gradient) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 24px 30px !important;
    transition: background 0.3s ease !important;
}

.wide-card-content {
    max-width: 65% !important;
    display: flex !important;
    flex-direction: column !important;
}

.wide-card .card-title {
    color: var(--ink) !important;
}

.wide-card .card-desc {
    color: var(--muted) !important;
}

.bento-btn.dark-btn {
    background: transparent !important;
    border: 1px solid var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    box-shadow: none !important;
}

.bento-btn.dark-btn:hover {
    background: var(--gold-primary) !important;
    color: #000000 !important;
}

/* Side-by-Side Square Cards Row */
.curated-square-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
}

.square-card {
    height: 380px !important;
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
}

/* Zoom on hover using pseudo-element so the border-radius clips correctly */
.square-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: inherit !important;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 0 !important;
}

.square-card:hover::before {
    transform: scale(1.06) !important;
}

.square-card-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%) !important;
    padding: 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
}

.square-card .card-title {
    font-size: 22px !important;
}

.square-card .card-desc {
    font-size: 11px !important;
    margin: 4px 0 10px 0 !important;
}

.bento-btn.square-btn {
    padding: 6px 12px !important;
    font-size: 9px !important;
}

/* Responsive Grid Media Queries */
.bento-card-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
}

@media (max-width: 991px) {
    .curated-bento-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .bs-arrow { display: none !important; }
    .bs-track {
        gap: 12px !important;
    }
    .bs-card {
        flex: 0 0 calc((100% - 12px) / 2) !important;
        width: calc((100% - 12px) / 2) !important;
        flex-direction: column !important;
        height: 250px !important;
    }
    .bs-card-img {
        width: 100% !important;
        height: 130px !important;
        min-height: 130px !important;
    }
    .bs-header { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }
}

@media (max-width: 576px) {
    .wide-card {
        height: 180px !important;
    }
    
    .curated-square-row {
        grid-template-columns: 1fr !important;
    }
}
