/* ============================================================
   SC Fragrance — Light Cream Theme
   Direction: Warm beige/cream, soft luxury, minimal
   Palette: Cream background + muted serif text + green/black CTAs
   Fonts: Playfair Display (display) / Inter (body)
   Animations: CSS-only, no external JS libraries
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Core palette — warm cream system */
  --cream: #e8ddd0;
  --cream-light: #f0e8dc;
  --cream-dark: #ddd0c0;
  --cream-card: #f2ebe1;
  --cream-elevated: #f5efe6;
  --white: #ffffff;
  --warm-white: #faf6f1;

  /* Text */
  --text-dark: #2c2420;
  --text-medium: #5a4e44;
  --text-light: #8a7e74;
  --text-muted: #a89e94;
  --text-hero: rgba(44, 36, 32, 0.18);

  /* Accent */
  --gold: #b8a080;
  --gold-dark: #9a8568;

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebe5d;

  /* Semantic */
  --bg: var(--cream);
  --bg-card: var(--cream-card);
  --bg-elevated: var(--cream-elevated);
  --text-primary: var(--text-dark);
  --text-secondary: var(--text-medium);
  --accent: var(--gold);
  --border: rgba(44, 36, 32, 0.08);
  --border-hover: rgba(44, 36, 32, 0.15);

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 16px 48px rgba(44, 36, 32, 0.1);

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Layout */
  --max-width: 1280px;
  --content-width: min(var(--max-width), calc(100vw - 3rem));
  --header-height: 4.75rem;

  /* Z-index scale */
  --z-base: 1;
  --z-raised: 10;
  --z-dropdown: 50;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-drawer: 210;
  --z-toast: 220;
  --z-skip: 9999;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

/* --- LENIS SMOOTH SCROLL --- */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

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

html {
  /* scroll-behavior handled by Lenis JS */
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  color: var(--text-primary);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: var(--z-skip);
  padding: 0.75rem 1.5rem;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  transition: top 200ms ease;
}

.skip-link:focus {
  top: 1rem;
}

/* --- FOCUS VISIBLE --- */
:focus-visible {
  outline: 2px solid var(--text-medium);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.eyebrow,
.section-label,
.card-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--text-dark);
  color: var(--cream-light);
  text-align: center;
  padding: 0.6rem 1.2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  min-height: 2.18rem;
  perspective: 200px;
  transition: transform 0.3s ease;
  will-change: transform;
}
.announcement-bar.hide-up {
  transform: translateY(-100%);
}

/* --- Cube-flip ticker (3D rotating faces) --- */
.announcement-cube {
  position: relative;
  width: 100%;
  height: 2.18rem;
  transform-style: preserve-3d;
  animation: cube-flip 6s ease-in-out infinite;
}

.announcement-cube--wide {
  max-width: min(100%, 44rem);
  margin: 0 auto;
}

.announcement-cube__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  white-space: nowrap;
  padding: 0 0.9rem;
  font-size: clamp(0.52rem, 1.6vw, 0.68rem);
  line-height: 1.2;
}

.announcement-cube__face--front {
  transform: rotateX(0deg) translateZ(1rem);
}

.announcement-cube__face--back {
  transform: rotateX(-90deg) translateZ(1rem);
}

@keyframes cube-flip {
  0%, 40%   { transform: rotateX(0deg); }
  50%, 90%  { transform: rotateX(90deg); }
  100%      { transform: rotateX(360deg); }
}

/* ============================================================
   HEADER — drinkpouch-style split pill nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  transition: transform 0.3s ease;
  will-change: transform;
}
.site-header.hide-up {
  transform: translateY(calc(-1 * var(--anno-bar-height, 0px)));
}

.site-header__masthead {
  padding: 0.75rem 1.5rem;
  position: relative;
}

/* Frosted background — invisible until scrolled */
.site-header__masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s ease-out, backdrop-filter 0.4s ease-out, -webkit-backdrop-filter 0.4s ease-out;
  z-index: -1;
}

.site-header.scrolled .site-header__masthead::before {
  background: rgba(232, 221, 208, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* Dark backdrop overlay when submenu is open */
.site-header__masthead::after {
  content: "";
  position: absolute;
  inset: 0;
  height: calc(100% + 100vh);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
  z-index: -1;
}

.site-header__masthead:has(.header-submenu.is-open) ~ *,
.site-header:has(.header-submenu.is-open) .site-header__masthead::after {
  /* Activate overlay when submenu is open */
}

.site-header:has(.header-submenu.is-open) .site-header__masthead::after {
  opacity: 1;
}

.site-header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.15rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header__left {
  display: flex;
  align-items: center;
}

.site-header__middle {
  display: flex;
  justify-content: center;
}

.site-header__misc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* Frosted glass pill containers */
.header-list {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: var(--radius-pill);
  padding: 0.28rem;
  box-shadow: 0 2px 12px rgba(44, 36, 32, 0.07);
  list-style: none;
  gap: 0;
  transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
  border: 1px solid rgba(44, 36, 32, 0.04);
}

.header-list__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 2.2rem;
  padding: 0.5rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  line-height: 1;
}

.header-list__link:hover,
.header-list__link[aria-current="page"] {
  background: rgba(44, 36, 32, 0.085);
  color: #17120f;
}

.header-list__link:hover {
  transform: translateY(-1px);
}

.header-list__link:focus-visible {
  background: rgba(44, 36, 32, 0.09);
  box-shadow: 0 0 0 3px rgba(184, 160, 128, 0.22);
}

.header-list__link[aria-current="page"] {
  box-shadow: inset 0 0 0 1px rgba(44, 36, 32, 0.08);
}

/* Animated pulse dot for language selector */
.header-pulse-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.75;
}

.brand img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 2px 12px rgba(44, 36, 32, 0.07);
  transition: background var(--duration-fast) ease;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
}

.mobile-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--duration-normal) ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ============================================================
   BUTTONS — green WhatsApp pill + dark TikTok pill
   ============================================================ */
.btn,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease);
  border: 1px solid transparent;
}

.btn-primary,
.header-cta {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.btn-dark:hover {
  background: #1a1410;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-medium);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  color: var(--text-dark);
  transform: none;
}

.btn-ghost::after {
  content: "\2192";
  transition: transform var(--duration-fast) ease;
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: var(--content-width);
  margin: 0 auto;
}

main {
  padding-top: calc(var(--header-height) + 0.75rem);
}

.section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
}

.section-header p {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream-dark);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "\2726";
  margin-left: 2rem;
  color: var(--gold);
  opacity: 0.5;
}

/* ============================================================
   CATEGORY SECTIONS (Catalogue page)
   ============================================================ */
.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.category-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

.category-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.category-count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-hero-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.story-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.story-hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text-hero);
}

.story-hero-text h1 span {
  color: var(--text-hero);
}

.story-hero-text p {
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-hero-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.story-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.story-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.story-body p {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.story-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
}

.sidebar-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.sidebar-card p {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.cta-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.cta-section p {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trust-item {
  padding: 1.25rem 1rem;
  background: var(--warm-white);
  text-align: center;
}

.trust-item .trust-value {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-item .trust-label {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   CATALOGUE VIDEO HERO
   ============================================================ */
.catalogue-hero-video {
  position: relative;
  height: 55svh;
  min-height: 340px;
  overflow: hidden;
  background: var(--text-dark);
  color: var(--white);
}

.catalogue-hero-video__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  transform-origin: center;
  opacity: 0.55;
}

.catalogue-hero-video__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2.75rem;
  padding-top: calc(var(--header-height) + 1.5rem);
  gap: 0.5rem;
}

.catalogue-hero-video__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: "Inter", sans-serif;
}

.catalogue-hero-video__heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.catalogue-hero-video__sub {
  font-size: 0.88rem;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .catalogue-hero-video {
    height: 45svh;
  }
}

/* ============================================================
   CATALOGUE PAGE HERO (stats + filter)
   ============================================================ */
.catalogue-hero {
  padding: clamp(2rem, 4vw, 3rem) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
}

.catalogue-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}

.catalogue-hero p {
  margin-top: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.catalogue-stats {
  display: flex;
  gap: 2.5rem;
  text-align: right;
}

.catalogue-stat-value {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.catalogue-stat-label {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   FILTER / JUMP NAV
   ============================================================ */
.filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  transition: all var(--duration-fast) ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--text-dark);
  color: var(--text-dark);
  background: var(--warm-white);
}

.catalogue-section.is-filter-hidden {
  display: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--cream-dark);
}

/* Legacy footer classes removed — all pages now use site-footer__* system */

/* ============================================================
   REVEAL ANIMATIONS (CSS only)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* Stagger children */
.stagger-children > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger-children > .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger-children > .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger-children > .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger-children > .reveal:nth-child(6) { transition-delay: 400ms; }
.stagger-children > .reveal:nth-child(7) { transition-delay: 480ms; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gold line accent for headings */
.gold-line {
  position: relative;
  display: inline-block;
}

.gold-line::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 1.5rem 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .story-hero-grid,
  .story-content,
  .catalogue-hero {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-stats {
    justify-content: flex-start;
    text-align: left;
  }

  .story-sidebar {
    position: static;
  }

}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --content-width: min(100%, calc(100vw - 1.5rem));
  }

  /* On the homepage the header sits over a dark hero before scroll, so
     only the brand mark/text need a lighter treatment for legibility. */
  body:has(.hero-banner) .site-header:not(.scrolled) .brand {
    color: var(--warm-white);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  }

  body:has(.hero-banner) .site-header:not(.scrolled) .brand img {
    filter: brightness(0) invert(1) drop-shadow(0 1px 10px rgba(0, 0, 0, 0.25));
  }

  /* Fail safe on touch layouts so long sections never render as empty gaps
     if IntersectionObserver timing lags during first paint or screenshots. */
  .reveal {
    opacity: 1;
    transform: none;
  }

  .announcement-bar {
    min-height: 2.38rem;
    padding: 0.45rem 0.5rem;
    letter-spacing: 0.08em;
  }

  .announcement-cube {
    height: 2.38rem;
  }

  .announcement-cube--wide {
    max-width: 100%;
  }

  .announcement-cube__face {
    padding: 0 0.35rem;
    font-size: clamp(0.52rem, 2.7vw, 0.66rem);
  }

  .announcement-cube__face--front {
    transform: rotateX(0deg) translateZ(1.1rem);
  }

  .announcement-cube__face--back {
    transform: rotateX(-90deg) translateZ(1.1rem);
  }

  .site-header__masthead {
    padding: 0.6rem 1rem;
  }

  .site-header:not(.scrolled) .site-header__masthead::before {
    background: linear-gradient(
      180deg,
      rgba(250, 246, 241, 0.82) 0%,
      rgba(250, 246, 241, 0.68) 100%
    );
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 1px 0 rgba(44, 36, 32, 0.06);
  }

  .site-header__container {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .site-header__middle {
    display: none;
  }

  .site-header__left {
    min-width: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Nav dropdown when mobile toggle opens it */
  .site-header__middle:has(#primary-nav.is-open) {
    display: block;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 1rem;
    right: 1rem;
    z-index: 20;
  }

  #primary-nav.is-open {
    flex-direction: column;
    align-items: stretch;
    background: rgba(250, 246, 241, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
  }

  #primary-nav.is-open .header-list__link {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
  }

  .header-actions-pill > .header-list__link {
    display: inline-flex;
  }

  .header-actions-pill > .header-lang {
    display: none;
  }

  .header-bag-wrap {
    display: block;
  }

  .header-bag-wrap .header-bag {
    display: inline-flex;
  }

  .header-actions-pill {
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.84);
  }

  .header-bag {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .mobile-toggle {
    display: flex;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.84);
  }

  .catalogue-hero {
    padding: 2.25rem 0 2rem;
    gap: 1.5rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-hero-img img {
    height: 300px;
  }

  /* .footer-inner removed — legacy rule, no HTML uses it */

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .catalogue-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-nav {
    gap: 0.35rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .catalogue-hero {
    padding-top: 1.5rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none !important;
  }
}

/* ============================================================
   SR ONLY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* (Old .announcement-track scrolling ticker removed — replaced by .announcement-cube 3D flip) */

/* ============================================================
   SAFE AREA — landscape notch / dynamic island support
   ============================================================ */
@supports (padding: env(safe-area-inset-left)) {
  .site-header__container {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .container {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }

  @media (max-width: 768px) {
    .bottom-nav {
      padding-left: env(safe-area-inset-left);
      padding-right: env(safe-area-inset-right);
    }

    .wa-bag-drawer {
      padding-left: env(safe-area-inset-left);
      padding-right: env(safe-area-inset-right);
    }
  }
}

/* ============================================================
   HEADER SUBMENU — Catalogue mega-dropdown (drinkpouch pattern)
   ============================================================ */
.header-list__item-with-sub {
  position: relative;
}

.header-submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 18px;
  padding: 0.5rem;
  min-width: 185px;
  clip-path: inset(45% 20% 55% round 10px);
  transition: clip-path 0.6s cubic-bezier(0.87, 0, 0.13, 1);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  border: 1px solid rgba(44, 36, 32, 0.06);
}

.header-submenu.is-open {
  clip-path: inset(0% round 10px);
  pointer-events: auto;
}

.header-submenu__panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- Products panel inside mega dropdown ---- */
.products-panel {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.products-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 1rem 0.85rem;
}

.products-panel__title {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.products-panel__details {
  display: none;
}

.products-panel__details-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.products-panel__details-info {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.9;
}

.products-panel__products {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* ---- Individual product snippet cards ---- */
.product-snippet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(44, 36, 32, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: var(--text-dark);
}

.product-snippet:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(44, 36, 32, 0.12);
  box-shadow: 0 10px 24px rgba(44, 36, 32, 0.08);
  transform: translateY(-1px);
}

.product-snippet:focus-visible {
  border-color: rgba(44, 36, 32, 0.16);
  box-shadow: 0 0 0 3px rgba(184, 160, 128, 0.22), 0 10px 24px rgba(44, 36, 32, 0.08);
}

.product-snippet__thumbnail {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: var(--cream-light);
}

.product-snippet__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-snippet__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.product-snippet__name {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-snippet__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-snippet__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--text-dark);
  color: var(--white);
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  transition: box-shadow 0.4s ease-out;
}

@media (hover: hover) {
  .product-snippet:hover .product-snippet__btn {
    animation: snippet-btn-pulse 1.5s ease-in-out infinite;
  }
}

@keyframes snippet-btn-pulse {
  0%   { box-shadow: 0 0 0 0 var(--text-dark); }
  50%  { box-shadow: 0 0 0 3px rgba(44, 36, 32, 0.15); }
  100% { box-shadow: 0 0 0 0 var(--text-dark); }
}

.products-panel__shop-all {
  margin: 0.25rem 0.4rem 0.4rem;
  text-align: center;
  justify-content: center;
  gap: 0.5rem;
}

.products-panel__shop-all svg {
  transition: transform 0.3s var(--ease-out);
}

.products-panel__shop-all:hover svg {
  transform: translate(2px, -2px);
}

/* Desktop: wider mega dropdown with 2x2 product grid */
@media (min-width: 768px) {
  .header-submenu {
    min-width: 520px;
    left: 50%;
    transform: translateX(-50%);
  }

  .products-panel__details {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
  }

  .products-panel__products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
  }
}

/* Large desktop: 4 products in a row */
@media (min-width: 1024px) {
  .header-submenu {
    min-width: 740px;
  }

  .products-panel__products {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.28s ease-out;
  pointer-events: none;
  padding-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
}

.search-overlay.is-open {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}

.search-overlay__inner {
  padding-top: 0.25rem;
}

.search-overlay__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-hover);
  padding: 1.1rem 0;
  font-size: 1.1rem;
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  outline: none;
}

.search-overlay__input::placeholder {
  color: var(--text-muted);
}

.search-results {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1rem;
  min-height: 1rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  width: calc(50% - 0.3rem);
  transition: background 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--border);
}

.search-result-item:hover {
  background: var(--white);
  border-color: var(--border-hover);
}

.search-result-item.is-added {
  border-color: rgba(37, 211, 102, 0.34);
  background: rgba(37, 211, 102, 0.08);
}

.search-result-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.search-result-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.search-result-meta {
  font-size: 0.67rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

/* ============================================================
   HERO BANNER — full-screen animated background
   ============================================================ */

/* Pull hero up behind transparent header */
main {
  padding-top: 0;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  background: var(--text-dark);
  color: var(--white);
  z-index: 0;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 36, 32, 0.6) 0%,
    rgba(44, 36, 32, 0.3) 55%,
    rgba(44, 36, 32, 0.65) 100%
  );
}

.hero-banner__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2.5rem;
  padding-top: calc(var(--header-height) + 2rem);
  width: var(--content-width);
  margin: 0 auto;
  gap: 0.5rem;
  min-height: 100svh;
}

.hero-banner__logo-col {
  display: none;
}

.hero-banner__logo {
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

.hero-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
}

.hero-banner__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  font-family: "Inter", sans-serif;
}

.hero-banner__heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-banner__body {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 440px;
}

.hero-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.hero-banner__footer {
  margin-top: auto;
  padding-top: 2rem;
  align-self: flex-end;
  text-align: right;
}

.hero-banner__tagline {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.4;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}


@media (min-width: 1024px) {
  .hero-banner__container {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    grid-template-rows: 1fr auto;
    align-items: end;
    gap: 0 3rem;
  }

  .hero-banner__logo-col {
    display: flex;
    align-items: center;
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .hero-banner__content {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-banner__footer {
    grid-column: 3;
    grid-row: 2;
    padding-top: 0;
    align-self: end;
  }

}

/* Non-hero pages: restore top padding on main */
.page-inner-main {
  padding-top: calc(var(--header-height) + 1rem);
}

/* ============================================================
   STATEMENT BLOCKS
   ============================================================ */
.statement-blocks {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  border-top: 1px solid var(--border);
}

.statement-block {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.statement-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 60px;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
}

.statement-word {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

/* SplitText character spans for scroll-reveal animation */
.split-char {
  display: inline-block;
  color: rgba(44, 36, 32, 0.12);
  transition: color 0s; /* GSAP handles transitions */
}

/* ============================================================
   FEATURED PRODUCTS — drinkpouch 4-col card style
   ============================================================ */
.featured-products {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.featured-products__header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: end;
}

.featured-products__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
}

.featured-products__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.featured-products__body {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-medium);
}

.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* drinkpouch card */
.pcard-element {
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.pcard-element .pcard,
.pcard-element .pcard-order-btn {
  pointer-events: auto;
}

.pcard {
  aspect-ratio: 331 / 453;
  background: var(--cream-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  transition: border-bottom-left-radius 0.2s ease-out,
              border-bottom-right-radius 0.2s ease-out,
              color 0.4s ease-out;
  text-decoration: none;
  color: inherit;
}

/* Hover background color reveal — smooth opacity fade from centre */
.pcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
}

.pcard-element:hover .pcard::before {
  opacity: 1;
}

/* Dark overlay on hover for text contrast */
.pcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(44, 36, 32, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
}

.pcard-element:hover .pcard::after {
  opacity: 1;
}

/* Category-specific hover tints — warmer, richer */
.pcard[data-category="men"]::before      { background: linear-gradient(145deg, #c4bbb0, #a89e94); }
.pcard[data-category="women"]::before    { background: linear-gradient(145deg, #dbc8bc, #c8b0a0); }
.pcard[data-category="diffuser"]::before { background: linear-gradient(145deg, #c0c8b8, #a8b8a0); }

/* On hover: flatten bottom radius and invert text */
.pcard-element:hover .pcard {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--white);
}

.pcard-element:hover .pcard-name,
.pcard-element:hover .pcard-price,
.pcard-element:hover .pcard-meta {
  color: var(--white);
}

/* ---- Joined dual badges (drinkpouch pattern) ---- */
.joined-badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2px;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
}

.badge--subtle {
  background: rgba(44, 36, 32, 0.08);
  color: var(--text-medium);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s ease-out, color 0.4s ease-out;
}

/* Badge invert on card hover */
.pcard-element:hover .badge--subtle {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* Ticket-stub connector between joined badges */
.joined-badges .badge + .badge::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 6px;
  background: rgba(44, 36, 32, 0.12);
  border-radius: 1px;
  margin-right: 0;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
}

.joined-badges .badge + .badge {
  position: relative;
}

.pcard-element:hover .joined-badges .badge + .badge::before {
  background: rgba(255, 255, 255, 0.2);
}

/* Keep old .pcard-badge for catalogue pages backward compat */
/* REMOVED — all pages now use joined-badges system */

.pcard-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  position: relative;
  z-index: 1;
}

.pcard-image img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
  filter: drop-shadow(0 8px 24px rgba(44, 36, 32, 0.08));
}

.pcard-element:hover .pcard-image img {
  transform: scale(1.06) translateY(-6px);
  filter: drop-shadow(0 12px 32px rgba(44, 36, 32, 0.15));
}

.pcard-footer {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 100%;
  padding: 0 0.75rem;
  z-index: 1;
}

.pcard-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pcard-name {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.4s ease-out;
}

.pcard-price {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: color 0.4s ease-out;
}

.pcard-meta {
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
  transition: color 0.4s ease-out;
}

/* ---- Scent-notes marquee (bottom of card) ---- */
.pcard-notes-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  height: 1.5rem;
  margin-inline: calc(var(--radius-md) * -0.1);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pcard-element:hover .pcard-notes-marquee {
  opacity: 1;
}

.pcard-notes-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: pcard-marquee 10s linear infinite;
}

.pcard-notes-track span {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  padding: 0 0.35rem;
}

.pcard-notes-track span::after {
  content: "/";
  display: inline-block;
  margin-left: 0.35rem;
  opacity: 0.4;
}

@keyframes pcard-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Slide-up order button */
.pcard-order-btn {
  display: block;
  text-align: center;
  background: var(--text-dark);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out, background 0.2s ease;
  text-decoration: none;
}

.pcard-element:hover .pcard-order-btn {
  opacity: 1;
  pointer-events: auto;
}

.pcard-order-btn:hover {
  background: #1a1410;
}

.pcard-order-btn.is-added {
  background: var(--whatsapp);
}

.catalogue-bag-count,
.wa-bag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  margin-left: 0.25rem;
  border-radius: var(--radius-pill);
  background: rgba(44, 36, 32, 0.08);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
}

.wa-bag-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 13, 10, 0.42);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.wa-bag-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.wa-bag-open {
  overflow: hidden;
}

.wa-bag-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 28rem);
  height: 100dvh;
  padding: 1.25rem;
  background: var(--warm-white);
  border-left: 1px solid var(--border);
  z-index: 111;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -18px 0 40px rgba(44, 36, 32, 0.12);
  overflow: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.wa-bag-drawer__body {
  min-height: 0;
  overflow-y: auto;
  touch-action: pan-y;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding-right: 0.25rem;
  padding-bottom: 0.75rem;
}

.header-bag-wrap {
  position: relative;
}

.wa-bag-mini {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: min(22rem, 86vw);
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(44, 36, 32, 0.08);
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 18px 38px rgba(44, 36, 32, 0.12);
  display: grid;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 55;
}

.header-bag-wrap:hover .wa-bag-mini,
.wa-bag-mini.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-bag-mini__title {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.wa-bag-mini__items {
  display: grid;
  gap: 0.55rem;
}

.wa-bag-mini__item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-medium);
}

.wa-bag-mini__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-medium);
}

.wa-bag-drawer.is-open {
  transform: translateX(0);
}

.wa-bag-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.wa-bag-drawer__header h3 {
  margin-top: 0.4rem;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.wa-bag-drawer__close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.wa-bag-drawer__close:focus-visible,
.wa-bag-item__qty-btn:focus-visible,
.wa-bag-item__remove:focus-visible {
  outline: 3px solid rgba(184, 160, 128, 0.28);
  outline-offset: 2px;
}

.wa-bag-panel__totals {
  display: grid;
  justify-items: end;
  gap: 0.2rem;
  text-align: right;
}

.wa-bag-panel__totals span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.wa-bag-panel__totals strong {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.wa-bag-summary-card {
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.wa-bag-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-medium);
}

.wa-bag-summary-row strong {
  font-size: 0.96rem;
  color: var(--text-dark);
}

.wa-bag-delivery-note {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-light);
}

.wa-bag-panel__empty {
  color: var(--text-medium);
  line-height: 1.7;
}

.wa-bag-empty-state {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.wa-bag-empty-state[hidden] {
  display: none;
}

.wa-bag-empty-state__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(44, 36, 32, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-medium);
}

.wa-bag-panel__items {
  display: grid;
  gap: 0.75rem;
  overflow: visible;
  padding-right: 0;
}

.wa-bag-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.wa-bag-item__name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--text-dark);
}

.wa-bag-item__thumb {
  width: 58px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(44, 36, 32, 0.04);
  overflow: hidden;
}

.wa-bag-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-bag-item__meta {
  font-size: 0.78rem;
  color: var(--text-medium);
  margin-top: 0.15rem;
}

.wa-bag-item__price {
  font-weight: 700;
  color: var(--text-dark);
}

.wa-bag-item__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.wa-bag-item__qty-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1;
}

.wa-bag-item__qty {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.wa-bag-item__side {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.wa-bag-item__remove {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-medium);
}

.wa-bag-item__remove:hover {
  color: var(--text-dark);
  border-color: rgba(44, 36, 32, 0.14);
}

.wa-bag-drawer__footer {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  position: static;
  background: linear-gradient(180deg, rgba(250, 245, 239, 0.85), rgba(250, 245, 239, 1));
  z-index: 2;
}

.wa-bag-drawer__footer .btn.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}

.wa-bag-toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translate(-50%, 120%);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(23, 18, 15, 0.94);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  z-index: 120;
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0;
  pointer-events: none;
}

.wa-bag-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* On touch devices / mobile, always show order button */
@media (hover: none) {
  .pcard-order-btn {
    opacity: 1;
    pointer-events: auto;
    min-height: 44px; /* WCAG 2.5.5 touch target */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pcard-element .pcard {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .pcard-notes-marquee {
    display: none; /* hide dark overlay on touch — prevents text overlap with .pcard-footer */
  }


  .wa-bag-drawer {
    inset: 0;
    width: 100vw;
    height: 100svh;
    max-width: none;
    border-left: 0;
    box-shadow: none;
  }

  .wa-bag-mini {
    display: none;
  }

  .wa-bag-item {
    grid-template-columns: 50px 1fr;
  }

  .wa-bag-panel__totals {
    justify-items: start;
    text-align: left;
  }

  .wa-bag-item__side {
    justify-items: start;
  }

  .wa-bag-item__thumb {
    width: 50px;
    height: 64px;
  }
}

/* ============================================================
   SCENT HIGHLIGHTS — dark section with GSAP pin+scrub (POUCH layout)
   ============================================================ */
.scent-highlights {
  background: var(--text-dark);
  color: var(--white);
  border-radius: 16px 16px 0 0;
  overflow: clip;
  position: relative;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.scent-highlights__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.03);
}

/* ---- Pinned section — fills viewport height, GSAP pins it ---- */
.scent-highlights__pinned {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: min(92dvh, 860px);
  padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(2rem, 3vw, 3rem);
  box-sizing: border-box;
}

/* ---- Grid: 3-column POUCH layout ---- */
.scent-highlights__container {
  width: 100% !important;
  max-width: none !important;
  padding: 0 clamp(1.5rem, 4vw, 4rem) !important;
  display: grid;
  grid-template-columns: minmax(0, min-content) minmax(0, 1fr) minmax(320px, 42%);
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(1.75rem, 3.2vw, 3.25rem);
  row-gap: clamp(1.1rem, 2vw, 1.9rem);
  align-items: start;
  width: 100%;
}

/* Row 1, full width: eyebrow label */
.scent-highlights__eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  font-family: "Inter", sans-serif;
  margin: 0;
}

/* Col 2, Row 2: main heading */
.scent-highlights__heading {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
  max-width: 12ch;
}

/* Col 1, Rows 2–end: nav sidebar (vertical bar + counter) */
.scent-highlights__nav {
  grid-column: 1;
  grid-row: 2 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.2rem;
}

/* Vertical progress bar — 1px wide, 100px tall (POUCH exact) */
.scent-highlights__progress {
  width: 1px;
  height: 84px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
}

.scent-highlights__progress-fill {
  width: 100%;
  height: 20%; /* JS animates this via style.height */
  background: var(--white);
  border-radius: 1px;
  transition: height 0.35s ease;
}

/* Counter */
.sh-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  line-height: 1;
}

.sh-counter-current {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: var(--white);
  line-height: 1;
}

.sh-counter-sep {
  font-size: 0.6rem;
  opacity: 0.35;
  font-family: "Inter", sans-serif;
}

.sh-counter-total {
  font-size: 0.6rem;
  opacity: 0.45;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
}

/* Col 2, Row 3: content stage — panels stacked vertically */
.scent-highlights__stage {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow: hidden;
  max-height: 27.1rem;
  padding-right: 0.5rem;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}

/* Col 3, all rows: spinning bottle (right column) */
.scent-highlights__media {
  grid-column: 3;
  grid-row: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  transform: translateX(-2%);
}

.scent-highlights__video-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  overflow: visible;
  background: transparent;
}

.scent-highlights__video {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 720px;
  height: 720px;
  visibility: hidden;
  pointer-events: none;
}

.scent-highlights__canvas {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: brightness(1.03) contrast(1.04) saturate(1.06);
}

.sh-panel {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 8.5rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  opacity: 0.44;
  transform: none;
  pointer-events: auto;
  transition: opacity 0.28s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sh-panel:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sh-panel.is-active {
  opacity: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sh-panel.is-near {
  opacity: 0.74;
}

.sh-panel__visual {
  width: 74px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.sh-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sh-panel__content {
  min-width: 0;
}

.sh-panel__label {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  margin-bottom: 0.6rem;
}

.sh-panel.is-active .sh-panel__label {
  color: rgba(255, 255, 255, 0.7);
}

.sh-panel__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.sh-panel.is-active .sh-panel__title {
  color: rgba(255, 255, 255, 1);
}

.sh-panel__body {
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

.sh-panel.is-active .sh-panel__body {
  color: rgba(255, 255, 255, 0.9);
}

.sh-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.sh-panel__cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

/* ---- Product snippets below pinned area ---- */
.scent-highlights__products {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1.25rem;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.scent-highlights--static .scent-highlights__pinned {
  min-height: auto;
}

.scent-highlights--static .scent-highlights__stage {
  min-height: auto;
  max-height: none;
  overflow: visible;
  transform: none !important;
}

.scent-highlights--static .sh-panel {
  opacity: 1 !important;
  transform: none !important;
}

.scent-highlights__nav.is-hidden {
  display: none !important;
}

.scent-snippet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: background 0.2s ease, border-color 0.2s ease;
  color: var(--white);
  text-decoration: none;
}

.scent-snippet:hover {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.28);
}

.scent-snippet img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.scent-snippet div p:first-child {
  font-weight: 600;
  font-size: 0.88rem;
}

.scent-snippet div p:last-child {
  font-size: 0.65rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ---- Desktop: product snippets in a row ---- */
@media (min-width: 1024px) {
  .scent-highlights__products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* ---- Mobile: single column stack ---- */
@media (max-width: 1023px) {
  .scent-highlights__pinned {
    min-height: auto;
    padding: 3rem 0 2rem;
  }

  .scent-highlights__container {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    column-gap: 0 !important;
    row-gap: 1.5rem !important;
  }

  .scent-highlights__eyebrow {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  /* On mobile: show nav as horizontal row */
  .scent-highlights__nav {
    display: none;
  }

  .scent-highlights__progress {
    width: 60px;
    height: 1px;
  }

  .scent-highlights__progress-fill {
    width: 100%;
    height: 100%;
    transform-origin: left center;
  }

  .sh-counter {
    flex-direction: row;
    gap: 0.25rem;
  }

  .sh-counter-current,
  .sh-counter-sep,
  .sh-counter-total {
    font-size: 0.75rem;
  }

  .scent-highlights__heading {
    grid-column: 1 !important;
    grid-row: auto !important;
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .scent-highlights__stage {
    grid-column: 1 !important;
    grid-row: auto !important;
    gap: 1.25rem;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .scent-highlights__media {
    grid-column: 1 !important;
    grid-row: auto !important;
    transform: none;
    order: -1;
  }

  .scent-highlights__video-wrap {
    max-width: 240px;
    margin: 0 auto;
  }

  .sh-panel {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    opacity: 1 !important;
    padding: 1rem;
    min-height: 7rem;
  }

  .sh-panel__visual {
    width: 60px;
    height: 76px;
  }

  .sh-panel__title {
    font-size: 1.3rem;
  }

  .sh-panel__body {
    font-size: 0.82rem;
  }

  .sh-panel__cta {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .scent-highlights__products {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHY WE EXIST — inline-image flowing text (drinkpouch style)
   ============================================================ */
.why-section__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.why-section__text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.why-section__text em {
  font-style: italic;
  color: var(--gold-dark);
}

.why-section__img-inline {
  display: inline-flex;
  width: clamp(100px, 18vw, 200px);
  height: clamp(60px, 10vw, 110px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  vertical-align: middle;
}

.why-section__img-inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.why-section__img-inline:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .why-section__flow {
    gap: 0.5rem 0.75rem;
  }

  .why-section__img-inline {
    width: clamp(80px, 28vw, 140px);
    height: clamp(50px, 16vw, 80px);
  }
}

/* ============================================================
   FOUNDER QUOTE
   ============================================================ */
.founder-quote__inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  align-items: start;
}

.founder-quote__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--cream-dark);
}

.founder-quote__name {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-family: "Inter", sans-serif;
}

.founder-quote__text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

/* ============================================================
   ORDER SPLIT — how to order
   ============================================================ */
.order-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  margin-top: 1.5rem;
}

.order-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-card);
}

.order-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-split__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.order-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.order-step__num {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 2rem;
}

.order-step__title {
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.order-step p:last-child {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   STARTER BUNDLE — image + text split (drinkpouch VarietyPack+)
   ============================================================ */
.starter-bundle__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.starter-bundle__image {
  aspect-ratio: 690 / 680;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.starter-bundle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.starter-bundle__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.starter-bundle__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.starter-bundle__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.starter-bundle__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 400px;
}

.starter-bundle__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.starter-bundle__details-heading {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.8;
}

.starter-bundle__details-body {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-medium);
  line-height: 2;
}

.starter-bundle__cta {
  align-self: flex-start;
}

.starter-bundle__cta svg {
  transition: transform 0.3s var(--ease-out);
}

.starter-bundle__cta:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================================
   PACKAGING SHOWCASE
   ============================================================ */
.packaging-showcase__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.packaging-showcase__body {
  margin-top: 1rem;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-medium);
}

.packaging-showcase__points {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.packaging-point {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.packaging-point strong {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--gold-dark);
  min-width: 2rem;
}

.packaging-point span {
  color: var(--text-dark);
  font-size: 0.92rem;
}

.packaging-showcase__visual {
  display: flex;
  justify-content: center;
}

.packaging-showcase__stack {
  position: relative;
  width: min(100%, 32rem);
  aspect-ratio: 1 / 1;
}

.packaging-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(44, 36, 32, 0.12));
}

.packaging-card--back {
  transform: translate(-10%, 5%) rotate(-8deg);
  opacity: 0.55;
}

.packaging-card--mid {
  transform: translate(8%, -2%) rotate(7deg);
  opacity: 0.74;
}

.packaging-card--front {
  transform: translateY(-3%);
}

@media (max-width: 768px) {
  .packaging-showcase__grid {
    grid-template-columns: 1fr;
  }

  .packaging-showcase__visual {
    order: -1;
  }

  .packaging-showcase__stack {
    width: min(100%, 20rem);
  }
}

/* ============================================================
   POLICY PAGE
   ============================================================ */
.policy-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
  border-bottom: 1px solid var(--border);
}

.policy-hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.policy-hero__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 760px;
  color: var(--text-dark);
}

.policy-hero__sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 560px;
}

.policy-sections {
  display: grid;
  gap: 1.5rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.policy-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.policy-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.policy-card p,
.policy-card li {
  color: var(--text-medium);
  line-height: 1.75;
  font-size: 0.95rem;
}

.policy-card ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.1rem;
}

.policy-card + .policy-card {
  margin-top: 0;
}

@media (min-width: 768px) {
  .starter-bundle__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* Text on left, image on right spanning all rows */
  .starter-bundle__text {
    grid-column: 1;
    gap: 2.5rem;
  }

  .starter-bundle__image {
    grid-column: 2;
    grid-row: 1 / span all;
    aspect-ratio: auto;
    min-height: 100%;
  }

  .starter-bundle__body {
    max-width: 360px;
  }
}

/* ============================================================
   COMPARISON TABLE — polished drinkpouch-inspired
   ============================================================ */
.comparison-section__heading {
  margin-bottom: 1.5rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--warm-white);
}

.comparison-col {
  display: flex;
  flex-direction: column;
}

.comparison-col--highlight {
  background: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
  box-shadow: 0 0 24px rgba(44, 36, 32, 0.06);
}

.comparison-col--highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 3px 3px 0 0;
}

.comparison-cell {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-medium);
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.comparison-cell:last-child {
  border-bottom: none;
}

.comparison-cell--header {
  flex-direction: column;
  align-items: flex-start;
  background: var(--cream-card);
  padding: 1.5rem;
  min-height: 90px;
  justify-content: flex-end;
  gap: 0.3rem;
}

.comparison-col--highlight .comparison-cell--header {
  background: var(--cream-elevated);
}

.comparison-col-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.comparison-col-sub {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.15rem 0.5rem;
  background: rgba(44, 36, 32, 0.05);
  border-radius: var(--radius-pill);
}

.comparison-cell--check {
  color: var(--text-dark);
  font-weight: 600;
}

.comparison-col--highlight .comparison-cell--check {
  color: var(--whatsapp);
  font-weight: 700;
}

/* Highlight column cells — subtle left accent */
.comparison-col--highlight .comparison-cell:not(.comparison-cell--header) {
  border-left: 2px solid transparent;
}

.comparison-col--highlight .comparison-cell--check {
  border-left-color: var(--whatsapp);
}

/* ============================================================
   FAQ PREVIEW (homepage)
   ============================================================ */
.faq-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  margin-top: 1.25rem;
}

.faq-preview__intro p {
  margin-top: 1rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-preview__intro .btn {
  margin-top: 2rem;
}

.faq-preview-item {
  border-bottom: 1px solid var(--border);
}

.faq-preview-item:first-child {
  border-top: 1px solid var(--border);
}

summary.faq-preview-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-family: "Playfair Display", serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 600;
  color: var(--text-dark);
  user-select: none;
  transition: color 0.2s ease;
}

summary.faq-preview-q::-webkit-details-marker {
  display: none;
}

summary.faq-preview-q::after {
  content: '+';
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-light);
  flex-shrink: 0;
  line-height: 1;
}

.faq-preview-item[open] summary.faq-preview-q::after {
  content: '\2212';
  color: var(--text-dark);
}

summary.faq-preview-q:hover {
  color: var(--text-medium);
}

.faq-preview-a {
  padding: 0 0 1.25rem;
  color: var(--text-medium);
  font-size: 0.88rem;
  line-height: 1.75;
}

.faq-preview-a a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-preview-a a:hover {
  color: var(--text-medium);
}

@media (max-width: 768px) {
  .faq-preview__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER — dark accordion style
   ============================================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: none;
}

.site-footer__grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accordion {
  padding: 1.25rem 0;
}

summary.footer-accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

summary.footer-accordion__btn::-webkit-details-marker {
  display: none;
}

summary.footer-accordion__btn::after {
  content: '+';
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.footer-accordion[open] summary.footer-accordion__btn::after {
  content: '−';
}

.footer-accordion__btn span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  font-family: "Inter", sans-serif;
}

.footer-accordion__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0 0.5rem;
}

.footer-accordion__list a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-accordion__list a:hover {
  color: var(--white);
}

.site-footer__base {
  width: var(--content-width);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-credit:hover {
  color: var(--white);
}

.from-desktop {
  display: none;
}

/* Footer live clock */
.footer-clock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-clock__label {
  opacity: 0.5;
}

.footer-clock__time {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
}

/* ============================================================
   MOBILE NAV — use .is-open on #nav-middle (overrides :has() above)
   ============================================================ */
@media (max-width: 768px) {
  .site-header__middle.is-open {
    display: block;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 1rem;
    right: 1rem;
    z-index: 20;
  }

  .site-header__middle.is-open #primary-nav {
    flex-direction: column;
    align-items: stretch;
    background: rgba(250, 246, 241, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    width: 100%;
  }

  .site-header__middle.is-open .header-list__link {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
  }

  /* Hide submenu inside mobile nav */
  .site-header__middle.is-open .header-submenu {
    display: none;
  }

  /* Responsive: search results full width on mobile */
  .search-result-item {
    width: 100%;
  }

  /* Featured products: 2 col on mobile */
  .featured-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Product card: stack name + price so long names don't collide with price */
  .pcard-footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
  }

  .pcard-name {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .pcard-price {
    font-size: 0.78rem;
  }

  /* Single-line scent descriptor — truncate if it overflows the narrow card */
  .pcard-meta {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 0.6rem;
  }

  .featured-products__header {
    grid-template-columns: 1fr;
  }

  .featured-products__eyebrow,
  .featured-products__heading,
  .featured-products__body {
    grid-column: 1;
  }

  /* Scent highlights: handled by component media queries above */

  /* Founder quote: stack on mobile */
  .founder-quote__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .founder-quote__avatar {
    width: 100px;
    height: 100px;
  }

  /* Order split: stack on mobile */
  .order-split__grid {
    grid-template-columns: 1fr;
  }

  .order-split__image {
    aspect-ratio: 4 / 3;
  }

  /* Comparison: smaller padding */
  .comparison-cell {
    padding: 0.75rem 0.8rem;
    font-size: 0.78rem;
  }

  .comparison-cell--header {
    padding: 1rem 0.8rem;
  }

  /* Footer: stack accordions */
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Newsletter email form (global — not trapped in mobile media query) */
.newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease;
}

.newsletter-form:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
}

.newsletter-form__input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1rem; /* ≥16px prevents iOS auto-zoom on focus */
  outline: none;
}

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

.newsletter-form__btn {
  padding: 0.75rem 1.75rem;
  background: var(--white);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.newsletter-form__btn:hover {
  background: var(--cream-light);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .newsletter-form__btn {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
}

@media (min-width: 768px) {
  .from-desktop {
    display: inline;
  }
}

@media (max-width: 480px) {
  /* Statement blocks: smaller text */
  .statement-word {
    font-size: clamp(2rem, 14vw, 3.5rem);
  }

  /* Product cards: keep 2-col even on small phones (Superbalist/Takealot pattern) */
  .featured-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* ============================================================
   ACCESSIBILITY — focus-visible, cursor, contrast
   ============================================================ */

/* Cursor pointer on all interactive elements */
a, button, .pcard, .pcard-order-btn, .filter-btn,
.mobile-toggle, .search-trigger, .btn,
[role="button"], summary {
  cursor: pointer;
}

/* Focus-visible ring for keyboard navigation */
a:focus-visible,
button:focus-visible,
.pcard:focus-visible,
.filter-btn:focus-visible,
.btn:focus-visible,
input:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Remove default outline when not using keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Skip-to-content link (screen reader + keyboard nav) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: var(--z-skip);
  padding: 0.75rem 1.5rem;
  background: var(--text-dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* --- UTILITY CLASSES --- */
.u-center-action {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   BOTTOM NAV — Superbalist/Takealot mobile pattern
   Desktop: hidden. Mobile (≤768px): fixed 5-tab thumb-zone nav.
   ============================================================ */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  /* ---- Bottom Nav Bar ---- */
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-overlay);
    height: calc(60px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(250, 246, 241, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
    will-change: transform;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(44, 36, 32, 0.06);
  }
  .bottom-nav.hide-down {
    transform: translateY(100%);
  }

  body.wa-bag-open .bottom-nav {
    transform: translateY(120%);
    pointer-events: none;
  }

  .bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 44px;
    min-height: 44px;
    padding: 6px 4px;
    color: var(--text-light);
    font-family: "Inter", sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .bottom-nav__item.is-active {
    color: var(--text-dark);
    font-weight: 700;
  }

  .bottom-nav__item:active {
    color: var(--text-dark);
  }

  .bottom-nav__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .bottom-nav__bag-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bottom-nav__badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #e53935;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
  }

  .bottom-nav__badge[data-count="0"] {
    display: none;
  }

  /* Push page content above bottom nav */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  /* Push bag toast above bottom nav */
  .wa-bag-toast {
    bottom: calc(68px + env(safe-area-inset-bottom));
  }

  /* Safe area for bag drawer send button */
  .wa-bag-drawer__footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  /* ---- Filter pills: horizontal scroll (no wrapping) ---- */
  .filter-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
  }

  .filter-nav::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-height: 44px;
  }

  /* ---- Touch target minimums (44px WCAG) ---- */
  .mobile-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .header-list__link {
    min-height: 44px;
  }

  .wa-bag-item__qty-btn {
    min-width: 44px;
    min-height: 44px;
  }

  /* Hide EN language toggle on mobile (redundant on small screens) */
  .header-lang {
    display: none;
  }
}
