/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --off-white: #F9F7F4;       /* Main canvas background */
  --white: #FFFFFF;           /* Cards & sheet backdrops */
  --black: #2B2523;           /* Primary Espresso typography */
  --red: #A3845B;             /* Luxury CTA Accent (Muted Gold) */
  --gold: #A3845B;            /* Muted Gold */
  --gray-50: #FAF9F6;
  --gray-100: #F1EFEA;
  --gray-200: #E3DFDA;        /* Light taupe borders */
  --gray-400: #8E827E;        /* Muted Taupe text */
  --gray-600: #544A47;        /* Softer espresso body */
  --gray-800: #2B2523;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --nav-h: 68px;
  --cat-h: 46px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(43, 37, 35, 0.04);
  --shadow-md: 0 8px 24px rgba(43, 37, 35, 0.06);
  --shadow-lg: 0 16px 40px rgba(43, 37, 35, 0.08);
  --shadow-gold: 0 4px 20px rgba(163, 132, 91, 0.15);
}

/* 🌙 Dark Mode variables */
html[data-theme="dark"] {
  --off-white: #121212;     /* Rich Charcoal background */
  --white: #1A1A1A;         /* Onyx Black cards */
  --black: #F9F8F6;         /* Soft Ivory typography */
  --red: #C5A880;           /* Champagne Gold Accent */
  --gold: #C5A880;          /* Champagne Gold */
  --gray-50: #151112;
  --gray-100: #1F191A;
  --gray-200: #2E2527;      /* Subtle dark rose borders */
  --gray-400: #8E827E;      /* Muted Taupe text */
  --gray-600: #D8D2CE;      /* Soft body text */
  --gray-800: #F9F8F6;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(197, 168, 128, 0.15);
}

/* ─── PAGE LOADER ─────────────────────────────────────────── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
  transition: transform .7s cubic-bezier(.76,0,.24,1);
}
#pageLoader.wl-exit {
  transform: translateY(-100%);
}
#pageLoader.hidden {
  visibility: hidden;
  pointer-events: none;
}
.bb-noanim #pageLoader {
  display: none !important;
}
#dataSpinner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  background: var(--off-white);
  pointer-events: none;
  opacity: 0.95;
}
.ds-ring {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ds-spin .75s linear infinite;
}
@keyframes ds-spin {
  to { transform: rotate(360deg); }
}

.wl-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(163, 132, 91, 0.08) 0%, rgba(249, 247, 244, 0) 70%);
  animation: wlBgPulse 3s ease-in-out infinite;
}
@keyframes wlBgPulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.wl-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(163,132,91, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(163,132,91, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.wl-rings {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(163, 132, 91, 0.2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: wlRingExpand 2.5s ease-out infinite;
}
.wl-ring:nth-child(1) { width: 200px; height: 200px; animation-delay: .4s; }
.wl-ring:nth-child(2) { width: 320px; height: 320px; animation-delay: 1s; border-color: rgba(163, 132, 91, 0.1); }
.wl-ring:nth-child(3) { width: 480px; height: 480px; animation-delay: 1.6s; border-color: rgba(163, 132, 91, 0.05); }
@keyframes wlRingExpand {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.wl-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1;
}
.wl-logo-wrap {
  position: relative;
  animation: wlLogoBurst .9s cubic-bezier(.25, 1, 0.5, 1) both;
}
@keyframes wlLogoBurst {
  0% { opacity: 0; transform: scale(0.9); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
.wl-logo {
  display: block;
  height: 90px;
  width: auto;
  object-fit: contain;
}
.wl-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: wlLineGrow 0.8s ease 0.4s both;
}
@keyframes wlLineGrow {
  0% { width: 0; opacity: 0; }
  100% { width: 240px; opacity: 1; }
}
.wl-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--gray-400);
}
.wl-word {
  display: inline-block;
  opacity: 0;
  animation: wlWordIn .6s cubic-bezier(.25, 1, 0.5, 1) both;
}
.wl-word:nth-child(1) { animation-delay: 0.8s; }
.wl-word:nth-child(2) { animation-delay: 0.9s; color: var(--gold); }
.wl-word:nth-child(3) { animation-delay: 1s; }
.wl-word:nth-child(4) { animation-delay: 1.1s; color: var(--gold); }
.wl-word:nth-child(5) { animation-delay: 1.2s; }
@keyframes wlWordIn {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
input, textarea {
  font-family: inherit;
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 80px 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes underlineExtend {
  from { width: 0; }
  to { width: 100%; }
}
.animate-up {
  animation: fadeUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ─── HEADER / TOP NAVBAR ────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), background var(--transition);
}
#site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.top-nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.logo-img-dark {
  display: none;
}
html[data-theme="dark"] .logo-img-light {
  display: none;
}
html[data-theme="dark"] .logo-img-dark {
  display: block;
}

/* Search Bar */
.search-wrap {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.search-wrap input {
  width: 100%;
  height: 38px;
  padding: 0 40px 0 16px;
  border: 1px solid var(--gray-200);
  border-radius: 0px;
  font-size: 13px;
  color: var(--black);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}
.search-wrap input::placeholder {
  color: var(--gray-400);
}
.search-wrap input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--gold);
}
.search-btn {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: color var(--transition);
}
.search-btn:hover {
  color: var(--gold);
}
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  z-index: 2000;
  max-height: 360px;
  overflow-y: auto;
  padding: 6px 0;
}
.search-dropdown.open { display: block; }
.search-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--transition);
}
.search-drop-item:hover { background: var(--gray-50); }
.search-drop-thumb {
  width: 40px;
  height: 40px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-drop-thumb img { width:100%; height:100%; object-fit:cover; }
.search-drop-info { flex:1; min-width:0; }
.search-drop-brand { font-size:10px; color:var(--gray-400); font-weight:600; letter-spacing:1px; text-transform:uppercase; margin-bottom: 2px; }
.search-drop-name { font-size:13px; font-weight:500; color:var(--black); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.search-drop-price { font-size:14px; font-weight: 500; color:var(--black); flex-shrink:0; }
.search-drop-empty { padding:16px; font-size:13px; color:var(--gray-400); text-align:center; }

/* Right Nav Controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  padding: 4px 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn:hover {
  color: var(--black);
}
.lang-btn.active {
  color: var(--gold);
  font-weight: 700;
}

/* Cart Button */
.cart-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  color: var(--black);
}
.cart-btn:hover {
  color: var(--gold);
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--black);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── CATEGORY NAV ───────────────────────────────────────── */
.cat-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow: visible;
}
.cat-nav-inner {
  display: flex;
  align-items: center;
  height: var(--cat-h);
  gap: 24px;
}
.cat-item {
  position: relative;
}
.cat-link {
  display: flex;
  align-items: center;
  gap: 4px;
  height: var(--cat-h);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color var(--transition);
}
.cat-link:hover, .cat-item:hover .cat-link {
  color: var(--gold);
}
.cat-link svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
}
.cat-item:hover .cat-link svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: all var(--transition);
  z-index: 1001;
}
.cat-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.dropdown a:hover {
  color: var(--gold);
  background: var(--gray-50);
  padding-left: 20px;
}

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--white);
  z-index: 1100;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(43, 37, 35, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1099;
}
.mobile-overlay.open {
  display: block;
}
.mobile-menu .m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu .m-link:hover, .mobile-menu .m-link.active {
  color: var(--gold);
}
.m-sub {
  display: none;
  padding-left: 12px;
  background: var(--gray-50);
}
.m-cat-item.open .m-sub {
  display: block;
}
.m-sub-link {
  display: block;
  padding: 10px 0;
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
}
.mobile-lang {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

/* ─── MARQUEE BANNER ─────────────────────────────────────── */
.marquee-bar {
  background: var(--gold);
  color: var(--white);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
  letter-spacing: 1.5px;
}
.marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
}
.marquee-item {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--off-white);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 600px;
  position: relative;
  z-index: 1;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 0;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 28px;
  word-break: break-word;
  max-width: 100%;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: min(460px, 100%);
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--black);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--black);
  font-weight: 400;
}
.stat-label {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  background: var(--gray-100);
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}
.hero:hover .hero-right img {
  transform: scale(1.05);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ─── PRODUCT SIGNS / GRID ────────────────────────────────── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 2px;
}
.view-all-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.view-all-link:hover {
  color: var(--gold);
}
.view-all-link svg {
  transition: transform var(--transition);
}
.view-all-link:hover svg {
  transform: translateX(4px);
}
[dir="rtl"] .view-all-link:hover svg {
  transform: translateX(-4px);
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.product-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-50);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.04);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 8px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
}
.badge-oos { background: var(--gray-400); }
.badge-hot { background: #E26D5C; }
.badge-new { background: var(--black); }

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-brand {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-flavor {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 16px;
}
.price {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.price-old {
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: line-through;
}
.price-save {
  font-size: 10px;
  font-weight: 600;
  color: #E26D5C;
}

.product-actions {
  display: flex;
  gap: 8px;
}
.btn-cart {
  flex: 1;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--black);
  color: var(--black);
  transition: all var(--transition);
}
.btn-cart:hover {
  background: var(--black);
  color: var(--white);
}
.btn-buy {
  height: 38px;
  width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  color: var(--gray-400);
  transition: all var(--transition);
}
.btn-buy:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.view-all-block {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 1px solid var(--gray-200);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--black);
  transition: all var(--transition);
}
.btn-view-all:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── THE RITUAL ─────────────────────────────────────────── */
.hiw-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.hiw-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.hiw-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}
.hiw-sub {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 48px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.hiw-step {
  text-align: center;
  padding: 0 16px;
}
.hiw-step-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--gold);
  margin-bottom: 24px;
}
.hiw-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-step-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hiw-step-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* ─── FEATURED BANNER ────────────────────────────────────── */
.featured-banner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  margin: 64px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.banner-left {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.banner-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.1;
}
.banner-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.banner-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.banner-right {
  background: var(--gray-100);
  overflow: hidden;
}
.banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── SCROLL PROGRESS & TOP ──────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}
#scrollTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 900;
}
#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.wa-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  z-index: 900;
  transition: transform var(--transition);
}
.wa-btn:hover {
  transform: scale(1.05);
}

/* ─── ADD TO CART MODAL ───────────────────────────────────── */
.atc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 37, 35, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.atc-overlay.open {
  opacity: 1;
  visibility: visible;
}
.atc-modal {
  background: var(--white);
  border: 1px solid var(--gray-200);
  width: 100%;
  max-width: 440px;
  padding: 32px;
  position: relative;
  transform: translateY(12px);
  transition: transform var(--transition);
}
.atc-overlay.open .atc-modal {
  transform: translateY(0);
}
.atc-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}
.atc-close:hover {
  color: var(--black);
}
.atc-modal-img {
  width: 100px;
  height: 100px;
  background: var(--gray-50);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.atc-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.atc-modal-name {
  font-family: var(--font-display);
  font-size: 20px;
  text-align: center;
  color: var(--black);
  margin-bottom: 8px;
}
.atc-modal-price {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.atc-section {
  margin-bottom: 20px;
}
.atc-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.atc-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.atc-option {
  padding: 6px 12px;
  border: 1px solid var(--gray-200);
  font-size: 11px;
  color: var(--black);
  transition: all var(--transition);
}
.atc-option:hover {
  border-color: var(--gold);
}
.atc-option.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.atc-qty-row {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
}
.atc-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background var(--transition);
}
.atc-qty-btn:hover { background: var(--gray-50); }
.atc-qty-val {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.atc-confirm-btn {
  width: 100%;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  transition: all var(--transition);
}
.atc-confirm-btn:hover {
  background: var(--black);
}

/* ─── CART DRAWER ──────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 9995;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(43, 37, 35, 0.3);
  backdrop-filter: blur(4px);
  z-index: 9994;
}
.cart-overlay.open {
  display: block;
}
.cart-drawer-hd {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-drawer-x {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}
.cart-drawer-x:hover {
  color: var(--black);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-row {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.cart-row-img {
  width: 64px;
  height: 64px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-row-info {
  flex: 1;
  min-width: 0;
}
.cart-row-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-row-meta {
  font-size: 10px;
  color: var(--gray-400);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.cart-row-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ciq {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
}
.ciq-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.ciq-val {
  width: 26px;
  text-align: center;
  font-size: 11px;
}
.cart-row-price {
  font-size: 13px;
  font-weight: 600;
}
.cart-row-del {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--gray-400);
  transition: color var(--transition);
}
.cart-row-del:hover {
  color: var(--black);
}

.cart-drawer-ft {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-total-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
}
.cart-total-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.cart-checkout {
  width: 100%;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
}
.cart-checkout:hover {
  background: var(--black);
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-400);
  gap: 16px;
}
.cart-empty-state p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── TOAST ────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 12px 24px;
  box-shadow: var(--shadow-md);
  z-index: 10000;
  transform: translateY(48px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
#toastMsg {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
}

/* ─── RESPONSIVENESS ───────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 24px;
  }
  .hero-right {
    height: 380px;
    justify-content: center;
  }
  .featured-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .banner-right {
    height: 300px;
  }
}

/* Mobile theme btn hidden on desktop */
.mobile-theme-btn {
  display: none;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  #desktopSupplementsBtn, #desktopSearch {
    display: none !important;
  }
  #mobileSearchBtn, .hamburger {
    display: flex !important;
  }
  .mobile-theme-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
  }
  .desktop-theme-btn {
    display: none !important;
  }
  .nav-right .lang-switch {
    display: none !important;
  }
  .top-nav {
    position: relative;
    justify-content: space-between;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .cat-nav {
    display: none;
  }
  .section-pad {
    padding: 60px 0;
  }
  .hero-title {
    font-size: clamp(38px, 8vw, 56px);
  }
  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .featured-banner {
    margin: 40px 0;
  }
  .banner-left {
    padding: 32px 24px;
  }
}
