:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.12);
  --accent: #ff4a01;
  --accent2: #c73a01;
  --accent-rgb: 255, 74, 1;
  /* Lighter tint of --accent for gradients / highlights (same hue family) */
  --accent-mid: #ff7640;
  --accent-mid-rgb: 255, 118, 64;
  --green: #ff4a01;
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.55);
  --overlay: rgba(0, 0, 0, 0.04);
  --gold-grad: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 45%, #000000 160%);
  /* Orange-band pillar cards: subdued, low-contrast (not bright / popped) */
  --orange-band-card-bg: rgba(0, 0, 0, 0.1);
  --orange-band-card-border: rgba(255, 255, 255, 0.22);
  --orange-band-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --orange-band-icon-bg: rgba(255, 255, 255, 0.12);
  --orange-band-icon-border: rgba(255, 255, 255, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

/* Scrollbar */
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

/* Grain noise overlay fixed on every page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
  animation: grain 0.5s steps(2) infinite;
}

/* Soft animated color wash (Gen Z energy, stays minimal on white) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 50% at 12% 8%, rgba(var(--accent-rgb), 0.09), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 15%, rgba(0, 0, 0, 0.04), transparent 52%);
  animation: meshPulse 22s ease-in-out infinite alternate;
}

main {
  position: relative;
  z-index: 1;
}

@keyframes meshPulse {
  0% {
    opacity: 0.88;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.03) translate(1.2%, -0.8%);
  }
}

@keyframes grain {
  0% {
    transform: translate3d(0, 0, 0);
  }
  20% {
    transform: translate3d(-2px, 1px, 0);
  }
  40% {
    transform: translate3d(2px, -1px, 0);
  }
  60% {
    transform: translate3d(-1px, -2px, 0);
  }
  80% {
    transform: translate3d(2px, 2px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Decorative radial glow blobs */
.glow-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
  animation: blobDrift 16s ease-in-out infinite;
}
.glow-blob.gold {
  background: radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb), 0.35), rgba(255, 255, 255, 0) 62%);
}
.glow-blob.green {
  background: radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb), 0.22), rgba(255, 255, 255, 0) 64%);
  animation-delay: -5s;
}

@keyframes blobDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(3%, -2%) scale(1.05);
  }
}

/* Typography tokens — Syne display + DM Sans UI */
.cinzel {
  font-family: "Syne", system-ui, sans-serif;
}
.cormorant {
  font-family: "Cormorant Garamond", serif;
}

.h-hero {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 10vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.h-section {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  /* ~26px floor on small phones → ~60px max on desktop */
  font-size: clamp(1.625rem, 4vw + 0.85rem, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h-card {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Section eyebrows (Tailwind opacity on var(--accent) is unreliable in CDN builds) */
.label.label-eyebrow-accent {
  color: var(--accent);
}
.label.label-eyebrow-accent-soft {
  color: rgba(var(--accent-rgb), 0.82);
}

.serif-italic-muted {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: "DM Sans", system-ui;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease,
    background 0.35s ease, color 0.35s ease;
  user-select: none;
}
.btn-wide {
  width: 100%;
}
.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background: var(--accent);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}
/* Shine on ::before so it sits under label text (::after would paint on top and hide text). */
.btn-gold::before {
  content: "";
  position: absolute;
  inset: -50px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-gold:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--accent-rgb), 0.28);
}
.btn-gold:hover::before {
  transform: translateX(120%);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.9);
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  z-index: -1;
  background: var(--accent);
  transition: height 0.5s ease;
}
.btn-ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 1);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.btn-ghost:hover::before {
  height: 100%;
}

/* Section list headers: text CTA on sm+, circular next-arrow only on mobile */
.section-header-cta {
  flex-shrink: 0;
}
@media (max-width: 639.98px) {
  .section-header-cta {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0 !important;
    border-radius: 14px !important;
    justify-content: center;
    align-items: center;
  }
  .section-header-cta:hover {
    transform: translateY(-2px);
  }
}

/* Shop picks: Just launched / Best sellers (segmented control) */
.shop-picks-tabs {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
}
.shop-picks-tab {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.shop-picks-tab:hover {
  color: var(--accent);
}
.shop-picks-tab[aria-selected="true"]:hover,
.shop-picks-tab.is-active:hover {
  color: #fff;
}
.shop-picks-tab[aria-selected="true"],
.shop-picks-tab.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.35);
}
.shop-picks-tab:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.45);
  outline-offset: 2px;
}

@media (max-width: 639px) {
  .shop-picks-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .shop-picks-tabs::-webkit-scrollbar {
    display: none;
  }
  .shop-picks-tab {
    flex-shrink: 0;
    padding: 10px 12px;
    font-size: 9.5px;
  }
}

.btn-green {
  background: var(--green);
  border-color: rgba(255, 255, 255, 0.06);
  color: #000000;
}
.btn-green:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--accent-rgb), 0.18), 0 0 0 6px rgba(var(--accent-rgb), 0.08);
}

/* Inputs */
.field {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  outline: none;
  width: 100%;
}
.field:focus {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

/* Announcement marquee */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Hero slider (home) */
.hero-slider {
  overflow: hidden;
}
.hero-slider-viewport {
  position: relative;
  min-height: 92vh;
  width: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.95s cubic-bezier(0.33, 0.12, 0.12, 1),
    transform 0.95s cubic-bezier(0.33, 0.12, 0.12, 1),
    visibility 0.95s;
  transform: translateY(22px) scale(0.992);
  z-index: 0;
  pointer-events: none;
}

/* Full-bleed image slides (no copy) */
.hero-slide--fullimage {
  padding: 0;
}
.hero-slide--fullimage .hero-slide-full {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide--fullimage .hero-slide-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile / tablet: show full banner within the screen */
@media (max-width: 1023px) {
  .hero-slider.hero-slider--mobile-fit {
    display: block;
    overflow: hidden;
    touch-action: pan-y;
    width: 100%;
    background: var(--bg);
  }

  .hero-slider.hero-slider--mobile-fit .glow-blob {
    display: none;
  }

  .hero-slider.hero-slider--mobile-fit .hero-slider-viewport {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
    max-height: calc(100dvh - 7.25rem);
    overflow: hidden;
  }

  .hero-slider.hero-slider--mobile-fit .hero-slide.hero-slide--fullimage {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    min-height: 0;
  }

  .hero-slider.hero-slider--mobile-fit .hero-slide.hero-slide--fullimage.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
  }

  .hero-slider.hero-slider--mobile-fit .hero-slide--fullimage .hero-slide-full {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    min-height: unset;
    overflow: hidden;
  }

  .hero-slider.hero-slider--mobile-fit .hero-slide--fullimage .hero-slide-full-img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: calc(100dvh - 7.25rem);
    object-fit: contain;
    object-position: center top;
  }

  .hero-slider.hero-slider--mobile-fit .hero-dots {
    bottom: 10px;
  }
}

@media (max-width: 639px) {
  .h-hero {
    font-size: clamp(2rem, 10.5vw, 2.85rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }
  .hero-slider .serif-italic-muted {
    font-size: 1.05rem;
    line-height: 1.45;
  }
  .bottle-wrap {
    width: 260px;
    max-width: 72vw;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bottle-img {
    height: min(300px, 38vh);
  }
  .hero-slide-copy .hero-animate-6 {
    display: none;
  }
  .hero-slide .hero-animate-4 {
    flex-wrap: nowrap;
  }
  .hero-slide .hero-animate-4 .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 12px 8px;
    font-size: clamp(10px, 2.9vw, 12px);
    line-height: 1.25;
  }
}

@media (min-width: 640px) {
  .hero-slide .hero-animate-4 .btn {
    flex: 0 1 auto;
    min-width: unset;
    padding: 14px 18px;
    font-size: inherit;
    line-height: inherit;
  }
}

@media (min-width: 1024px) {
  .hero-slider.hero-slider--mobile-fit .hero-slide--fullimage .hero-slide-full {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hero-slider.hero-slider--mobile-fit .hero-slide--fullimage .hero-slide-full-img {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 1024px) {
  .hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 2;
    pointer-events: auto;
  }
}

/* Staggered copy animation when slide is active */
.hero-slide .hero-animate {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition:
    opacity 0.75s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.75s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.65s ease;
}
.hero-slide.is-active .hero-animate {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.hero-slide.is-active .hero-animate-1 {
  transition-delay: 0.06s;
}
.hero-slide.is-active .hero-animate-2 {
  transition-delay: 0.14s;
}
.hero-slide.is-active .hero-animate-3 {
  transition-delay: 0.22s;
}
.hero-slide.is-active .hero-animate-4 {
  transition-delay: 0.3s;
}
.hero-slide.is-active .hero-animate-5 {
  transition-delay: 0.38s;
}
.hero-slide.is-active .hero-animate-6 {
  transition-delay: 0.46s;
}

/* Mobile: display:none breaks transitions on enter — use GPU-friendly keyframes (no blur: costly) */
@keyframes hero-animate-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1023px) {
  .hero-slide .hero-animate {
    transition: none !important;
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    filter: none;
  }
  .hero-slide.is-active .hero-animate {
    animation: hero-animate-in 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-slide.is-active .hero-animate-1 {
    animation-delay: 0.05s;
  }
  .hero-slide.is-active .hero-animate-2 {
    animation-delay: 0.11s;
  }
  .hero-slide.is-active .hero-animate-3 {
    animation-delay: 0.17s;
  }
  .hero-slide.is-active .hero-animate-4 {
    animation-delay: 0.24s;
  }
  .hero-slide.is-active .hero-animate-5 {
    animation-delay: 0.31s;
  }
  .hero-slide.is-active .hero-animate-6 {
    animation-delay: 0.38s;
  }
}

/* Warm bottle variant (slide 2) */
.hero-bottle--warm .hero-bottle-img {
  filter: saturate(1.08) hue-rotate(-8deg) drop-shadow(0 22px 50px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 36px rgba(var(--accent-rgb), 0.12));
}

/* Ornamental vertical arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 56px;
  height: 132px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: rgba(var(--accent-rgb), 0.88);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.45s ease, transform 0.45s ease;
}
.hero-arrow--prev {
  left: clamp(8px, 2.5vw, 28px);
}
.hero-arrow--next {
  right: clamp(8px, 2.5vw, 28px);
}
.hero-arrow-glow {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.2), transparent 68%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.hero-arrow:hover .hero-arrow-glow {
  opacity: 1;
}
.hero-arrow:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-50%) scale(1.04);
}
.hero-arrow:active {
  transform: translateY(-50%) scale(0.98);
}
.hero-arrow-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-arrow-svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.hero-arrow--prev .hero-arrow-svg {
  transform: rotate(-90deg);
}
.hero-arrow--next .hero-arrow-svg {
  transform: rotate(90deg);
}
.hero-arrow:hover .hero-arrow-svg {
  transform: rotate(-90deg) translateY(-3px);
}
.hero-arrow--next:hover .hero-arrow-svg {
  transform: rotate(90deg) translateY(-3px);
}

/* Stroke draw animation on hover */
.hero-arrow-stem {
  stroke-dasharray: 120;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.65s ease;
}
.hero-arrow:hover .hero-arrow-stem {
  stroke-dashoffset: 12;
}
.hero-arrow-head {
  transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
  transform-origin: 28px 12px;
}
.hero-arrow:hover .hero-arrow-head {
  transform: translateY(2px);
}
.hero-arrow-jewel {
  transition: opacity 0.4s ease, transform 0.55s ease;
  transform-origin: 28px 60px;
}
.hero-arrow:hover .hero-arrow-jewel {
  opacity: 1;
  transform: scale(1.15);
}

/* Dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 4vh, 40px);
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}
.hero-dot:hover {
  border-color: rgba(var(--accent-rgb), 0.85);
  transform: scale(1.15);
}
.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.95);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.35);
}

/* Touch / small screens: swipe + dots only (no prev/next chrome) */
@media (max-width: 1023px) {
  .hero-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-slider.hero-slider--mobile-fit .hero-dots {
    bottom: 8px;
    z-index: 11;
  }

  .hero-slider.hero-slider--mobile-fit .hero-slider-viewport,
  .hero-slider.hero-slider--mobile-fit .hero-slide--fullimage .hero-slide-full-img {
    max-height: calc(100dvh - 6.75rem);
  }
}

.hero-slider:focus-visible {
  outline: 1px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.35s ease, visibility 0.35s ease;
    transform: none !important;
  }
  .hero-slide.is-active {
    transform: none;
  }
  .hero-slide .hero-animate {
    filter: none;
    transition: opacity 0.28s ease;
    animation: none !important;
  }
  @media (max-width: 1023px) {
    .hero-slide.is-active .hero-animate {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      animation: none !important;
    }
  }
  .hero-arrow-svg {
    transition: none;
  }
  .hero-arrow-stem,
  .hero-arrow-head,
  .hero-arrow-jewel {
    transition: none !important;
  }
  .hero-bottle-img {
    animation: none !important;
  }
  body::after,
  .announcement-bar,
  .glow-blob {
    animation: none !important;
  }
  .marquee-track {
    animation: none;
  }
  .card-shell:hover {
    transform: none;
  }
  .bottle-ring,
  .scent-dot {
    animation: none !important;
  }
}

/* Products + cards */
.card-shell {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.35s ease, box-shadow 0.4s ease;
}
.card-shell:hover {
  border-color: rgba(var(--accent-rgb), 0.55);
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(var(--accent-rgb), 0.12);
}

/* White cards inside orange expertise band — restore readable body text */
.section-expertise .card-shell {
  color: var(--text);
}

.advantage-card.card-shell {
  overflow: visible;
}
.advantage-card.card-shell:hover {
  transform: translateY(-4px) rotate(0deg);
}
.advantage-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-icon-svg {
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

/* Advantages grid on orange band — muted glass, minimal lift */
.section-bestsellers-lead.section-product-advantages .advantage-card.card-shell {
  background: var(--orange-band-card-bg);
  border: 1px solid var(--orange-band-card-border);
  box-shadow: var(--orange-band-card-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.section-bestsellers-lead.section-product-advantages .advantage-card.card-shell:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px) rotate(0deg);
}
.section-bestsellers-lead.section-product-advantages .advantage-icon {
  color: rgba(255, 255, 255, 0.88) !important;
  background: var(--orange-band-icon-bg) !important;
  border: 1px solid var(--orange-band-icon-border) !important;
  box-shadow: none;
}
.section-bestsellers-lead.section-product-advantages .advantage-card.card-shell:hover .advantage-icon {
  transform: translateY(-1px);
  box-shadow: none;
}
.section-bestsellers-lead.section-product-advantages .advantage-icon .advantage-icon-svg {
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  .section-bestsellers-lead.section-product-advantages .advantage-card.card-shell:hover {
    transform: none;
  }
  .section-bestsellers-lead.section-product-advantages .advantage-card.card-shell:hover .advantage-icon {
    transform: none;
  }
  .section-bestsellers-lead.section-product-advantages .advantage-slider-row {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
}

/* Product advantages: mobile only = horizontal slider, ~1.5 cards per view */
@media (max-width: 639.98px) {
  .section-bestsellers-lead.section-product-advantages .advantage-slider-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
    padding-bottom: 8px;
  }
  .section-bestsellers-lead.section-product-advantages .advantage-slider-row::-webkit-scrollbar {
    display: none;
  }
  .section-bestsellers-lead.section-product-advantages .advantage-slider-row > * {
    flex: 0 0 calc((100% - 1rem) / 1.5);
    min-width: 0;
    scroll-snap-align: start;
  }
}
@media (min-width: 640px) {
  .section-bestsellers-lead.section-product-advantages .advantage-slider-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    overflow-x: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }
  .section-bestsellers-lead.section-product-advantages .advantage-slider-row > * {
    min-width: 0;
  }
}
@media (min-width: 1024px) {
  .section-bestsellers-lead.section-product-advantages .advantage-slider-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.product-thumb {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(255, 255, 255, 0) 60%);
  position: relative;
}
.product-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-thumb:has(> img) {
  background: transparent;
}

.badge {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "DM Sans", system-ui;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(var(--accent-rgb), 0.7);
  color: var(--green);
  background: rgba(var(--accent-rgb), 0.08);
}
.badge.badge-gold {
  border-color: rgba(var(--accent-rgb), 0.45);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.wishlist {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.wishlist:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.8);
  background: rgba(255, 255, 255, 0.72);
}

.add-to-cart-hover {
  z-index: 2;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.card-shell:hover .add-to-cart-hover {
  transform: translateY(0);
  opacity: 1;
}

/* Hero bottle (CSS drawn) */
.bottle-wrap {
  position: relative;
  width: 320px;
  max-width: 48vw;
  height: 380px;
}
.bottle-ring {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  transform: translate(-50%, -50%);
  animation: pulseRing 2.8s ease-in-out infinite;
}
.bottle-ring.r2 {
  width: 260px;
  height: 260px;
  border-color: rgba(var(--accent-rgb), 0.14);
  animation-delay: 0.6s;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.45;
  }
  55% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.18;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.22);
    opacity: 0;
  }
}

.hero-bottle-img {
  position: absolute;
  left: 50%;
  top: 52%;
  width: auto;
  height: min(420px, 58vh);
  max-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.45));
  animation: floatBottle 6s ease-in-out infinite;
}

@keyframes floatBottle {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-14px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

@keyframes floatBottleMobile {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-5px);
  }
}

@media (max-width: 1023px) {
  .hero-bottle-img {
    animation: floatBottleMobile 8s ease-in-out infinite;
  }
}

.scent-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.45);
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.3));
  opacity: 0.9;
  animation: floatDot 3.6s ease-in-out infinite;
}

.scent-dot--green {
  background: rgba(var(--accent-rgb), 0.7);
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.25));
}

.scent-dot--oud {
  background: rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.35));
}

/* Home: offers marquee (orange strip above marketplace) */
.offers-marquee-bar {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.22);
}
.offers-marquee-shine {
  display: none;
}
.offers-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 2.75rem);
  animation: marquee 72s linear infinite;
  white-space: nowrap;
  padding: 13px 0 14px;
}
.offers-marquee-track span {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(10.5px, 2.65vw, 13px);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.offers-marquee-track .offers-sep {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
  font-size: 0.75em;
  letter-spacing: 0;
  text-shadow: none;
}
.offers-marquee-track .offers-code {
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

/* Home: trust marquee + horizontal carousels */
.trust-marquee-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}
.trust-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  padding: 14px 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.trust-marquee-track span {
  opacity: 0.88;
}
.home-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.home-scroll::-webkit-scrollbar {
  display: none;
}
.home-scroll > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}
.home-slider-wrap {
  position: relative;
}
.home-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-slider-nav:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.home-slider-nav--prev {
  left: -6px;
}
.home-slider-nav--next {
  right: -6px;
}
@media (max-width: 768px) {
  .home-slider-nav {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .offers-marquee-track,
  .trust-marquee-track {
    animation: none;
  }
}

@keyframes floatDot {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Nav/footer shared minimal helpers; most layout is Tailwind */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg);
}
.nav-inner {
  background: var(--bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 0;
}
.nav-scrolled .nav-inner {
  background: var(--bg);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.logo-mark {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(var(--accent-rgb), 0.12));
}

@media (max-width: 768px) {
  .logo-mark {
    height: 34px;
  }
}

.nav-link {
  font-size: 13px;
  text-decoration: none;
  color: var(--text);
  opacity: 0.95;
  padding: 10px 0;
  position: relative;
  font-family: "DM Sans", system-ui;
  background: transparent;
  border: none;
}

.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
}

.nav-link-btn {
  background: transparent;
  border: none;
  padding: 10px 0;
  cursor: pointer;
}

/* Desktop: float submenu so opening Shop does not grow the header row */
.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  z-index: 60;
}

.dropdown-menu {
  min-width: 220px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  padding: 10px;
  display: none;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.nav-dropdown.open .dropdown-menu {
  display: grid;
  gap: 6px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.dropdown-item:hover {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 18px 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: "Syne", system-ui, sans-serif;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-panel-inner {
  padding: 0 16px 16px;
  color: var(--muted);
  font-family: "DM Sans", system-ui;
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-panel {
  max-height: 600px;
}

/* Homepage FAQ — premium accordion (pair with .section-expertise on the same element for orange band) */
.faq-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item--premium {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease, border-color 0.35s ease, transform 0.35s ease;
}
.faq-item--premium:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.1);
}
.faq-item--premium.open {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.14);
  transform: translateY(-2px);
}
.faq-btn--premium {
  padding: 1.15rem 1.1rem 1.15rem 1.25rem;
  font-size: 17px;
  line-height: 1.35;
}
.faq-btn--premium .faq-q {
  flex: 1;
  padding-right: 12px;
}
.faq-icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  color: var(--accent);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.faq-item--premium.open .faq-icon-wrap {
  background: var(--accent);
  color: #ffffff;
  border-color: transparent;
}
.faq-chevron {
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.faq-item--premium.open .faq-chevron {
  transform: rotate(180deg);
}
.section-faq-home .faq-item--premium .faq-panel {
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-faq-home .faq-item--premium .faq-panel-inner {
  padding-top: 0;
  padding-bottom: 1.15rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease 0.06s, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-faq-home .faq-item--premium.open .faq-panel-inner {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item--premium.open {
    transform: none;
  }
  .faq-chevron,
  .section-faq-home .faq-item--premium .faq-panel,
  .section-faq-home .faq-item--premium .faq-panel-inner {
    transition-duration: 0.01ms !important;
  }
}

/* Spacing helpers */
.section {
  padding: 72px 0;
}
.section-tight {
  padding: 56px 0;
}

/* Home: “Start with what wins” — orange lead-in only (above best sellers grid) */
.section-bestsellers-lead {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.section-bestsellers-lead::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 11px,
    rgba(255, 255, 255, 0.045) 11px,
    rgba(255, 255, 255, 0.045) 12px
  );
  animation: bestsellersLeadPatternDrift 28s linear infinite;
}
.section-bestsellers-lead::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Ccircle cx='3' cy='3' r='1.15' fill='%23ffffff' fill-opacity='0.22'/%3E%3C/svg%3E");
  background-size: 56px 56px;
  animation: bestsellersLeadDotsShift 22s ease-in-out infinite alternate;
}
@keyframes bestsellersLeadPatternDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-32px, 18px, 0);
  }
}
@keyframes bestsellersLeadDotsShift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 56px 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-bestsellers-lead::before,
  .section-bestsellers-lead::after {
    animation: none;
  }
  .section-bestsellers-lead::after {
    background-position: 0 0;
  }
}
/* Glass cards: horizontal snap on small screens, grid on md+ */
.bestsellers-lead__tiles {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}
.bestsellers-lead__tiles::-webkit-scrollbar {
  height: 4px;
}
.bestsellers-lead__tiles::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.bestsellers-lead__tile {
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: start;
  min-height: 100%;
}
@media (min-width: 768px) {
  .bestsellers-lead__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }
  .bestsellers-lead__tile {
    flex: none;
    min-width: 0;
  }
}
@media (min-width: 1024px) {
  .bestsellers-lead__tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.1rem;
  }
}
.bestsellers-lead__tile-inner {
  position: relative;
  height: 100%;
  padding: 1.35rem 1.15rem 1.4rem;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.bestsellers-lead__tile-inner:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}
@media (prefers-reduced-motion: reduce) {
  .bestsellers-lead__tile-inner:hover {
    transform: none;
  }
}
.bestsellers-lead__tile-num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}
.bestsellers-lead__tile .bestsellers-lead__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.bestsellers-lead__tile-title {
  display: block;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
}
.bestsellers-lead__tile-text {
  margin: 0.55rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

/* TOTE expertise — orange hero band */
.section-expertise {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.section-expertise::before {
  display: none;
}
.section-expertise::after {
  display: none;
}
.expertise-eyebrow {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.28em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.12);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
}
.expertise-card {
  position: relative;
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.expertise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}
.expertise-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.expertise-btn-solid {
  background: #ffffff !important;
  color: var(--accent) !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.85rem 1.5rem;
}
.expertise-btn-solid:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
.expertise-btn-ghost {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.5rem;
}
.expertise-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
}
@media (prefers-reduced-motion: reduce) {
  .expertise-card:hover {
    transform: none;
  }
}

/* Announcement bar */
.announcement-bar {
  background: var(--accent);
  color: #ffffff;
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.announcement-text {
  font-family: "DM Sans", system-ui;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
}

@media (max-width: 639px) {
  .announcement-bar .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .announcement-bar .announcement-text {
    font-size: clamp(10px, 2.85vw, 11px);
    letter-spacing: 0.09em;
  }
}

/* Navbar controls */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.36);
  color: var(--accent);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  cursor: pointer;
}
.icon-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.9);
  background: rgba(255, 255, 255, 0.7);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--green);
  color: #000000;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.44);
  color: var(--accent);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 10px 0 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg);
}
.mobile-menu.open {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  position: relative;
  overflow: hidden;
}

/* Mobile: hide classic footer — bottom tab bar replaces it (see brand.js) */
@media (max-width: 1023px) {
  .site-footer {
    display: none !important;
  }

  main {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px) + var(--vv-bottom, 0px));
  }

  main.shop-main {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px) + var(--vv-bottom, 0px));
  }
}

/* ——— Mobile app–style bottom tab bar ——— */
.mobile-tab-bar {
  display: none;
}

.mobile-cart-fab {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-tab-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--vv-bottom, 0px);
    z-index: 55;
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    pointer-events: none;
    animation: mobileTabBarEnter 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: bottom;
  }

  .mobile-tab-bar__shell {
    pointer-events: auto;
    position: relative;
    width: 100%;
    border-radius: 14px 14px 0 0;
    padding: 6px 4px 10px;
    background: var(--accent);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
    overflow: hidden;
  }

  .mobile-tab-bar__shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
  }

  .mobile-tab-bar__rail {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 56px;
  }

  .mobile-tab-bar__rail[data-count="5"] .mobile-tab-bar__link {
    padding: 6px 2px;
    gap: 3px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .mobile-tab-bar__rail[data-count="5"] .mobile-tab-bar__link svg {
    width: 20px;
    height: 20px;
  }

  .mobile-tab-bar__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.1;
    text-align: center;
  }

  .mobile-tab-bar__link {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 4px 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s ease, opacity 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-tab-bar__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .mobile-tab-bar__link svg {
    width: 22px;
    height: 22px;
    color: currentColor;
    transition: transform 0.25s ease;
  }

  .mobile-tab-bar__link:not(.is-active) {
    opacity: 1;
  }

  .mobile-tab-bar__link:active .mobile-tab-bar__icon-wrap {
    transform: scale(0.92);
  }

  .mobile-tab-bar__link.is-active {
    color: #ffffff;
  }

  .mobile-tab-bar__link.is-active .mobile-tab-bar__icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
  }

  .mobile-tab-bar__link.is-active svg {
    transform: scale(1.06);
  }

  .mobile-tab-bar__link.is-active .mobile-tab-bar__label {
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-tab-bar__dot {
    display: none;
  }

  .whatsapp-fab {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px) + var(--vv-bottom, 0px)) !important;
    right: 14px !important;
  }

  .mobile-cart-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 14px;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px) + var(--vv-bottom, 0px));
    z-index: 56;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    -webkit-tap-highlight-color: transparent;
    animation: mobileCartFabEnter 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mobile-cart-fab:active {
    transform: scale(0.94);
  }

  .mobile-cart-fab__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    border: 2px solid #fff;
  }
}

@media (min-width: 1024px) {
  .mobile-cart-fab {
    display: none !important;
  }
}

@keyframes mobileCartFabEnter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 1024px) {
  .mobile-tab-bar {
    display: none !important;
  }
}

@keyframes mobileTabBarEnter {
  from {
    opacity: 0;
    transform: translateY(100%) translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-tab-bar {
    animation: none;
  }
}

.footer-top {
  padding: 56px 0 24px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Syne", system-ui, sans-serif;
  color: var(--accent);
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text);
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.9);
}

.mobile-dropdown .dropdown-menu {
  position: static;
  display: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 14px;
}
.mobile-dropdown.open .dropdown-menu {
  display: grid;
  gap: 6px;
}

/* Gradient placeholders (no external images) */
.grad-him {
  background-image: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18) 0%, rgba(var(--accent-rgb), 0.2) 40%, rgba(255, 255, 255, 0) 65%);
}
.grad-her {
  background-image: linear-gradient(135deg, rgba(var(--accent-rgb), 0.22) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(255, 255, 255, 0) 65%);
}
.grad-unisex {
  background-image: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0.12) 50%, rgba(255, 255, 255, 0) 65%);
}
.grad-oud {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(var(--accent-rgb), 0.2) 45%, rgba(255, 255, 255, 0) 65%);
}
.grad-gift {
  background-image: linear-gradient(135deg, rgba(var(--accent-rgb), 0.22) 0%, rgba(var(--accent-rgb), 0.16) 45%, rgba(255, 255, 255, 0) 65%);
}

.bg-grad-1 {
  background-image: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2) 0%, rgba(255, 255, 255, 0) 62%);
}
.bg-grad-2 {
  background-image: linear-gradient(135deg, rgba(var(--accent-rgb), 0.14) 0%, rgba(var(--accent-rgb), 0.18) 40%, rgba(255, 255, 255, 0) 65%);
}
.bg-grad-3 {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.14) 0%, rgba(var(--accent-rgb), 0.16) 45%, rgba(255, 255, 255, 0) 65%);
}
.bg-grad-4 {
  background-image: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(0, 0, 0, 0.14) 45%, rgba(255, 255, 255, 0) 65%);
}

.filter-pill {
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-family: "DM Sans", system-ui;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.filter-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.7);
  color: var(--accent);
}

.filter-pill.is-active {
  color: #000000;
  border-color: rgba(var(--accent-rgb), 0.7);
  background-image: var(--gold-grad);
}

.whatsapp-fab {
  box-shadow: 0 14px 40px rgba(var(--accent-rgb), 0.25);
}

/* Builder selection styling */
.builder-size-card,
.builder-scent-card {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.builder-size-card:hover,
.builder-scent-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.55);
}

.builder-size-card.is-selected,
.builder-scent-card.is-selected {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 18px 50px rgba(var(--accent-rgb), 0.12);
}

.builder-ring {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.builder-scent-card.is-selected .builder-ring {
  opacity: 1;
  transform: scale(1);
  background: rgba(var(--accent-rgb), 0.16);
}

/* Mobile filter drawer (Shop) */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 70;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.filters-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 320px;
  max-width: 90vw;
  transform: translateX(-110%);
  transition: transform 0.35s ease;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid rgba(0, 0, 0, 0.14);
  z-index: 80;
  overflow: auto;
}
.filters-drawer.open {
  transform: translateX(0);
}

/* Orange theme overrides (replaces prior gold/green accents). */
.glow-blob.gold,
.glow-blob.green {
  background: radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb), 0.34), rgba(255, 255, 255, 0) 58%);
}

.badge,
.badge.badge-gold {
  border-color: rgba(var(--accent-rgb), 0.72);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.btn-green {
  background: var(--accent);
  color: #000000;
}

.btn-green:hover {
  box-shadow: 0 16px 40px rgba(var(--accent-rgb), 0.24), 0 0 0 6px rgba(var(--accent-rgb), 0.1);
}

/* Watch & Buy — vertical reels + shoppable modal */
.watch-buy-slider .home-scroll.watch-buy-scroll {
  gap: 0.625rem;
}
@media (min-width: 1024px) {
  .watch-buy-slider .watch-buy-scroll .watch-buy-item {
    flex: 0 0 calc((100% - 5 * 0.625rem) / 6);
    width: calc((100% - 5 * 0.625rem) / 6);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .watch-buy-slider .watch-buy-scroll .watch-buy-item {
    flex: 0 0 calc((100% - 3 * 0.625rem) / 4);
    width: calc((100% - 3 * 0.625rem) / 4);
  }
}
@media (max-width: 767px) {
  .watch-buy-slider .watch-buy-scroll .watch-buy-item {
    flex: 0 0 min(72vw, 220px);
    width: min(72vw, 220px);
  }
  .watch-buy-slider-shell {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.watch-buy-scroll > .watch-buy-item {
  scroll-snap-align: start;
}

.watch-buy-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top, 12px) 12px env(safe-area-inset-bottom, 12px);
}
.watch-buy-modal[hidden] {
  display: none !important;
}
.watch-buy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}
.watch-buy-modal__close {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: 12px;
  z-index: 210;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
}
.watch-buy-modal__mute {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: 58px;
  z-index: 210;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
}
.watch-buy-modal__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(100vw - 24px, 440px);
  height: min(92dvh, 860px);
  display: flex;
  align-items: stretch;
  gap: 0;
}
.watch-buy-modal__track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 4px;
  align-items: stretch;
}
.watch-buy-modal__track::-webkit-scrollbar {
  display: none;
}
.watch-buy-modal__slide {
  flex: 0 0 min(88vw, 380px);
  width: min(88vw, 380px);
  max-width: 100%;
  scroll-snap-align: center;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.watch-buy-modal__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.watch-buy-modal__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.watch-buy-modal__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 6;
  pointer-events: none;
}
.watch-buy-modal__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.08s linear;
}
.watch-buy-modal__overlay-top {
  position: absolute;
  top: 14px;
  left: 12px;
  z-index: 5;
  pointer-events: none;
}
.watch-buy-modal__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #e879a9, #c94b8c);
}
.watch-buy-modal__caption {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  text-align: center;
  z-index: 5;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
  pointer-events: none;
  line-height: 1.35;
}
.watch-buy-modal__side-actions {
  position: absolute;
  right: 8px;
  bottom: 140px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.watch-buy-modal__side-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.watch-buy-modal__side-btn:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: scale(1.04);
}
.watch-buy-modal__side-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.watch-buy-modal__product-wrap {
  position: absolute;
  inset: auto 10px 10px 10px;
  z-index: 8;
  pointer-events: auto;
}
.watch-buy-modal__arrow {
  align-self: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.watch-buy-modal__stage .home-slider-nav--prev {
  margin-right: 4px;
}
.watch-buy-modal__stage .home-slider-nav--next {
  margin-left: 4px;
}
.watch-buy-modal__credit {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 520px) {
  .watch-buy-modal__stage .watch-buy-modal__arrow {
    display: none;
  }
  .watch-buy-modal__mute {
    right: 52px;
  }
}

/* Orange bands — text/stacking (Tailwind CDN injects after brand.css on live; !important wins) */
.section-bestsellers-lead > .container.orange-band-inner {
  position: relative;
  z-index: 1;
}
.section-bestsellers-lead .product-advantages-title,
.section-bestsellers-lead .bestsellers-lead-title {
  color: #ffffff !important;
}
.section-bestsellers-lead .product-advantages-sub,
.section-bestsellers-lead .bestsellers-lead-sub {
  color: rgba(255, 255, 255, 0.9) !important;
}
.section-bestsellers-lead > .container > .label.expertise-eyebrow {
  color: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}
.section-bestsellers-lead.section-product-advantages > .container > .label.expertise-eyebrow {
  font-size: 11px;
  padding: 7px 16px;
}
.section-bestsellers-lead.section-product-advantages .advantage-card .cinzel {
  color: #ffffff !important;
}
.section-bestsellers-lead.section-product-advantages .advantage-card p {
  color: rgba(255, 255, 255, 0.88) !important;
}
.section-bestsellers-lead .bestsellers-lead__tile-title {
  color: #ffffff !important;
}
.section-bestsellers-lead .bestsellers-lead__tile-text {
  color: rgba(255, 255, 255, 0.88) !important;
}

/* Auth pages — branded login / register */
.auth-header .nav-inner {
  padding: 0;
}

.auth-section.section-tight {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.auth-form-card .field {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
}

.auth-side-panel .h-section {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-top: 0.75rem;
}

@media (max-width: 1023px) {
  .auth-section.section-tight {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .auth-section .h-section {
    font-size: clamp(1.25rem, 5vw, 1.625rem);
  }

  .auth-section .serif-italic-muted {
    font-size: 1rem;
  }

  .auth-form-card {
    padding: 1.25rem !important;
  }

  .auth-footer {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }
}

/* ——— Mobile app density (compact spacing + type) ——— */
@media (max-width: 1023px) {
  main.shop-main .container.mx-auto {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  main.shop-main .section-tight {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  main.shop-main .section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  main.shop-main .h-section {
    font-size: clamp(1.25rem, 4.5vw, 1.625rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
  }

  main.shop-main .serif-italic-muted {
    font-size: 1rem;
    line-height: 1.4;
  }

  main.shop-main .label {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  main.shop-main .h-card {
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  main.shop-main .mt-10 {
    margin-top: 1.25rem;
  }

  main.shop-main .mt-12 {
    margin-top: 1.5rem;
  }

  main.shop-main .mt-6 {
    margin-top: 0.875rem;
  }

  main.shop-main .mt-3 {
    margin-top: 0.5rem;
  }

  main.shop-main .py-20 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  main.shop-main .py-12 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  main.shop-main .py-10 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  main.shop-main .gap-5 {
    gap: 0.75rem;
  }

  main.shop-main .gap-4 {
    gap: 0.625rem;
  }

  main.shop-main .card-shell {
    border-radius: 16px;
  }

  main.shop-main .card-shell .p-4 {
    padding: 0.625rem;
  }

  main.shop-main .card-shell .cinzel.text-lg {
    font-size: 0.9375rem;
    line-height: 1.25;
  }

  main.shop-main .card-shell .text-sm {
    font-size: 0.75rem;
  }

  main.shop-main .advantage-card.card-shell {
    padding: 0.75rem !important;
  }

  main.shop-main .advantage-card .cinzel {
    font-size: 0.9375rem !important;
  }

  main.shop-main .advantage-card p {
    font-size: 0.8125rem !important;
    line-height: 1.45;
  }

  main.shop-main .product-advantages-sub,
  main.shop-main .bestsellers-lead-sub {
    font-size: 1rem !important;
  }

  main.shop-main .badge {
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    font-size: 9px;
  }

  main.shop-main .btn {
    padding: 10px 14px;
    font-size: 11px;
  }

  main.shop-main .section-bestsellers-lead.section-product-advantages > .container > .label.expertise-eyebrow {
    font-size: 9px;
    padding: 5px 10px;
  }

  main.shop-main .watch-buy-slider-shell {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
    margin-top: 1rem !important;
  }

  main.shop-main .expertise-card {
    padding: 0.875rem;
  }

  main.shop-main .expertise-card h3 {
    font-size: 0.75rem;
    margin-top: 0.75rem;
  }

  main.shop-main .expertise-card p {
    font-size: 0.75rem;
    margin-top: 0.375rem;
  }

  main.shop-main .faq-accordion-stack {
    gap: 0.5rem;
  }

  main.shop-main .faq-accordion-stack .faq-item--premium {
    border-radius: 14px;
  }

  main.shop-main .faq-btn--premium {
    font-size: 0.8125rem;
    padding: 0.75rem 0.875rem;
  }

  main.shop-main .faq-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  main.shop-main .faq-item--premium .faq-panel-inner {
    font-size: 0.8125rem;
  }

  main.shop-main .section-faq-home .faq-item--premium .faq-panel-inner {
    padding: 0 0.875rem 0.75rem;
  }

  main.shop-main .card-shell.p-4,
  main.shop-main .card-shell.p-5,
  main.shop-main .card-shell.p-8 {
    padding: 0.75rem;
  }

  main.shop-main .section-faq-home .cormorant.text-lg {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
  }

  main.shop-main .section-expertise .cormorant.text-lg {
    font-size: 0.9375rem;
  }

  .nav-wrap .nav-inner {
    padding: 8px 0;
  }

  .nav-wrap .container.mx-auto {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nav-wrap .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .nav-wrap .logo-mark {
    height: 30px;
  }

  .nav-wrap .mobile-menu {
    padding-bottom: 0.5rem;
  }

  .nav-wrap .mobile-links {
    gap: 0;
  }

  .nav-wrap .mobile-links .nav-link {
    font-size: 12px;
    padding: 10px 0.25rem;
  }

  .announcement-bar .announcement-text {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  main.shop-main .card-shell:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 639px) {
  main.shop-main .grid.grid-cols-2 {
    gap: 0.5rem;
  }

  main.shop-main .section-tight {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  main.shop-main .h-section {
    font-size: 1.2rem;
  }

  main.shop-main .shop-picks-tab {
    padding: 8px 10px;
    font-size: 9px;
  }
}
