/* ============================================================
   MELTINBITEZ — PREMIUM BRAND CSS
   Theme: Deep cocoa · Millet beige · Warm gold · Green accent
   ============================================================ */

/* ——— Design Tokens ——— */
:root {
  --cocoa: #2C1810;
  --cocoa-mid: #3D2317;
  --cocoa-light: #5A3520;
  --beige: #F5EDD6;
  --beige-mid: #EDE0C4;
  --beige-light: #FBF6EC;
  --gold: #D4AF4E;
  --gold-light: #E8C96A;
  --gold-dark: #B8942E;
  --green: #4A7C59;
  --green-light: #6BA17A;
  --white: #FFFFFF;
  --text-dark: #1A0F08;
  --text-mid: #6B4E35;
  --text-light: #A08060;
  --whatsapp: #25D366;

  --ff-serif: 'Cormorant Garamond', 'DM Serif Display', Georgia, serif;
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;
  --spacing-4xl: 128px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 8px 32px rgba(44, 24, 16, 0.14);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.20);
  --shadow-gold: 0 8px 32px rgba(212, 175, 78, 0.25);

  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease-smooth);
}

/* ——— Reset & Base ——— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--ff-sans);
  background: var(--beige-light);
  color: var(--text-dark);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ——— Typography ——— */
.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 78, 0.12);
  border: 1px solid rgba(212, 175, 78, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--spacing-md);
}

.section-label--dark {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 78, 0.1);
  border: 1px solid rgba(212, 175, 78, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--spacing-md);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--cocoa);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

.section-title--light {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--beige-light);
  /* Changed back to a light color where appropriate */
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

/* ——— Layout ——— */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: var(--ff-sans);
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--gold {
  background: var(--gold);
  color: var(--cocoa);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 78, 0.4);
}

.btn--gold:active {
  transform: translateY(0);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--cocoa);
  border: 2px solid var(--cocoa);
}

.btn--outline-dark:hover {
  background: var(--cocoa);
  color: var(--beige);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: white;
  border: 2px solid var(--whatsapp);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #1fa855;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* ——— Animations ——— */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s var(--ease-smooth) both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

/* Scroll reveal — start visible; JS will override to 0 on load */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
  padding: 0;
}

.nav.scrolled {
  background: rgba(44, 24, 16, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .nav__inner {
    padding: 16px 20px;
  }
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}

.nav__logo-main {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav__logo-tagline {
  font-size: 0.6rem;
  color: rgba(245, 237, 214, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .nav__actions .nav__link {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav__cta {
    display: none;
  }
}

.nav__cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav__cart-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.nav__cart-label {
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 400px) {
  .nav__cart-label {
    display: none;
  }
}

.nav__cta {
  background: var(--gold);
  color: var(--cocoa);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav__hamburger {
    display: flex;
  }
}

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(44, 24, 16, 0.98);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition);
}

.nav__mobile-link:hover {
  color: var(--gold);
}

.nav__mobile-cta {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Fallback background while video loads */
  background: linear-gradient(135deg, var(--cocoa) 0%, var(--cocoa-mid) 50%, #4a2a18 100%);
}

.hero__videos {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.hero__video-slide.active {
  opacity: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Always show fallback at low opacity as a tint – visible on all screens while video loads */
.hero__mobile-fallback {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cocoa) 0%, var(--cocoa-mid) 100%);
  opacity: 0.5;
  z-index: 1;
}

@media (min-width: 601px) {

  /* Hide the fallback on larger screens where video should work */
  .hero__mobile-fallback {
    opacity: 0 !important;
    pointer-events: none;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgba(28, 14, 6, 0.5) 0%,
      rgba(28, 14, 6, 0.35) 40%,
      rgba(28, 14, 6, 0.6) 80%,
      rgba(28, 14, 6, 0.85) 100%);
}

.hero__dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0;
  transition: var(--transition);
  cursor: pointer;
}

.hero__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  border-color: var(--gold);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
  margin-top: 60px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 78, 0.12);
  border: 1px solid rgba(212, 175, 78, 0.4);
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 237, 214, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}

.hero__br {
  display: block;
}

@media (max-width: 600px) {
  .hero__br {
    display: none;
  }
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(245, 237, 214, 0.7);
  font-size: 0.8rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(212, 175, 78, 0.9);
}

.hero__trust-sep {
  color: rgba(245, 237, 214, 0.3);
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .hero__trust-sep {
    display: none;
  }

  .hero__trust {
    row-gap: 8px;
    column-gap: 16px;
  }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scroll-line 2s ease-in-out infinite;
}

@media (max-width: 600px) {
  .hero__scroll-indicator {
    display: none;
  }
}

/* ============================================================
   INGREDIENTS SECTION
   ============================================================ */
.ingredients {
  position: relative;
  padding: var(--spacing-4xl) 0;
  overflow: hidden;
  z-index: 1;
}

.ingredients__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ingredients__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 1;
}

.ingredients__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 14, 6, 0.88) 0%, rgba(44, 24, 16, 0.82) 100%);
  z-index: 1;
}

.ingredients__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

@media (max-width: 768px) {
  .ingredients__content {
    padding: 0 var(--spacing-md);
  }
}

.ingredients__header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.ingredients__intro {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(245, 237, 214, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ingredients__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}

@media (max-width: 1000px) {
  .ingredients__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ingredients__cards {
    grid-template-columns: 1fr;
  }
}

.ingredient-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 78, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transition-delay: var(--delay, 0s);
}

.ingredient-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 78, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 78, 0.5);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ingredient-card:hover::before {
  opacity: 1;
}

.ingredient-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--spacing-md);
}

.ingredient-card__icon svg {
  width: 100%;
  height: 100%;
}

.ingredient-card__no {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: var(--spacing-xs);
}

.ingredient-card__title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--beige);
  margin-bottom: var(--spacing-sm);
}

.ingredient-card__desc {
  font-size: 0.9rem;
  color: rgba(245, 237, 214, 0.65);
  line-height: 1.65;
  margin-bottom: var(--spacing-md);
}

.ingredient-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(74, 124, 89, 0.15);
  border: 1px solid rgba(74, 124, 89, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.ingredients__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 78, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl) var(--spacing-2xl);
  flex-wrap: wrap;
  gap: var(--spacing-xl);
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.8rem;
  color: rgba(245, 237, 214, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-item__sep {
  width: 1px;
  height: 56px;
  background: rgba(212, 175, 78, 0.2);
}

@media (max-width: 600px) {
  .ingredients__stats {
    padding: var(--spacing-lg);
  }

  .stat-item__sep {
    display: none;
  }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  background: var(--beige-light);
  padding: var(--spacing-4xl) 0;
  position: relative;
  z-index: 1;
}

.products__header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.products__intro {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

@media (max-width: 960px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(44, 24, 16, 0.06);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__badge-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
}

.product-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--cocoa);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--beige-mid);
  aspect-ratio: 1;
}

.product-card__image-wrap shopify-media {
  width: 100%;
  height: 100%;
}

.product-card__image-wrap shopify-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.product-card:hover .product-card__image-wrap shopify-media img {
  transform: scale(1.05);
}

.product-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.1), transparent);
  pointer-events: none;
}

.product-card__body {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.product-card__name {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cocoa);
  line-height: 1.2;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  margin-top: var(--spacing-sm);
}

.product-card__price {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cocoa);
  margin-bottom: var(--spacing-sm);
}

.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

shopify-variant-selector::part(form) {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

shopify-variant-selector::part(label) {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

shopify-variant-selector::part(radio) {
  padding: 6px 14px;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--beige-light);
  cursor: pointer;
  transition: var(--transition);
}

shopify-variant-selector::part(radio):hover {
  border-color: var(--gold);
  color: var(--cocoa);
}

shopify-variant-selector::part(radio-selected) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--cocoa);
  font-weight: 700;
}

.product-card__add,
.product-card__buy {
  width: 100%;
  justify-content: center;
}

/* Product variant chips */
.product-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.variant-chip {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--beige-mid);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--beige-light);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.variant-chip:hover {
  border-color: var(--gold);
  color: var(--cocoa);
}

.variant-chip--active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--cocoa);
  font-weight: 700;
}


/* Skeleton loading */
.products__loading {
  display: contents;
}

.product-card--skeleton {
  pointer-events: none;
}

.skeleton {
  background: linear-gradient(90deg, var(--beige-mid) 25%, var(--beige) 50%, var(--beige-mid) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

.skeleton--img {
  aspect-ratio: 1;
  border-radius: 0;
}

.skeleton--title {
  height: 24px;
  margin: 16px 16px 8px;
  width: 70%;
}

.skeleton--text {
  height: 40px;
  margin: 0 16px 16px;
}

.skeleton--btn {
  height: 44px;
  margin: 0 16px 16px;
  border-radius: var(--radius-pill);
}

/* Cart customization */
shopify-cart::part(dialog) {
  border-radius: var(--radius-xl) 0 0 0;
  border: none;
  box-shadow: -8px 0 60px rgba(0, 0, 0, 0.25);
}

shopify-cart::part(primary-button) {
  background: var(--gold);
  color: var(--cocoa);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
}

shopify-cart::part(secondary-button) {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius-pill);
  fill: var(--text-mid);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) var(--spacing-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(44, 24, 16, 0.06);
  box-shadow: var(--shadow-sm);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-badges {
    padding: var(--spacing-lg);
    gap: var(--spacing-lg);
  }

  .trust-badge {
    font-size: 0.8rem;
  }
}

/* ============================================================
   WHY MELTINBITEZ
   ============================================================ */
.why {
  background: var(--cocoa);
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.why__header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.why__intro {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(245, 237, 214, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}

@media (max-width: 1000px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 78, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: var(--transition);
  transition-delay: var(--delay, 0s);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 78, 0.35);
  transform: translateY(-6px);
}

.why-card__icon-wrap {
  margin-bottom: var(--spacing-md);
  animation: float 4s ease-in-out infinite;
}

.why-card__icon {
  width: 64px;
  height: 64px;
}

.why-card__title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--beige);
  margin-bottom: var(--spacing-sm);
}

.why-card__desc {
  font-size: 0.875rem;
  color: rgba(245, 237, 214, 0.6);
  line-height: 1.65;
  margin-bottom: var(--spacing-md);
}

.why-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-card__list li {
  font-size: 0.8rem;
  color: rgba(212, 175, 78, 0.75);
  padding-left: 16px;
  position: relative;
}

.why-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* Comparison table */
.comparison {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 78, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  overflow: hidden;
}

.comparison__title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--beige);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.comparison__table-wrap {
  overflow-x: auto;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison__table th,
.comparison__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison__table th {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.5);
}

.comparison__table td:first-child {
  color: rgba(245, 237, 214, 0.7);
  font-weight: 500;
}

.comparison__us {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.comparison__yes {
  color: var(--green-light) !important;
}

.comparison__no {
  color: rgba(245, 237, 214, 0.35) !important;
}

.comparison__table th.comparison__us {
  background: rgba(212, 175, 78, 0.08);
  border-top: 2px solid var(--gold);
  color: var(--gold) !important;
  text-transform: uppercase;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-proof {
  background: var(--beige-light);
  padding: var(--spacing-4xl) 0;
  position: relative;
  z-index: 1;
}

.urgency-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, rgba(212, 175, 78, 0.12), rgba(212, 175, 78, 0.18), rgba(212, 175, 78, 0.12));
  border: 1px solid rgba(212, 175, 78, 0.4);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  margin-bottom: var(--spacing-3xl);
  font-size: 0.9rem;
  color: var(--cocoa);
  font-weight: 600;
}

.urgency-banner__dot {
  width: 10px;
  height: 10px;
  background: #F44;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.social-proof__header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.social-proof__intro {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}

@media (max-width: 1100px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid rgba(44, 24, 16, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card--featured {
  background: var(--cocoa);
  border-color: rgba(212, 175, 78, 0.3);
  grid-row: span 1;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.testimonial-card--featured .testimonial-card__stars {
  color: var(--gold-light);
}

.testimonial-card__quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-style: italic;
  flex: 1;
}

.testimonial-card--featured .testimonial-card__quote {
  color: rgba(245, 237, 214, 0.8);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--cocoa-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--cocoa);
}

.testimonial-card--featured .testimonial-card__name {
  color: var(--beige);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-light);
}

.testimonial-card--featured .testimonial-card__role {
  color: rgba(245, 237, 214, 0.5);
}

.testimonial-card__verified {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
  background: rgba(74, 124, 89, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(74, 124, 89, 0.25);
}

.testimonial-card--featured .testimonial-card__verified {
  color: var(--green-light);
  background: rgba(74, 124, 89, 0.15);
}

/* Rating summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl) var(--spacing-2xl);
  border: 1px solid rgba(44, 24, 16, 0.06);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-3xl);
  flex-wrap: wrap;
  justify-content: center;
}

.rating-summary__score {
  font-family: var(--ff-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--cocoa);
  line-height: 1;
}

.rating-summary__stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.rating-summary__count {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.rating-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.rating-bar__track {
  flex: 1;
  height: 6px;
  background: var(--beige-mid);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

/* Preorder section */
.preorder-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-3xl);
  align-items: center;
  background: var(--cocoa);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl) var(--spacing-3xl);
  position: relative;
  overflow: hidden;
}

.preorder-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 800px) {
  .preorder-section {
    grid-template-columns: 1fr;
    padding: var(--spacing-xl);
    gap: var(--spacing-xl);
  }
}

.preorder-section__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 78, 0.12);
  border: 1px solid rgba(212, 175, 78, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--spacing-md);
}

.preorder-section__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--beige);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.preorder-section__desc {
  color: rgba(245, 237, 214, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  max-width: 500px;
}

.preorder-section__actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.preorder-section .btn--outline-dark {
  color: var(--beige);
  border-color: rgba(245, 237, 214, 0.3);
}

.preorder-section .btn--outline-dark:hover {
  background: rgba(245, 237, 214, 0.1);
  color: var(--beige);
}

.preorder-section__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(245, 237, 214, 0.45);
}

.preorder-counter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 78, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  min-width: 200px;
}

.preorder-counter__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.5);
  margin-bottom: 8px;
}

.preorder-counter__value {
  font-family: var(--ff-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.preorder-counter__bar-wrap {
  margin-bottom: 10px;
}

.preorder-counter__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.preorder-counter__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 4px;
  transition: width 1.5s var(--ease-smooth);
}

.preorder-counter__sub {
  font-size: 0.75rem;
  color: rgba(245, 237, 214, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  position: relative;
  z-index: 1;
}

.footer__email-strip {
  background: linear-gradient(90deg, var(--cocoa) 0%, var(--cocoa-mid) 100%);
  padding: var(--spacing-2xl) 0;
  border-bottom: 1px solid rgba(212, 175, 78, 0.15);
}

.footer__email-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .footer__email-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer__email-title {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--beige);
  font-weight: 600;
  margin-bottom: 8px;
}

.footer__email-text p {
  color: rgba(245, 237, 214, 0.6);
  font-size: 0.9rem;
}

.footer__email-form {
  display: flex;
  gap: 12px;
}

@media (max-width: 480px) {
  .footer__email-form {
    flex-direction: column;
  }
}

.footer__email-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(245, 237, 214, 0.15);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.footer__email-input::placeholder {
  color: rgba(245, 237, 214, 0.35);
}

.footer__email-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.footer__email-btn {
  flex-shrink: 0;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
}

.footer__email-success {
  background: rgba(74, 124, 89, 0.15);
  border: 1px solid rgba(74, 124, 89, 0.3);
  color: var(--green-light);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-top: 12px;
}

.footer__main {
  padding: var(--spacing-2xl) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
}

.footer__logo {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.02em;
}

.footer__brand-story {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cocoa);
  transform: translateY(-3px);
}

.footer__links-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--spacing-md);
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links-list a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__links-list a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--gold);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.55);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .ingredients {
    padding: var(--spacing-3xl) 0;
  }

  .products {
    padding: var(--spacing-3xl) 0;
  }

  .why {
    padding: var(--spacing-3xl) 0;
  }

  .social-proof {
    padding: var(--spacing-3xl) 0;
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .hero__headline {
    margin-bottom: 16px;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .btn--lg {
    padding: 14px 24px;
  }
}

/* ============================================================
   PRINT & ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE FIXES
   ============================================================ */

/* Prevent any section from overflowing horizontally */
section,
footer,
nav,
header {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Fix .why section content z-index so it's above the ::before radial */
.why .container {
  position: relative;
  z-index: 2;
}

/* Fix social-proof section text contrast */
.social-proof__header .section-title {
  color: var(--cocoa);
}

.urgency-banner strong {
  color: var(--cocoa);
  font-weight: 700;
}

/* Make sure all .reveal elements never stay hidden */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================================
   MOBILE — small phones ≤480px
   ============================================================ */
@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding: 0 16px;
    margin-top: 90px;
  }

  .hero__headline {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 14px;
  }

  .hero__subtext {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .section-title,
  .section-title--light {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .ingredients__cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .testimonials {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .footer__email-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__email-form {
    flex-direction: column;
  }

  .preorder-section {
    grid-template-columns: 1fr;
    padding: var(--spacing-lg);
    gap: var(--spacing-lg);
  }

  .preorder-counter {
    min-width: unset;
    width: 100%;
  }

  .comparison__table td,
  .comparison__table th {
    padding: 10px 10px;
    font-size: 0.78rem;
  }

  .rating-summary {
    padding: var(--spacing-lg);
    gap: var(--spacing-lg);
  }

  .rating-summary__score {
    font-size: 3.5rem;
  }

  .nav__inner {
    padding: 12px 16px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }

  .container {
    padding: 0 14px;
  }

  .ingredients,
  .products,
  .why,
  .social-proof {
    padding: var(--spacing-2xl) 0;
  }

  .ingredients__header,
  .products__header,
  .why__header,
  .social-proof__header {
    margin-bottom: var(--spacing-xl);
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 16px;
  }
}

/* ============================================================
   TABLET — 481px to 768px
   ============================================================ */
@media (min-width: 481px) and (max-width: 768px) {

  .section-title,
  .section-title--light {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__headline {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
  }

  .preorder-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }

  .ingredients__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}