/* VALDO CAFÉ - DESIGN SYSTEM & STYLES */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,800&family=Bebas+Neue&family=Hanken+Grotesk:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-brand-primary: #e5322b;
  --color-brand-primary-hover: #cc251f;
  --color-brand-secondary: #241712;
  --color-brand-dark: #190f0b;
  --color-surface-paper: #fbf7ef;
  --color-surface-cream: #f4e5c7;
  --color-surface-card: #ffffff;
  --color-border: #e4d6bd;
  --color-border-subtle: #ebdcca;
  --color-text-default: #241712;
  --color-text-muted: #6b5a4e;
  --color-text-light: #9b897c;
  --color-accent-yellow: #ffc20e;
  --color-accent-sky: #25abe0;
  --color-accent-green: #00a676;
  --color-rating-star: #ffae00;
  --color-white: #ffffff;

  --font-display: 'Barlow Condensed', 'Bebas Neue', 'Hanken Grotesk', sans-serif;
  --font-heading: 'Hanken Grotesk', 'Inter', sans-serif;
  --font-body: 'Hanken Grotesk', 'Inter', system-ui, sans-serif;

  --ticker-height: 38px;
  --header-height: 76px;
  --transition-speed: 0.25s;
  --radius-pill: 9999px;
  --radius-card: 16px;
  --radius-sm: 8px;
  --shadow-card: 0 10px 30px rgba(36, 23, 18, 0.08);
  --shadow-hover: 0 18px 40px rgba(36, 23, 18, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-surface-paper);
  color: var(--color-text-default);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
  background-color: var(--color-surface-paper);
}

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

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

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

/* Container */
.container {
  width: min(100% - 32px, 1220px);
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, 1340px);
  margin-inline: auto;
}

/* =========================================
   1. ANNOUNCEMENT TICKER MARQUEE
========================================= */
.announcement-ticker {
  height: var(--ticker-height);
  background-color: var(--color-brand-primary);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  gap: 32px;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-accent-yellow);
  border-radius: 50%;
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   2. STICKY HEADER & NAVBAR
========================================= */
.main-header {
  position: fixed;
  top: var(--ticker-height);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, top 0.2s ease;
  background-color: transparent;
  color: var(--color-white);
  transform: translateY(0);
}

.main-header.scrolled {
  top: 0;
  background-color: rgba(251, 247, 239, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-brand-secondary);
  box-shadow: 0 10px 30px rgba(36, 23, 18, 0.08);
}

.main-header.header-hidden {
  transform: translateY(-120%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Brand Logo & Rating Badge */
.header-brand-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-shrink: 0;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  display: inline-flex;
  align-items: baseline;
  transition: color var(--transition-speed);
  color: var(--color-white);
}

.main-header.scrolled .brand-logo {
  color: var(--color-brand-primary);
}

.brand-logo sup {
  font-size: 15px;
  margin-left: 2px;
  font-weight: 700;
  vertical-align: super;
}

.header-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  transition: all var(--transition-speed);
}

.main-header.scrolled .header-rating-badge {
  background: rgba(36, 23, 18, 0.06);
  color: var(--color-text-default);
  border-color: rgba(36, 23, 18, 0.1);
}

.header-rating-badge .stars {
  color: var(--color-accent-yellow);
  letter-spacing: 1px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 2px;
  transition: color var(--transition-speed), opacity var(--transition-speed);
  color: inherit;
}

.nav-link:hover {
  opacity: 0.8;
  color: var(--color-accent-yellow);
}

.main-header.scrolled .nav-link:hover {
  color: var(--color-brand-primary);
}

.chevron-icon {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-speed);
}

.nav-item:hover .chevron-icon {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: 12px;
  padding: 12px 8px;
  box-shadow: 0 16px 40px rgba(36, 23, 18, 0.14);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  list-style: none;
  z-index: 100;
}

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

.dropdown-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand-secondary);
  border-radius: 8px;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

.dropdown-item a:hover {
  background-color: var(--color-surface-paper);
  color: var(--color-brand-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  transition: all var(--transition-speed);
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.main-header.scrolled .action-btn {
  background: rgba(36, 23, 18, 0.05);
  border-color: var(--color-border);
  color: var(--color-brand-secondary);
}

.main-header.scrolled .action-btn:hover {
  background: rgba(36, 23, 18, 0.1);
  color: var(--color-brand-primary);
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: var(--color-brand-primary);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mobile-toggle {
  display: none;
}

/* =========================================
   3. HERO BANNER SECTION
========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-brand-secondary);
  color: var(--color-white);
  padding-top: calc(var(--ticker-height) + var(--header-height));
  padding-bottom: 80px;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.05) 85%);
  pointer-events: none;
}

.hero-overlay-radial {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 75% 40%, rgba(255, 194, 14, 0.15), transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
}

.hero-badge-mobile {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(66px, 9.6vw, 116px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero-title .title-yellow {
  display: block;
  color: var(--color-accent-yellow);
}

.hero-subtitle {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 34px;
  max-width: 520px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: var(--color-brand-primary);
  color: var(--color-white);
  border: 2px solid var(--color-brand-primary);
}

.btn-primary:hover {
  background-color: var(--color-brand-primary-hover);
  border-color: var(--color-brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 50, 43, 0.4);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-brand-secondary);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* =========================================
   4. TRUST BAR SECTION
========================================= */
.trust-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 34px 0;
  position: relative;
  z-index: 20;
}

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

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--color-surface-paper);
  color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-brand-secondary);
  line-height: 1.2;
}

.trust-copy {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* =========================================
   5. STORY FEATURE ("LOS MONTAÑEROS")
========================================= */
.story-section {
  padding: 80px 0;
  background-color: var(--color-brand-primary);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.story-media-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-photos-duo {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 20px;
  align-items: flex-start;
  max-width: 480px;
  width: 100%;
}

.story-photo-item {
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s ease;
}

.story-photo-item:hover {
  transform: translateY(-6px) scale(1.03);
}

.photo-portrait {
  margin-top: 32px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-brand-secondary);
  margin-bottom: 24px;
}

.story-copy {
  font-size: 18px;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-secondary {
  font-size: 15px;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* =========================================
   6. PRODUCT CATALOG & GRID
========================================= */
.products-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
}

.products-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.filter-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--color-border);
  background: var(--color-surface-paper);
  color: var(--color-brand-secondary);
  transition: all 0.2s ease;
}

.pill-btn.active,
.pill-btn:hover {
  background: var(--color-brand-primary);
  color: var(--color-white);
  border-color: var(--color-brand-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.product-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  box-shadow: 0 4px 18px rgba(36, 23, 18, 0.04);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(36, 23, 18, 0.1);
  border-color: var(--color-border);
}

.product-image-wrap {
  position: relative;
  background: #f6efe2;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.product-body {
  padding: 15px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.product-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.product-vendor {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7b6a5f;
  margin-bottom: 8px;
}

.product-price-row {
  margin-bottom: 10px;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #241712;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Variant Selectors matching screenshot */
.selector-group {
  margin-bottom: 8px;
}

.selector-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #736357;
  margin-bottom: 4px;
  display: block;
}

.selector-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* THE PILL BUTTONS */
.pill-btn-option {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid #dfd4c5;
  background: #ffffff;
  color: #594a40;
  transition: all 0.2s ease;
  cursor: pointer;
  line-height: 1.4;
}

.pill-btn-option:hover {
  border-color: #cbbfad;
  color: #241712;
}

.pill-btn-option.selected {
  background-color: #eb3223;
  color: #ffffff;
  border-color: #eb3223;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(235, 50, 35, 0.25);
}

/* FULL-WIDTH AGREGAR AL CARRITO BUTTON */
.btn-add-cart-full {
  width: 100%;
  margin-top: 12px;
  padding: 10px 16px;
  background-color: #eb3223;
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(235, 50, 35, 0.2);
}

.btn-add-cart-full:hover {
  background-color: #d12417;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(235, 50, 35, 0.35);
}

.btn-add-cart-full:active {
  transform: translateY(0);
}

/* =========================================
   7. COFFEE FINDER QUIZ SECTION
========================================= */
.quiz-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--color-brand-secondary) 0%, #3a2219 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.quiz-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.quiz-step-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.quiz-choice-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--color-white);
  text-align: left;
  transition: all 0.2s ease;
}

.quiz-choice-btn:hover,
.quiz-choice-btn.active {
  border-color: var(--color-accent-yellow);
  background: rgba(255, 194, 14, 0.18);
  transform: translateY(-2px);
}

.quiz-choice-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--color-accent-yellow);
}

.quiz-choice-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.quiz-result-card {
  display: none;
  background: #ffffff;
  color: var(--color-brand-secondary);
  border-radius: 18px;
  padding: 28px;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}

.quiz-result-card.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   8. ORIGIN & MEDIA FULL BANNER
========================================= */
.origin-banner-section {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.origin-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.origin-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(36, 23, 18, 0.85) 0%, rgba(36, 23, 18, 0.4) 60%, transparent 100%);
}

.origin-banner-content {
  position: relative;
  z-index: 5;
  max-width: 580px;
}

/* =========================================
   9. REVIEWS SECTION
========================================= */
.reviews-section {
  padding: 85px 0 95px;
  background-color: #f7f4ed;
  overflow: hidden;
}

.reviews-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 0.94;
  color: #1a1412;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.reviews-nav-arrows {
  display: flex;
  gap: 10px;
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #dfd8cc;
  background-color: #ffffff;
  color: #1a1412;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding-bottom: 2px;
}

.reviews-nav-btn:hover {
  background-color: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
  transform: scale(1.05);
}

.reviews-carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 28px;
  scrollbar-width: thin;
  scrollbar-color: #d6ccbd transparent;
  -webkit-overflow-scrolling: touch;
}

.reviews-carousel-track::-webkit-scrollbar {
  height: 6px;
}

.reviews-carousel-track::-webkit-scrollbar-thumb {
  background-color: #d6ccbd;
  border-radius: 9999px;
}

/* Modern Review Card */
.review-card-modern {
  flex: 0 0 315px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eee7dc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.review-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e2d8;
}

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

.review-card-modern:hover .review-top-img {
  transform: scale(1.04);
}

.review-badge-rating {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #ffffff;
  color: #1a1412;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.review-badge-verified {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #eb3223;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(235, 50, 35, 0.35);
}

.review-content-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.review-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-stars-gold {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-tag-lover {
  color: #eb3223;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-quote-text {
  font-size: 13.5px;
  line-height: 1.48;
  color: #2e2824;
  font-weight: 500;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.review-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eb3223;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author-meta {
  line-height: 1.25;
}

.review-author-fullname {
  font-size: 13px;
  font-weight: 800;
  color: #1a1412;
}

.review-author-city {
  font-size: 12px;
  color: #78716c;
}

/* Product Mini-Widget */
.review-product-widget {
  background: #fdfbf7;
  border: 1px solid #f0eae1;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.review-prod-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-prod-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 2px;
  flex-shrink: 0;
  border: 1px solid #f4ede3;
}

.review-prod-details {
  line-height: 1.2;
}

.review-prod-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: #eb3223;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.review-prod-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: #1a1412;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.review-prod-vendor {
  display: block;
  font-size: 10px;
  color: #78716c;
  font-weight: 600;
  text-transform: uppercase;
}

.review-prod-price {
  font-size: 14px;
  font-weight: 800;
  color: #1a1412;
  margin-top: 3px;
}

.review-prod-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.review-selector-col {
  display: flex;
  flex-direction: column;
}

.review-sel-label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: #eb3223;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.review-select-wrapper {
  position: relative;
}

.review-select {
  width: 100%;
  border: 1px solid #f3d5d2;
  border-radius: var(--radius-pill);
  padding: 5px 22px 5px 10px;
  font-size: 11px;
  font-weight: 600;
  background-color: #ffffff;
  color: #2e2824;
  cursor: pointer;
  appearance: none;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23eb3223' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: border-color 0.2s;
}

.review-select:focus {
  border-color: #eb3223;
}

.review-btn-add-cart {
  width: 100%;
  background-color: #211c19;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.review-btn-add-cart:hover {
  background-color: #eb3223;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(235, 50, 35, 0.3);
}

.review-btn-add-cart:active {
  transform: translateY(0);
}

/* =========================================
   10. WHOLESALE & NEWSLETTER
========================================= */
.wholesale-section {
  position: relative;
  background-image: url('assets/wholesale-band.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 100px 0;
  overflow: hidden;
}

.wholesale-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 10, 8, 0.88) 0%, rgba(14, 10, 8, 0.65) 45%, rgba(14, 10, 8, 0.25) 100%);
  z-index: 1;
}

.wholesale-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.wholesale-content {
  max-width: 560px;
}

.wholesale-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.95;
}

.wholesale-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 0.92;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.wholesale-desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 30px;
  max-width: 480px;
}

.wholesale-btn-aliado {
  display: inline-block;
  background-color: #eb3223;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(235, 50, 35, 0.35);
  transition: all 0.25s ease;
}

.wholesale-btn-aliado:hover {
  background-color: #d22517;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(235, 50, 35, 0.45);
}

/* Floating Wholesale Product Card */
.wholesale-product-card {
  background-color: #ebe5db;
  border-radius: 28px;
  padding: 34px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  max-width: 440px;
  width: 100%;
  margin-left: auto;
  color: #1a1412;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wholesale-product-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.wholesale-card-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: #1a1412;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.wholesale-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.wholesale-card-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: #1a1412;
  line-height: 1;
}

.wholesale-card-unit {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #635b54;
}

.wholesale-variant-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: #4a433d;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wholesale-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-bottom: 26px;
}

.wholesale-pill-btn {
  background-color: #dfd9ce;
  color: #3b3530;
  border: none;
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.wholesale-pill-btn:hover {
  background-color: #d2cbbe;
}

.wholesale-pill-btn.active {
  background-color: #eb3223;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(235, 50, 35, 0.35);
}

.wholesale-btn-buy {
  width: 100%;
  background-color: #eb3223;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(235, 50, 35, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wholesale-btn-buy:hover {
  background-color: #d22517;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(235, 50, 35, 0.45);
}

.wholesale-btn-buy:active {
  transform: translateY(0);
}

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

  .wholesale-overlay {
    background: rgba(14, 10, 8, 0.82);
  }

  .wholesale-product-card {
    margin: 0 auto;
  }
}

.newsletter-section {
  background-color: var(--color-surface-cream);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 15px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--color-brand-primary);
}

/* =========================================
   11. CART DRAWER & SEARCH DRAWER
========================================= */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 420px);
  background: #ffffff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.drawer-close-btn {
  font-size: 22px;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.drawer-close-btn:hover {
  color: var(--color-brand-primary);
}

.free-shipping-bar {
  background: var(--color-surface-paper);
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
}

.shipping-progress-text {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.progress-track {
  height: 6px;
  background: #e4d6bd;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-brand-primary);
  width: 0%;
  transition: width 0.4s ease;
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.empty-cart-msg {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 40px;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0e6d6;
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  background: var(--color-surface-paper);
  border-radius: 8px;
  padding: 4px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-item-variant {
  font-size: 12px;
  color: var(--color-text-muted);
}

.cart-item-price {
  font-weight: 800;
  color: var(--color-brand-primary);
  font-size: 14px;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.cart-qty-btn {
  padding: 4px 10px;
  font-weight: 800;
  font-size: 13px;
  background: var(--color-surface-paper);
}

.cart-qty-val {
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 700;
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-paper);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.cart-total-label {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-total-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-brand-primary);
}

.btn-checkout {
  width: 100%;
  background: var(--color-brand-primary);
  color: var(--color-white);
  padding: 16px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.btn-checkout:hover {
  background: var(--color-brand-primary-hover);
  transform: translateY(-2px);
}

/* Search Modal Overlay */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  width: min(100%, 640px);
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  height: fit-content;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 12px;
  gap: 12px;
}

.search-input {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  border: none;
  outline: none;
  font-family: inherit;
}

.search-results-list {
  margin-top: 20px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================
   PRODUCT QUICK VIEW MODAL
========================================= */
.product-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  width: min(92vw, 840px);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  z-index: 1060;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s;
}

.product-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4eee2;
  border: 1px solid var(--color-border);
  color: var(--color-brand-secondary);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: var(--color-brand-primary);
  color: #ffffff;
  border-color: var(--color-brand-primary);
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: stretch;
}

.modal-image-col {
  background: #f6efe2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  position: relative;
}

.modal-product-img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(36, 23, 18, 0.15));
}

.modal-details-col {
  padding: 36px 36px 36px 32px;
  display: flex;
  flex-direction: column;
}

.modal-product-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}

.modal-product-vendor {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7b6a5f;
  margin-bottom: 8px;
}

.modal-product-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #241712;
  margin-bottom: 10px;
}

.modal-product-notes {
  display: inline-block;
  background: rgba(229, 50, 43, 0.08);
  color: var(--color-brand-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  width: fit-content;
}

.modal-product-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.modal-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid #dfd4c5;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #ffffff;
}

.modal-qty-btn {
  width: 38px;
  height: 38px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbf7ef;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.modal-qty-btn:hover {
  background: #f0e6d6;
}

.modal-qty-val {
  min-width: 36px;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
}

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

  .modal-image-col {
    padding: 24px;
    min-height: 220px;
  }

  .modal-product-img {
    max-height: 220px;
  }

  .modal-details-col {
    padding: 24px 20px;
  }
}

/* =========================================
   12. FOOTER
========================================= */
.site-footer {
  background-color: var(--color-brand-secondary);
  color: var(--color-white);
  padding: 70px 0 30px;
  border-top: 4px solid var(--color-brand-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-brand-primary);
  margin-bottom: 12px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-yellow);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* =========================================
   13. RESPONSIVE BREAKPOINTS
========================================= */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

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

  .story-grid,
  .wholesale-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .header-rating-badge {
    display: none;
  }

  .hero-badge-mobile {
    display: inline-flex;
  }

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

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

  .quiz-options-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}