/* ============================================
   NEPAYA - Premium Himalayan Tea
   Brand Colors: Deep Burgundy + Gold + Pink + White
   Design: Apple/Cartier-level premium
   ============================================ */

/* ============================================
   SILK SERIF — Self-hosted primary brand font
   ============================================ */
@font-face {
  font-family: 'Silk Serif';
  src: url('../fonts/silk-serif-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Silk Serif';
  src: url('../fonts/silk-serif-regular-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Silk Serif';
  src: url('../fonts/silk-serif-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Silk Serif';
  src: url('../fonts/silk-serif-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Silk Serif';
  src: url('../fonts/silk-serif-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Silk Serif';
  src: url('../fonts/silk-serif-bold-italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ============================================
   SILK FLOWER — Self-hosted decorative accent font
   ============================================ */
@font-face {
  font-family: 'Silk Flower';
  src: url('../fonts/silk-flower.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
/* Official Nepaya Brand Colors */
:root {
  --burgundy: #4f0a25;           /* Primary Dark Maroon */
  --burgundy-dark: #35061A;
  --burgundy-light: #6B1D3A;
  --gold: #cc9f53;                /* Secondary Gold — single canonical value */
  --gold-dark: #A37F3D;
  --pink: #ffe0e0;                /* Secondary Light Pink */
  --pink-light: #FFF4F4;         /* Very light pink (replaces cream) */
  --cream: #FFF4F4;              /* On-palette: soft pink-white */
  --cream-dark: #FFE8EA;         /* Slightly deeper pink-white */
  --charcoal: #1C0A12;           /* Near-black with burgundy base */
  --charcoal-light: #3D1020;     /* Deep burgundy-derived text */
  --gray: #8A5A6A;               /* Burgundy-derived mid tone */
  --gray-light: #C4A0AA;         /* Burgundy-derived light tone */
  --gray-lighter: #F5E8EC;       /* Burgundy-derived very light */
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(79, 10, 37, 0.06);
  --shadow-md: 0 6px 24px rgba(79, 10, 37, 0.09);
  --shadow-lg: 0 12px 48px rgba(79, 10, 37, 0.14);
  --shadow-xl: 0 20px 70px rgba(79, 10, 37, 0.18);
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Typography: Silk Serif primary display, Bodoni Moda accent, Archivo body */
  --font-serif: 'Silk Serif', 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-accent: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-sans: 'Archivo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1440px;
  --nav-height: 96px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--burgundy);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: -0.015em;
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  letter-spacing: -0.01em;
  font-weight: 500;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
}

.text-burgundy { color: var(--burgundy); }
.text-gold { color: var(--gold); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  margin-bottom: 24px;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.center {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--burgundy);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-text {
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: var(--transition);
}

.btn-text:hover::after {
  width: 100%;
}

.btn-amazon {
  background: var(--gold, #CC9F53);
  color: var(--burgundy, #4F0A25);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.btn-amazon:hover {
  background: var(--burgundy, #4F0A25);
  color: var(--gold, #CC9F53);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow::after {
  content: '\2192';
  font-size: 1.1em;
  transition: var(--transition-fast);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav-announcement {
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.nav-announcement a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: var(--nav-height);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.nav-logo img {
  /* The logo PNG is a 1080×1080 square with the wordmark centered in ~25% of the height.
     We display it wide and crop vertically to reveal just the wordmark. */
  width: 232px;
  height: 60px;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--gold);
}

.footer-brand .nav-logo img {
  width: 200px;
  height: 52px;
  object-fit: cover;
  object-position: center 50%;
  filter: brightness(1.15) drop-shadow(0 2px 8px rgba(204,159,83,0.18));
}

.nav-links {
  display: flex;
  align-items: stretch;
  gap: 36px;
  height: 100%;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--burgundy);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-trigger svg {
  width: 10px;
  height: 10px;
  transition: var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 24px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.05);
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 10px 28px;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--burgundy);
  padding-left: 32px;
}

.nav-dropdown-heading {
  padding: 6px 28px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 8px;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  top: calc(var(--nav-height));
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 48px 60px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
  border-top: 1px solid var(--cream-dark);
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mega-menu-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}

.mega-menu-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--charcoal-light);
}

.mega-menu-col a:hover {
  color: var(--burgundy);
  padding-left: 6px;
}

/* Nav Search Button */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--charcoal);
  padding: 0;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
  margin-right: 4px;
}
.nav-search-btn svg {
  width: 19px;
  height: 19px;
}
.nav-search-btn:hover {
  background: var(--gray-lighter);
  color: var(--burgundy);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(79, 10, 37, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  visibility: hidden;
}
.search-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.search-overlay-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
}
.search-form {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 56px;
  box-shadow: var(--shadow-xl);
  padding: 6px 8px 6px 24px;
  gap: 8px;
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: transparent;
  padding: 10px 0;
}
.search-input::placeholder {
  color: var(--gray-light);
}
.search-submit,
.search-close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.search-submit {
  background: var(--burgundy);
  color: var(--white);
}
.search-submit:hover { background: var(--burgundy-light); }
.search-submit svg { width: 18px; height: 18px; }
.search-close {
  background: var(--gray-lighter);
  color: var(--charcoal);
}
.search-close:hover { background: var(--pink); }
.search-close svg { width: 18px; height: 18px; }
.search-suggestions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-family: var(--font-sans);
}
.search-suggestions span {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.search-suggestions a {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  padding: 4px 14px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.search-suggestions a:hover {
  background: rgba(255,255,255,0.3);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================
   HERO SECTION - Cinematic lifestyle
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--burgundy);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,10,37,0.82) 0%, rgba(79,10,37,0.55) 40%, rgba(79,10,37,0.35) 100%);
  z-index: 2;
}

.hero-bg-pattern {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 980px;
  padding: 160px 60px 100px;
}

.hero-content {
  max-width: 100%;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 36px;
}

.hero-badge .dot {
  background: var(--gold);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 48px;
  max-width: 640px;
  line-height: 1.9;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-text {
  color: var(--gold);
}

.hero-actions .btn-text::after {
  background: var(--gold);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat h3 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-stat p {
  color: rgba(255,255,255,0.7);
}

/* Hero text block (above the fold) */
.hero-text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  z-index: 5;
  width: min(92%, 880px);
  text-align: center;
  padding: 0 16px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  background: rgba(28,17,22,0.42);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(204,159,83,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 6.4vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin: 22px 0 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-comparison {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  font-weight: 400;
}

/* Hero above-fold CTA bar */
.hero-cta-bar {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* Rounded edges for hero CTA buttons */
.hero-cta-bar .btn-gold,
.hero-cta-bar .btn-hero-secondary {
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* Shop on Amazon — gold button hover */
.hero-cta-bar .btn-gold:hover {
  background: var(--gold-dark);
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.30);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  animation: bobble 2.4s ease-in-out infinite;
}

@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-stat p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

/* ============================================
   RITUAL SELECTOR
   ============================================ */
.ritual-section {
  padding: 120px 0;
  background: var(--white);
}

.ritual-section .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ritual-card {
  position: relative;
  padding: 48px 32px;
  background: var(--cream);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
}

.ritual-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.ritual-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--white);
}

.ritual-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.ritual-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.ritual-card .card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.ritual-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   WHY NEPAYA
   ============================================ */
.why-section {
  padding: 120px 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content {
  max-width: 520px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(107, 29, 53, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-feature h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.why-feature p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

.why-visual {
  position: relative;
}

.why-visual-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.why-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.altitude-stat {
  text-align: center;
}

.altitude-stat .number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.altitude-stat .unit {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-left: 8px;
}

.altitude-stat .label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.altitude-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.altitude-benefit {
  text-align: center;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
}

.altitude-benefit h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.altitude-benefit p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================
   BESTSELLERS / PRODUCT CARDS
   ============================================ */
.bestsellers-section {
  padding: 120px 0;
  background: var(--white);
}

.bestsellers-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--cream-dark);
  display: block;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.bestseller-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

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

@media (max-width: 720px) {
  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 162, 88, 0.2);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

.product-card-image {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow: hidden;
}

.product-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

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

/* Slider inside product-card-image: no scale on track images */
.product-card-image.card-slider .slider-track img {
  transform: none !important;
}

.product-card-info {
  padding: 24px;
}

.product-card-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-family: var(--font-serif);
}

.product-card-taste {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
  font-style: italic;
}

.product-card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-card-benefits span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(107, 29, 53, 0.06);
  color: var(--burgundy);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lighter);
}

.product-card-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.product-card-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.product-card:hover .product-card-link {
  gap: 12px;
  color: var(--gold-dark);
}

/* ============================================
   HOW IT FITS YOUR DAY
   ============================================ */
.daily-section {
  padding: 120px 0;
  background: var(--cream);
}

.daily-section .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.daily-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.daily-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
  opacity: 0.2;
}

.daily-card {
  text-align: center;
  position: relative;
}

.daily-card-time {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  border: 2px solid var(--gold);
}

.daily-card-time span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
}

.daily-card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.daily-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.daily-card .tea-recommend {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--burgundy);
  font-style: italic;
}

/* ============================================
   ICED TEA / LATTE SECTION
   ============================================ */
.iced-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.iced-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(197, 162, 88, 0.08);
}

.iced-section .section-label {
  color: var(--gold);
}

.iced-section .section-title {
  color: var(--white);
}

.iced-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.iced-section .section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.iced-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.iced-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.iced-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.iced-card h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.iced-card-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.iced-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.iced-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.iced-card-tags span {
  font-size: 0.72rem;
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   BRAND STORY (Short)
   ============================================ */
.story-section {
  padding: 120px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content .section-title {
  margin-bottom: 24px;
}

.story-content blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.7;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.story-content .founder-sig {
  margin-top: 32px;
}

.story-content .founder-sig strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
}

.story-content .founder-sig span {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.story-visual {
  position: relative;
}

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

.story-image-grid .img-tall {
  grid-row: span 2;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-grid .img-small {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SOCIAL PROOF / REVIEWS
   ============================================ */
.reviews-section {
  padding: 120px 0;
  background: var(--cream);
}

.reviews-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 162, 88, 0.15);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.review-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.review-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
}

.review-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.review-author-info span {
  font-size: 0.78rem;
  color: var(--gray-light);
}

.review-amazon-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 162, 88, 0.06);
}

.cta-section::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}

.cta-section::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SHOP PAGE
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, #F5EDE3 100%);
  text-align: center;
}

.page-hero .section-label {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 600px;
  margin: 16px auto 0;
}

.shop-filters {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 100px;
  color: var(--gray);
  background: var(--cream);
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
}

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

.filter-tab.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.shop-products {
  padding: 64px 0 120px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Product Detail Overlay */
.product-detail-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-detail-card:hover {
  box-shadow: var(--shadow-xl);
}

.product-detail-image {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.product-detail-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.product-detail-card:hover .product-detail-image img {
  transform: scale(1.05);
}

/* Slider inside product-detail-image: disable individual image scale */
.product-detail-image.card-slider .slider-track img {
  transform: none !important;
}

.product-detail-body {
  padding: 32px;
}

.product-detail-body .product-card-type {
  margin-bottom: 8px;
}

.product-detail-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.product-detail-body .taste {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.product-detail-body .description {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-ingredients {
  margin-bottom: 20px;
}

.product-ingredients h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-ingredients p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
}

.product-detail-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.product-detail-footer .btn {
  flex: 0 0 auto;
  padding: 14px 20px;
  font-size: 0.78rem;
}

/* View Details: same width as Buy on Amazon, thin black border */
/* View Details: same width as Buy on Amazon, thin black border */
.product-detail-footer .btn-text {
  flex: 0 0 auto;
  min-width: 152px;
  justify-content: center;
  text-align: center;
  border: 0.5px solid var(--charcoal);
  color: var(--charcoal);
  padding: 14px 20px;
}
.product-detail-footer .btn-text::after {
  display: none; /* remove the underline animation inside the bordered button */
}
.product-detail-footer .btn-text:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Buy on Amazon: always same size, always pinned to the right */
.product-detail-footer .btn-amazon {
  flex: 0 0 auto;
  margin-left: auto;
  min-width: 152px;
  justify-content: center;
  text-align: center;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--cream) 0%, #EDE4D8 100%);
  text-align: center;
}

.about-hero h1 {
  max-width: 700px;
  margin: 0 auto;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--burgundy);
}

.about-hero p {
  max-width: 580px;
  margin: 24px auto 0;
  font-size: 1.15rem;
}

.about-origin {
  padding: 120px 0;
  background: var(--white);
}

.about-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.origin-map-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #E8DDD0, #D9CFC0);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.origin-map-placeholder::after {
  content: 'Sourced from the Himalayas';
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--burgundy);
  opacity: 0.5;
}

.about-pillars {
  padding: 120px 0;
  background: var(--cream);
}

.about-pillars .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 162, 88, 0.2);
}

.pillar-card .pillar-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 12px;
}

.pillar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Founder Section */
.founder-section {
  padding: 120px 0;
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-image-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-content h2 {
  margin-bottom: 24px;
}

.founder-content .founder-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.founder-content p {
  margin-bottom: 16px;
}

/* ============================================
   SUSTAINABILITY PAGE
   ============================================ */
.sustain-values {
  padding: 120px 0;
  background: var(--white);
}

.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sustain-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream);
  border-radius: 16px;
  transition: var(--transition);
}

.sustain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.sustain-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

.sustain-card h3 {
  margin-bottom: 16px;
  color: var(--charcoal);
}

.sustain-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   BREW GUIDE PAGE
   ============================================ */
.brew-steps {
  padding: 120px 0;
  background: var(--white);
}

.brew-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.brew-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.brew-step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.brew-step h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.brew-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.brew-chart {
  padding: 80px 0 120px;
}

.brew-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.brew-table thead th {
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 24px;
  text-align: left;
}

.brew-table tbody td {
  padding: 16px 24px;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--cream-dark);
}

.brew-table tbody tr:last-child td {
  border-bottom: none;
}

.brew-table tbody tr:hover {
  background: var(--cream);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 80px 0 120px;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  overflow: hidden;
}

.blog-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-image .placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.blog-card-body {
  padding: 32px 28px 34px;
}

.blog-card-tag,
.blog-card-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-card-more {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s ease;
}

.blog-card:hover .blog-card-more {
  letter-spacing: 2.2px;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--gray-light);
}

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

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

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .container, .nav-container {
    padding: 0 40px;
  }

  .products-grid, .ritual-grid, .daily-timeline, .pillars-grid, .brew-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 968px) {
  .container, .nav-container {
    padding: 0 24px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    margin: 0 auto 44px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-main {
    width: 300px;
  }

  .why-grid, .story-grid, .about-origin-grid, .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .iced-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    z-index: 999;
    padding: calc(var(--nav-height) + 24px) 32px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links > li {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--cream-dark);
  }

  .nav-links > li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: flex;
    width: 100%;
    padding: 18px 0;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
  }

  .nav-dropdown.mobile-open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-dropdown-menu,
  .mega-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: var(--white);
    border: none;
    min-width: auto;
    padding: 8px 0 16px;
    border-radius: 8px;
    margin-bottom: 8px;
  }

  .nav-dropdown-menu a {
    padding: 10px 20px;
    font-size: 0.88rem;
  }

  .nav-dropdown-heading {
    padding: 8px 20px 10px;
  }

  .nav-dropdown.mobile-open .nav-dropdown-menu,
  .nav-dropdown.mobile-open .mega-menu {
    display: block;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .nav-logo img {
    width: 196px;
    height: 50px;
  }

  .products-grid, .ritual-grid, .sustain-grid, .blog-grid, .shop-grid,
  .daily-timeline, .pillars-grid, .brew-steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .filter-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-tab {
    white-space: nowrap;
  }

  .brew-table {
    display: block;
    overflow-x: auto;
  }
}

/* ============================================
   IMPORT FONTS (Bodoni + Archivo from Google)
   ============================================ */

/* ============================================
   LIFESTYLE IMAGE CARD
   ============================================ */
.lifestyle-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-md);
  position: relative;
}

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

.image-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 8 / 3;        /* matches 2400×900 banner images */
  min-height: 300px;
  background: var(--burgundy);
}

/* Single image (legacy) */
.image-banner > img:not(.banner-slide) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Banner slide — identical implementation to .hero-bg-slide */
.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.6s ease;
  pointer-events: none;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.banner-slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 5;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, transform 0.35s ease;
}

.banner-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(79,10,37,0.75) 0%, rgba(79,10,37,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 60px;
  z-index: 3;
}

/* ============================================
   HERO BACKGROUND CROSSFADE SLIDER
   ============================================ */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* scale removed — images shown at full size with contain */
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--burgundy);
  opacity: 0;
  transition: opacity 1.6s ease;
  pointer-events: none;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-bg-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Hero overlay removed — images show clean */
.hero-bg-overlay {
  display: none;
}

/* Hero dot indicator (bottom centre, above scroll hint) */
.hero-slider-dots {
  position: absolute;
  bottom: 76px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.3s ease;
}

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

.image-banner-content {
  max-width: 520px;
  color: var(--white);
}

.image-banner-content .section-label {
  color: var(--gold);
}

.image-banner-content h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.image-banner-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ============================================
   SHOP BY CATEGORY CARDS (Homepage)
   ============================================ */
.category-section {
  padding: 120px 0;
  background: var(--cream);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(79,10,37,0.1) 0%, rgba(79,10,37,0.85) 100%);
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  color: var(--white);
  z-index: 2;
}

.category-card-content .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.category-card-content h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.category-card-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.category-card-content .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   SHOP TAB-STYLE CATEGORY SELECTOR (Shop page)
   ============================================ */
.shop-category-header {
  padding: 40px 0 20px;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.shop-category-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: var(--cream);
  border-radius: 100px;
  max-width: 760px;
  margin: 0 auto;
}

.shop-category-tab {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
}

.shop-category-tab.active {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.shop-category-tab:hover:not(.active) {
  color: var(--burgundy);
}

.shop-sub-filters {
  background: var(--white);
  padding: 28px 0 4px;
}

.sub-filter-row {
  display: none;
  margin-top: 8px;
}

.sub-filter-row .filter-tab {
  font-size: 0.75rem;
  padding: 9px 20px;
}

/* ============================================
   BREW BY TEA TYPE (Icon-led)
   ============================================ */
.brew-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.brew-type-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.brew-type-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.brew-type-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.brew-type-card:hover .brew-type-card-image img {
  transform: scale(1.06);
}

.brew-type-card-body {
  padding: 40px;
}

.brew-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.brew-type-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-light);
  border-radius: 50%;
  color: var(--burgundy);
}

.brew-type-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.4;
}

.brew-type-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--burgundy);
}

.brew-type-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.brew-spec {
  text-align: center;
}

.brew-spec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.brew-spec-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
}

.brew-type-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}

.brew-type-card .blends-in {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--burgundy);
  font-style: italic;
}

/* Iced tea & latte special cards */
.brew-special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.brew-special-card {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.brew-special-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(204, 159, 83, 0.1);
}

.brew-special-icon {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
}

.brew-special-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.brew-special-card h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.brew-special-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.brew-special-card ol {
  list-style: decimal;
  padding-left: 20px;
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.85);
}

.brew-special-card ol li {
  padding: 6px 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.brew-special-card .best-for {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
}

/* ============================================
   LIFESTYLE SECTIONS (Full-width split)
   ============================================ */
.split-section {
  padding: 0;
  background: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-content {
  display: flex;
  align-items: center;
  padding: 100px 80px;
}

.split-content-inner {
  max-width: 520px;
}

.split-image {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}

.split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section.reverse .split-grid {
  direction: rtl;
}

.split-section.reverse .split-content {
  direction: ltr;
}

.split-section.reverse .split-image {
  direction: ltr;
}

.split-section.dark {
  background: var(--burgundy);
  color: var(--white);
}

.split-section.dark h2,
.split-section.dark h3 {
  color: var(--white);
}

.split-section.dark .section-label {
  color: var(--gold);
}

.split-section.dark p {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 960px) {
  .split-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-image {
    min-height: 360px;
  }
  .split-content {
    padding: 80px 40px;
  }
  .split-section.reverse .split-grid {
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .split-content {
    padding: 64px 24px;
  }
  .split-image {
    min-height: 280px;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.hidden { display: none !important; }

/* Smooth image loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s;
}

img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* ============================================
   IMAGE SLIDER (Black Cardamom product card)
   ============================================ */
.card-slider {
  position: relative;
  overflow: hidden;
}

.card-slider .slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-slider .slider-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 1;
}

.card-slider .slider-track img.active {
  opacity: 1;
  z-index: 2;
}

/* Outgoing image — stays fully visible while new one fades in on top */
.card-slider .slider-track img.card-prev {
  opacity: 1;
  z-index: 1;
  transition: none; /* no fade-out — just stays solid underneath */
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  pointer-events: auto;
}

.card-slider:hover .slider-btn,
.card-slider:focus-within .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.12);
  background: var(--white);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.4);
}

/* ============================================
   PAGE HERO WITH IMAGE (About / Sustainability / Blog / Brew)
   ============================================ */
.page-hero-image {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
  color: var(--white);
  text-align: center;
}

.page-hero-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: 0;
}

.page-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(79, 10, 37, 0.55) 0%,
    rgba(30, 5, 15, 0.75) 100%
  );
  z-index: 1;
}

.page-hero-image .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero-image .section-label {
  color: var(--gold);
  letter-spacing: 4px;
}

.page-hero-image h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin: 18px 0 22px;
}

.page-hero-image h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-image p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   ABOUT INLINE STATS
   ============================================ */
.about-stats-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-dark);
}

.stat-inline h4 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-inline h4 span {
  font-size: 1.1rem;
  color: var(--gold);
  margin-left: 2px;
}

.stat-inline p {
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin: 0;
}

@media (max-width: 720px) {
  .about-stats-inline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-hero-image {
    min-height: 50vh;
    padding: 100px 0 60px;
  }
}

/* ============================================
   PRODUCT DETAIL PAGES (PDPs)
   ============================================ */

/* Breadcrumb */
.pdp-breadcrumb {
  padding: 20px 0 0;
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.pdp-breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.pdp-breadcrumb a:hover { color: var(--burgundy); }
.pdp-breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* PDP Hero Grid */
.pdp-hero {
  display: grid;
  grid-template-columns: 55% 1fr;
  min-height: calc(100vh - var(--nav-height));
  background: var(--white);
}

/* Image panel */
.pdp-images {
  position: relative;
  background: var(--pink-light);
  display: flex;
  align-items: stretch;
}
.pdp-image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pdp-image-slider .slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* crossfade approach — no flex, no transform */
}
.pdp-image-slider .slider-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  /* opacity & transition come from .card-slider .slider-track img */
}
/* Thumbnail dots on left side */
.pdp-thumb-rail {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}
.pdp-thumb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(79,10,37,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.pdp-thumb-dot.active {
  background: var(--burgundy);
  transform: scale(1.4);
}
.pdp-nav-btn {
  position: absolute;
  bottom: 24px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  font-size: 1.3rem;
  color: var(--burgundy);
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 5;
}
.pdp-nav-btn:hover { box-shadow: var(--shadow-md); transform: scale(1.08); }
.pdp-nav-prev { right: 72px; }
.pdp-nav-next { right: 24px; }

/* Info panel */
.pdp-info {
  padding: 60px 52px 60px 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.pdp-type-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
}
.pdp-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.15;
  margin-bottom: 10px;
}
.pdp-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.pdp-description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal-light);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--gray-lighter);
  padding-bottom: 28px;
}

/* Quick specs strip */
.pdp-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pdp-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 80px;
}
.pdp-spec-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-light);
}
.pdp-spec-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy);
}

/* Caffeine bar */
.caffeine-bar {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.caffeine-pip {
  width: 16px;
  height: 5px;
  border-radius: 3px;
  background: var(--gray-lighter);
}
.caffeine-pip.filled { background: var(--burgundy); }

/* Pack format */
.pdp-pack-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pdp-pack-options {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pdp-pack-btn {
  padding: 10px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--gray-lighter);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.pdp-pack-btn.active,
.pdp-pack-btn:hover {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

/* Amazon CTA */
.pdp-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.btn-pdp-amazon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FF9900;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-pdp-amazon:hover {
  background: #E88B00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn-pdp-amazon svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* Sticky desktop Amazon CTA group inside pdp-info */
.pdp-cta-group {
  position: sticky;
  bottom: 24px;
  background: var(--white);
  padding: 18px 20px;
  margin-top: 12px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 6px 32px rgba(79,10,37,0.08);
  z-index: 4;
}
.pdp-cta-group .btn-pdp-amazon {
  width: 100%;
}

/* Fixed mobile bottom CTA — injected by JS, hidden by default */
.pdp-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--burgundy);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  display: none;
}
.pdp-mobile-cta .btn-pdp-amazon {
  width: 100%;
  background: var(--gold, #CC9F53);
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 8px;
}
.pdp-mobile-cta .btn-pdp-amazon:hover {
  background: var(--gold);
  color: var(--burgundy);
}
@media (max-width: 768px) {
  .pdp-mobile-cta { display: block; }
  body.has-pdp-mobile-cta { padding-bottom: 76px; }
  .pdp-cta-group { position: static; }
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.32);
  border: 1px solid rgba(204,159,83,0.35);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.32s ease;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.open {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0;
  flex: 1 1 280px;
}
.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.32);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.cookie-btn-accept {
  background: var(--gold, #CC9F53);
  color: var(--burgundy);
}
.cookie-btn-accept:hover { background: var(--gold); }

/* When mobile sticky CTA is also present, lift the cookie banner above it */
body.has-pdp-mobile-cta .cookie-banner { bottom: 84px; }
@media (max-width: 480px) {
  .cookie-banner-inner { padding: 12px 14px; gap: 12px; }
  .cookie-banner p { font-size: 0.78rem; flex: 1 1 100%; }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
}

/* ============ FDA / WELLNESS DISCLAIMER ============ */
.fda-disclaimer {
  background: var(--charcoal, #1C1116);
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  line-height: 1.65;
  text-align: center;
  padding: 18px 24px;
  font-style: italic;
  letter-spacing: 0.01em;
}
.fda-disclaimer strong {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.66rem;
  display: block;
  margin-bottom: 4px;
}
.pdp-amazon-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}

/* Below-fold sections */
.pdp-body {
  padding: 80px 0;
}
.pdp-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.pdp-section-card {
  background: var(--pink-light);
  border-radius: 20px;
  padding: 40px;
}
.pdp-section-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.pdp-ingredients-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-ingredients-list li {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.pdp-allergen-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: #fff3cd;
  border-left: 3px solid #e6a817;
  border-radius: 0 8px 8px 0;
  font-size: 0.83rem;
  color: #6b4f00;
  line-height: 1.6;
}

/* Brew steps */
.pdp-brew-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: brew;
}
.pdp-brew-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  counter-increment: brew;
}
.pdp-brew-steps li::before {
  content: counter(brew);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Callouts grid */
.pdp-callouts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pdp-callout-pill {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--burgundy);
}

/* Back to shop link */
.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 40px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.pdp-back:hover { opacity: 1; }

/* ——— PDP Responsive ——— */
@media (max-width: 968px) {
  .pdp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pdp-images {
    height: 65vw;
    max-height: 520px;
    min-height: 300px;
  }
  .pdp-info {
    padding: 36px 24px 48px;
  }
  .pdp-body-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .pdp-info { padding: 28px 20px 40px; }
  .pdp-name { font-size: 1.9rem; }
  .pdp-section-card { padding: 28px 22px; }
}

/* ============================================
   PDP — RELATED PRODUCTS
   ============================================ */
.pdp-related-section {
  padding: 80px 0;
  background: var(--cream);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.related-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(122, 0, 50, 0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.related-card-img {
  aspect-ratio: 4/4;
  overflow: hidden;
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover .related-card-img img {
  transform: scale(1.04);
}

.related-card-info {
  padding: 20px 22px 24px;
}

.related-card-type {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
  opacity: 0.7;
}

.related-card-info h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

.related-card-info p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 14px;
}

.related-card-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.related-card:hover .related-card-cta { opacity: 0.7; }

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

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .pdp-related-section { padding: 56px 0; }
}

/* ============================================
   MOBILE RESPONSIVE OVERHAUL
   Full cascade: 1024px → 768px → 640px → 480px → 390px
   ============================================ */

/* ---- 1024px: Large tablet ---- */
@media (max-width: 1024px) {
  /* Section padding reduction */
  .ritual-section,
  .why-section,
  .bestsellers-section,
  .daily-section,
  .iced-section,
  .story-section,
  .reviews-section,
  .cta-section,
  .about-origin,
  .about-pillars,
  .founder-section,
  .sustain-values,
  .category-section {
    padding: 80px 0;
  }

  /* Grids */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ritual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .daily-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* Hide the timeline connector line that assumes 4-col */
  .daily-timeline::before {
    display: none;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .brew-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .bestseller-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Image banner text */
  .image-banner-content h2 {
    font-size: 2rem;
  }

  .image-banner-overlay {
    padding: 40px;
  }

  /* Hero adjustments */
  .hero .container {
    padding: 120px 40px 80px;
  }

  .hero-stats {
    gap: 48px;
  }
}

/* ---- 768px: Tablet — largest missing breakpoint ---- */
@media (max-width: 768px) {
  /* Root variable overrides */
  :root {
    --nav-height: 72px;
  }

  /* Container */
  .container, .nav-container {
    padding: 0 20px;
  }

  /* Announcement bar */
  .nav-announcement {
    font-size: 0.72rem;
    padding: 8px 16px;
    letter-spacing: 0.04em;
  }

  /* Section padding */
  .ritual-section,
  .why-section,
  .bestsellers-section,
  .daily-section,
  .iced-section,
  .story-section,
  .reviews-section,
  .about-origin,
  .about-pillars,
  .founder-section,
  .sustain-values,
  .category-section {
    padding: 64px 0;
  }

  .cta-section { padding: 72px 0; }

  /* Section typography */
  h2, .section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero .container {
    padding: 100px 24px 120px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .hero-stats {
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

  .hero-cta-bar {
    bottom: 72px;
    gap: 10px;
  }

  .hero-scroll-hint {
    bottom: 28px;
    font-size: 0.62rem;
  }

  /* Nav search on mobile */
  .nav-search-btn {
    margin-right: 8px;
  }

  /* Product grids */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Category cards */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-card {
    aspect-ratio: 3/4;
  }

  .category-card-content {
    padding: 24px;
  }

  .category-card-content h3 {
    font-size: 1.4rem;
  }

  /* Why / Story grids */
  .why-grid,
  .story-grid,
  .about-origin-grid,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-content {
    max-width: 100%;
  }

  /* Split sections */
  .split-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-image {
    min-height: 300px;
  }

  .split-content {
    padding: 64px 24px;
  }

  .split-section.reverse .split-grid {
    direction: ltr;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Iced grid */
  .iced-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .iced-card {
    padding: 32px 28px;
  }

  /* Ritual grid */
  .ritual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ritual-card {
    padding: 32px 24px;
  }

  /* Daily timeline */
  .daily-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .daily-timeline::before {
    display: none;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pillar-card {
    padding: 32px 24px;
  }

  /* Altitude benefits */
  .altitude-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Image banner */
  .image-banner {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    min-height: 200px;
  }

  .image-banner-overlay {
    padding: 32px 28px;
  }

  .image-banner-content h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .image-banner-content p {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  /* Brew guide */
  .brew-types-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brew-special-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brew-type-card-body {
    padding: 28px;
  }

  .brew-special-card {
    padding: 36px 28px;
  }

  /* Shop filters */
  .shop-filters {
    padding: 20px 0;
    position: relative;
    top: auto;
  }

  .shop-category-tabs {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    justify-content: flex-start;
    padding: 4px 20px;
    gap: 4px;
  }

  .shop-category-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 0.72rem;
  }

  .sub-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 4px 20px;
  }

  .sub-filter-row .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Page hero */
  .page-hero {
    padding: 100px 0 60px;
  }

  .page-hero-image {
    min-height: 48vh;
    padding: 100px 0 60px;
  }

  /* About hero */
  .about-hero {
    padding: 120px 0 72px;
  }

  /* Founder / origin images */
  .founder-image-placeholder,
  .origin-map-placeholder {
    height: 320px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* CTA section */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* PDP */
  .pdp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pdp-images {
    height: 70vw;
    max-height: 480px;
    min-height: 280px;
  }

  .pdp-info {
    padding: 36px 24px 48px;
  }

  .pdp-body-grid {
    grid-template-columns: 1fr;
  }

  /* Shop page hero */
  .shop-products {
    padding: 48px 0 80px;
  }
}

/* ---- 640px: Mobile ---- */
@media (max-width: 640px) {
  /* Section padding */
  .ritual-section,
  .why-section,
  .bestsellers-section,
  .daily-section,
  .iced-section,
  .story-section,
  .reviews-section,
  .about-origin,
  .about-pillars,
  .founder-section,
  .sustain-values,
  .category-section {
    padding: 56px 0;
  }

  .cta-section { padding: 60px 0; }

  /* Hero */
  .hero {
    min-height: 80vh;
    align-items: center;
  }

  .hero .container {
    padding: 80px 20px 100px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 16px;
  }

  .hero-text-block {
    width: 92%;
    transform: translate(-50%, -64%);
  }
  .hero-headline {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
    margin: 16px 0 14px;
  }
  .hero-comparison {
    font-size: 0.88rem;
    line-height: 1.65;
  }
  .hero-eyebrow {
    font-size: 0.62rem;
    padding: 6px 14px;
    letter-spacing: 0.24em;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-cta-bar {
    flex-direction: column;
    bottom: 60px;
    gap: 10px;
    width: 100%;
    padding: 0 24px;
  }

  .hero-cta-bar .btn,
  .hero-cta-bar .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
    border-radius: 999px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 36px;
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
  }

  .hero-stat h3 {
    font-size: 1.8rem;
  }

  /* Grids → single column */
  .products-grid,
  .ritual-grid,
  .daily-timeline,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .category-card {
    aspect-ratio: 4/3;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Product detail card stacks */
  .product-detail-footer {
    flex-direction: column;
    gap: 10px;
  }

  .product-detail-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section header */
  .section-header {
    margin-bottom: 40px;
  }

  .section-label {
    font-size: 0.65rem;
  }

  /* Typography */
  h2, .section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  h3 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  /* Story image grid → single col */
  .story-image-grid {
    grid-template-columns: 1fr;
  }

  .story-image-grid .img-tall {
    grid-row: span 1;
    min-height: 280px;
  }

  .story-image-grid .img-small {
    min-height: 200px;
  }

  /* Altitude benefits */
  .altitude-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Why visual card */
  .why-visual-card {
    padding: 32px 24px;
  }

  .altitude-stat .number {
    font-size: 3.5rem;
  }

  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 0.78rem;
  }

  /* Iced card */
  .iced-card {
    padding: 28px 22px;
  }

  /* Image banner */
  .image-banner {
    aspect-ratio: 3 / 2;
    border-radius: 12px;
  }

  .image-banner-overlay {
    padding: 24px 20px;
  }

  .image-banner-content h2 {
    font-size: 1.3rem;
  }

  .image-banner-content p {
    font-size: 0.85rem;
    display: none; /* hide body text on very small banners */
  }

  /* Page hero */
  .page-hero {
    padding: 90px 0 50px;
  }

  .page-hero-image {
    min-height: 40vh;
    padding: 90px 0 50px;
  }

  /* About hero */
  .about-hero {
    padding: 100px 0 60px;
  }

  .about-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  /* Shop filter bar */
  .shop-category-tabs {
    padding: 4px 16px;
  }

  /* Brew guide */
  .brew-type-card-body {
    padding: 24px 20px;
  }

  .brew-type-card h3 {
    font-size: 1.3rem;
  }

  .brew-type-specs {
    grid-template-columns: 1fr 1fr;
  }

  .brew-special-card {
    padding: 28px 22px;
  }

  .brew-special-card h3 {
    font-size: 1.4rem;
  }

  /* Footer */
  .footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* PDP */
  .pdp-images {
    height: 80vw;
    max-height: 400px;
  }

  .pdp-info {
    padding: 28px 20px 40px;
  }

  .pdp-name {
    font-size: 1.9rem;
  }

  .pdp-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pdp-pack-options {
    flex-direction: column;
    gap: 10px;
  }

  .pdp-pack-btn {
    width: 100%;
    text-align: center;
  }

  .pdp-section-card {
    padding: 28px 22px;
  }

  /* Related products */
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Shop sub-filter row */
  .sub-filter-row {
    padding: 4px 16px;
  }
}

/* ---- 480px: Small mobile ---- */
@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .container, .nav-container {
    padding: 0 16px;
  }

  /* Nav */
  .nav-announcement {
    display: none; /* hide on very small screens to save space */
  }

  .nav-logo img {
    width: 168px;
    height: 44px;
  }

  /* Section padding */
  .ritual-section,
  .why-section,
  .bestsellers-section,
  .daily-section,
  .iced-section,
  .story-section,
  .reviews-section,
  .about-origin,
  .about-pillars,
  .founder-section,
  .sustain-values,
  .category-section,
  .cta-section {
    padding: 48px 0;
  }

  /* Hero */
  .hero .container {
    padding: 72px 16px 90px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 8px 16px;
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }

  /* Bestseller 2-col on small */
  .bestseller-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card-info {
    padding: 16px;
  }

  .product-card-info h3 {
    font-size: 0.95rem;
  }

  .product-card-taste {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  .product-card-benefits {
    display: none; /* hide tag pills at small sizes */
  }

  /* Category card */
  .category-card {
    aspect-ratio: 1;
  }

  /* Why visual */
  .why-visual-card {
    padding: 24px 18px;
  }

  /* Ritual card */
  .ritual-card {
    padding: 24px 18px;
  }

  /* Review card */
  .review-card {
    padding: 24px 20px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 0.92rem;
  }

  .cta-buttons .btn {
    max-width: 280px;
  }

  /* Image banner */
  .image-banner {
    aspect-ratio: 1;
    border-radius: 12px;
  }

  /* Shop */
  .shop-grid {
    gap: 20px;
  }

  .product-detail-body {
    padding: 22px 18px;
  }

  .product-detail-body h3 {
    font-size: 1.2rem;
  }

  /* Brew guide */
  .brew-type-specs {
    grid-template-columns: 1fr;
  }

  .brew-spec {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
  }

  /* PDP */
  .pdp-info {
    padding: 24px 16px 36px;
  }

  .pdp-name {
    font-size: 1.7rem;
  }

  .pdp-specs {
    grid-template-columns: 1fr 1fr;
  }

  .btn-pdp-amazon {
    font-size: 0.8rem;
    padding: 16px 20px;
  }

  /* Related products — 1 col on very small */
  .related-grid {
    grid-template-columns: 1fr;
  }

  /* Search overlay */
  .search-overlay {
    padding-top: calc(var(--nav-height) + 16px);
  }

  .search-input {
    font-size: 0.92rem;
  }

  .search-suggestions {
    display: none; /* hide tags on tiny screens */
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }
}

/* ---- 390px: iPhone SE / Galaxy S / very small ---- */
@media (max-width: 390px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.88rem;
  }

  .bestseller-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  h2, .section-title {
    font-size: 1.5rem;
  }

  .pdp-name {
    font-size: 1.5rem;
  }

  .pdp-specs {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 13px 22px;
    font-size: 0.74rem;
  }
}

/* ---- Touch-specific: always-visible slider buttons ---- */
@media (hover: none) and (pointer: coarse) {
  /* Show slider arrows on touch — can't hover to reveal */
  .slider-btn {
    opacity: 0.85;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .card-slider:hover .slider-btn {
    opacity: 0.85;
  }

  /* Disable hover transforms that don't make sense on touch */
  .product-card:hover,
  .ritual-card:hover,
  .pillar-card:hover,
  .category-card:hover,
  .related-card:hover,
  .review-card:hover {
    transform: none;
  }

  /* Tap target minimum size */
  .nav-toggle,
  .nav-search-btn,
  .filter-tab,
  .shop-category-tab,
  .slider-dot,
  .pdp-pack-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  /* Prevent rubber-band overscroll on fixed elements */
  .nav-links.active {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ---- Landscape phones ---- */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }

  .hero .container {
    padding: 80px 40px 80px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero-stats {
    gap: 40px;
    margin-top: 32px;
  }

  .page-hero-image {
    min-height: 80vh;
  }

  .pdp-images {
    height: 50vw;
    max-height: 360px;
  }
}

/* ============================================
   PDP ALLERGEN / SOURCING BLOCK
   ============================================ */
.pdp-allergen-block {
  margin: 0 0 40px;
  padding: 22px 26px;
  background: var(--cream);
  border: 1px solid var(--gray-lighter);
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--charcoal-light);
}
.pdp-allergen-block .pdp-allergen-row {
  padding: 6px 0;
  border-bottom: 1px solid rgba(79, 10, 37, 0.06);
}
.pdp-allergen-block .pdp-allergen-row:last-child {
  border-bottom: 0;
}
.pdp-allergen-block strong {
  color: var(--burgundy);
  font-weight: 600;
  margin-right: 6px;
}
@media (max-width: 640px) {
  .pdp-allergen-block { padding: 16px 18px; font-size: 0.82rem; }
}

/* ============================================
   AUDIT FIXES — late-cascade overrides
   ============================================ */

/* --- Mobile horizontal overflow guard (root + body) --- */
html {
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  max-width: 100vw;
}
.hero,
.hero-text-block,
.hero-cta-bar,
.container,
.nav-container {
  max-width: 100%;
}

/* --- Hero slider: exclusive crossfade (no double-text) --- */
.hero-bg-slide {
  visibility: hidden;
  z-index: 1;
}
.hero-bg-slide.active {
  visibility: visible;
  z-index: 2;
}

/* --- Logo: bigger wordmark + breathing room --- */
.nav-logo img {
  width: 260px;
  height: 64px;
}
.nav-links {
  gap: 32px;
  margin-left: 24px;
}
@media (max-width: 1280px) {
  .nav-links { gap: 24px; margin-left: 16px; }
  .nav-link { font-size: 0.76rem; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 18px; margin-left: 8px; }
  .nav-link { font-size: 0.72rem; }
}

/* --- PDP hero image: fix the 27px-sliver collapse --- */
.pdp-image-slider {
  aspect-ratio: 4 / 5;
  min-height: 520px;
  width: 100%;
}
@media (min-width: 769px) {
  .pdp-images { align-self: stretch; }
  .pdp-image-slider {
    height: 100%;
    aspect-ratio: auto;
    min-height: calc(100vh - var(--nav-height));
  }
}

/* --- Silk Flower as decorative accent on logo & em headlines --- */
.nav-logo {
  font-family: 'Silk Flower', var(--font-serif);
}
.hero-headline em,
.hero h1 em,
.section-title em,
.page-hero-image h1 em {
  font-family: 'Silk Flower', var(--font-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* --- Nav Amazon CTA button --- */
.nav-amazon-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  margin-left: 14px;
  background: var(--gold);
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--gold-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(204,159,83,0.28);
}
.nav-amazon-cta:hover {
  background: #FFB347;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(204,159,83,0.45);
}
.nav-amazon-cta svg { width: 13px; height: 13px; flex: 0 0 auto; }
.nav-amazon-cta .prime-badge {
  display: inline-block;
  background: #00A8E1;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 3px;
  text-transform: none;
}
@media (max-width: 1100px) {
  .nav-amazon-cta { padding: 6px 10px; font-size: 0.63rem; margin-left: 8px; }
}
@media (max-width: 968px) {
  .nav-amazon-cta {
    /* Sticks to right of hamburger row on mobile */
    margin-left: auto;
    margin-right: 12px;
    padding: 8px 12px;
    font-size: 0.7rem;
  }
  .nav-amazon-cta .prime-badge { display: none; }
}
@media (max-width: 480px) {
  .nav-amazon-cta { padding: 7px 10px; font-size: 0.65rem; gap: 5px; }
  .nav-amazon-cta svg { width: 13px; height: 13px; }
}

/* PDP Amazon CTA — Prime cue */
/* ============================================
   HERO — SPLIT LAYOUT (Left: text | Right: slider)
   ============================================ */
.hero.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
  /* cancel the full-bleed position:relative stacking */
  align-items: stretch;
}

/* ---- LEFT panel ---- */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 60px 80px;
  /* Blurred image background — backdrop-filter blurs the slider behind it */
  background: rgba(255, 244, 244, 0.52);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  position: relative;
  z-index: 2;
}

/* Eyebrow pill: reset absolute positioning from original hero */
.hero.hero-split .hero-eyebrow {
  position: static;
  transform: none;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 24px;
  /* pill style for blurred-image bg */
  background: rgba(255, 255, 255, 0.25);
  color: var(--burgundy);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero.hero-split .hero-headline {
  text-align: left;
  color: var(--burgundy);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  white-space: nowrap; /* keeps "Himalayan Brews," on one line */
}

.hero.hero-split .hero-comparison {
  color: var(--charcoal-light);
  max-width: 460px;
  margin-top: 20px;
}

/* CTA bar: reset absolute bottom positioning */
.hero.hero-split .hero-cta-bar {
  position: static;
  transform: none;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* Scroll hint: reset absolute bottom positioning */
.hero.hero-split .hero-scroll-hint {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  margin-top: 48px;
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gray);
  opacity: 0.75;
}
.hero.hero-split .hero-scroll-hint::after {
  display: none; /* remove bounce arrow for split layout */
}

/* ---- RIGHT panel ---- */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}

/* Slider covers the FULL hero — behind both left and right panels */
.hero.hero-split .hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: none;
}

/* Full-hero image: cover so it fills both panels richly */
.hero.hero-split .hero-bg-slide {
  background-size: cover;
  background-position: center center;
  background-color: var(--burgundy);
}

/* Right panel: transparent so blurred bg shows through gaps */
.hero-right {
  position: relative;
  z-index: 2;
  background: transparent;
  overflow: hidden;
}

/* Soft blend at left edge of right panel — fades into left panel */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 244, 244, 0.68) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

/* Blur overlay inside right panel — covers gaps top & bottom */
.hero-right-blur {
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  background: rgba(255, 244, 244, 0.18);
}

/* Clear image slider inside the right panel — above blur overlay */
/* Mask fades top & bottom of the image into the blurred background */
.hero-right-slider {
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 16%,
    black 84%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 16%,
    black 84%,
    transparent 100%
  );
}

.hero-right-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent; /* gaps show the blurred bg behind */
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-right-slide.active {
  opacity: 1;
}

/* Dots sit at bottom-centre of the right panel — above all layers */
.hero.hero-split .hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ---- Responsive: stack vertically on mobile ---- */
@media (max-width: 968px) {
  .hero.hero-split {
    grid-template-columns: 1fr;
  }

  /* Image panel above text on mobile */
  .hero-right {
    height: 56vw;
    min-height: 260px;
    order: -1;
  }

  .hero-left {
    padding: 40px 24px 48px;
  }

  .hero.hero-split .hero-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero.hero-split .hero-scroll-hint {
    margin-top: 28px;
  }
}

@media (max-width: 600px) {
  .hero-left {
    padding: 32px 20px 40px;
  }
}

/* ---- END HERO SPLIT ---- */

.btn-pdp-amazon .prime-badge {
  display: inline-block;
  background: #00A8E1;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  text-transform: none;
}

/* ── About page trust grid ── */
@media (max-width: 768px) {
  .trust-grid-3 { grid-template-columns: 1fr !important; }
}

/* ── Legal page TOC ── */
.legal-toc {
  background: var(--cream);
  border: 1px solid var(--gray-lighter);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.legal-toc h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.legal-toc ol {
  columns: 2;
  column-gap: 40px;
  padding-left: 20px;
  margin: 0;
}
.legal-toc li {
  font-size: 0.88rem !important;
  margin-bottom: 8px !important;
  color: var(--charcoal-light) !important;
  break-inside: avoid;
}
.legal-toc a {
  color: var(--burgundy) !important;
  text-decoration: none !important;
  transition: color 0.15s ease;
}
.legal-toc a:hover { color: var(--gold) !important; }
@media (max-width: 600px) {
  .legal-toc ol { columns: 1; }
  .legal-toc { padding: 22px 20px; }
}

/* ============================================
   RESPONSIVE SECTION PADDING UTILITIES
   Replaces inline padding: Xpx on <section> tags
   ============================================ */
.section-pad    { padding: 120px 0; }
.section-pad-xl { padding: 140px 0; }

/* 2-column packaging grid (about page) — collapses to 1-col on mobile */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .section-pad    { padding: 80px 0; }
  .section-pad-xl { padding: 88px 0; }
}

@media (max-width: 768px) {
  .section-pad    { padding: 60px 0; }
  .section-pad-xl { padding: 68px 0; }
}

@media (max-width: 640px) {
  .section-pad    { padding: 48px 0; }
  .section-pad-xl { padding: 56px 0; }
  .packaging-grid { grid-template-columns: 1fr; }
  /* Blog article hero — reduce large top/bottom padding on small phones */
  .article-hero   { padding: calc(var(--nav-height) + 48px) 0 48px !important; }
}

@media (max-width: 480px) {
  .section-pad    { padding: 40px 0; }
  .section-pad-xl { padding: 48px 0; }
}
