/* ==================== 1. CSS VARIABLES (DESIGN TOKENS) ==================== */
:root {
  /* ==================== PRODUCT COLOR PALETTE ==================== */
  /* Advanced Amino Formula */
  --amino-primary: #c41423;
  --amino-secondary: #ecbfbe;
  
  /* Advanced Memory Formula */
  --memory-primary: #5e9193;
  --memory-secondary: #809b94;
  
  /* Advanced Mitochondrial Formula */
  --mitochondrial-primary: #0047ab;
  --mitochondrial-secondary: #4a7fb8;
  
  /* Clear Flux Blood Support */
  --clearflux-primary: #ff719a;
  --clearflux-secondary: #ff99b0;
  
  /* EndoPeak */
  --endopeak-primary: #FFD700;
  --endopeak-secondary: #FFA500;
  
  /* Moringa Magic */
  --moringa-primary: #FF69B4;
  --moringa-secondary: #FF1493;
  
  /* CitrusBurn */
  --citrusburn-primary: #d54e21;
  --citrusburn-secondary: #ff99b0;

  /* ==================== SYSTEM COLOR PALETTE ==================== */
  --primary: #ff7d48;
  --primary-dark: #ff561c;
  --text: #212121;
  --text-mid: #666666;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --line: #e0e0e0;
  --beige: #e8d8c2;

  /* ==================== TYPOGRAPHY ==================== */
  --sans-serif: 'Inter', sans-serif;

  /* ==================== SPACING ==================== */
  --section-py: 64px;
  --section-py-mobile: 40px;

  /* ==================== LAYOUT ==================== */
  --container: 1140px;

  /* ==================== BORDER RADIUS ==================== */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* ==================== HEADER & BANNER ==================== */
  --header-height: 80px;
  --banner-height: 50px;

  /* ==================== SHADOWS (ELEVATION SYSTEM) ==================== */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* ==================== TRANSITIONS ==================== */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ==================== GRADIENT DEFINITIONS ==================== */
  --gradient-amino: linear-gradient(135deg, var(--amino-primary) 0%, var(--amino-secondary) 100%);
  --gradient-memory: linear-gradient(135deg, var(--memory-primary) 0%, var(--memory-secondary) 100%);
  --gradient-mitochondrial: linear-gradient(135deg, var(--mitochondrial-primary) 0%, var(--mitochondrial-secondary) 100%);
  --gradient-clearflux: linear-gradient(135deg, var(--clearflux-primary) 0%, var(--clearflux-secondary) 100%);
  --gradient-endopeak: linear-gradient(135deg, var(--endopeak-primary) 0%, var(--endopeak-secondary) 100%);
  --gradient-moringa: linear-gradient(135deg, var(--moringa-primary) 0%, var(--moringa-secondary) 100%);
  --gradient-citrusburn: linear-gradient(135deg, var(--citrusburn-primary) 0%, var(--citrusburn-secondary) 100%);
  
  /* Header & Hero Gradients */
  --gradient-header: linear-gradient(to left, #e8d8c2 0%, #fffaf4 90%);
  --gradient-hero: linear-gradient(to left, #e8d8c2 0%, #fffaf4 90%);
}

/* ==================== 2. RESET & BASE STYLES ==================== */

/* ==================== UNIVERSAL RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==================== HTML ELEMENT ==================== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ==================== BODY ELEMENT ==================== */
body {
  font-family: var(--sans-serif);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  padding-top: calc(var(--header-height) + var(--banner-height));
}

/* ==================== ANCHOR LINKS ==================== */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==================== BUTTON ELEMENTS ==================== */
button {
  font-family: var(--sans-serif);
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
}

button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==================== IMAGE ELEMENTS ==================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== SKIP LINK (ACCESSIBILITY) ==================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* ==================== 3. HEADER ==================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--gradient-header);
  box-shadow: var(--shadow-sm);
}

.header__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==================== HEADER MENU TOGGLE (HAMBURGER) ==================== */
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 105;
}

.header__menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ==================== HEADER MENU TOGGLE - ACTIVE STATE ==================== */
.header__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== HEADER LOGO ==================== */

.header__logo {
  flex: 1;
  text-align: center;
}

.header__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text);
  text-decoration: none;
  transition: transform var(--transition-base);
}

.header__logo-link:hover {
  transform: scale(1.02);
}

/* Logo text - AUMENTADO */
.header__logo-text {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.1;
}

/* Logo subtitle - MÉDIO */
.header__logo-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

/* Logo tagline - PEQUENO (NOVA) */
.header__logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.2;
  font-style: italic;
}

/* ==================== HEADER RESPONSIVE ==================== */

@media (max-width: 768px) {
  .header {
    height: var(--header-height);
  }

  .header__logo-text {
    font-size: 24px;
  }

  .header__logo-subtitle {
    font-size: 11px;
  }

  .header__logo-tagline {
    font-size: 9px;
  }

  .header__menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header__logo-text {
    font-size: 20px;
  }

  .header__logo-subtitle {
    font-size: 9px;
  }

  .header__logo-tagline {
    font-size: 8px;
  }
}

/* MOBILE SMALL (320px and below) */
@media (max-width: 320px) {
  .header__logo-text {
    font-size: 18px;
  }

  .header__logo-subtitle {
    font-size: 8px;
  }

  .header__logo-tagline {
    font-size: 7px;
  }
}

/* ==================== 4. BANNER PROMO - MOBILE FIX ==================== */

.banner-promo {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 101;
  background-color: var(--primary);
  color: var(--bg);
  padding: 0;
  text-align: center;
  overflow: hidden;
  height: var(--banner-height);
  display: flex;
  align-items: center;
}

.banner-promo__marquee {
  display: flex;
  animation: scroll-marquee 20s linear infinite !important;
  white-space: nowrap;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.banner-promo__content {
  display: flex;
  padding: 0 20px;
  min-width: 100%;
  flex-shrink: 0;
}

.banner-promo__text {
  font-family: var(--sans-serif);
  height: var(--banner-height);
  font-weight: 400;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  word-spacing: normal;
  line-height: 1.4;
}

.banner-promo__text b {
  font-weight: 700;
  margin: 0 2px;
}

/* ✅ ANIMAÇÃO */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll-marquee {
  0% {
    -webkit-transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}

/* RESPONSIVIDADE - BANNER */
@media screen and (min-width: 1025px) {
  .banner-promo__marquee {
    animation: scroll-marquee 20s linear infinite !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .banner-promo__text {
    font-size: 12px;
  }
  .banner-promo__marquee {
    animation: scroll-marquee 15s linear infinite !important;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .banner-promo__text {
    font-size: 11px;
  }
  .banner-promo__content {
    padding: 0 10px;
  }
  .banner-promo__marquee {
    animation: scroll-marquee 12s linear infinite !important;
  }
}

@media screen and (max-width: 480px) {
  .banner-promo {
    height: auto;
    min-height: 40px;
  }
  .banner-promo__text {
    font-size: 10px;
    height: auto;
    min-height: 40px;
  }
  .banner-promo__content {
    padding: 0 8px;
  }
  .banner-promo__marquee {
    animation: scroll-marquee 10s linear infinite !important;
  }
}

@media screen and (max-width: 320px) {
  .banner-promo__text {
    font-size: 9px;
  }
  .banner-promo__marquee {
    animation: scroll-marquee 8s linear infinite !important;
  }
}

/* ==================== SIDEBAR MENU ==================== */

.sidebar-menu {
  position: fixed;
  top: 0;
  left: -350px; /* ✅ OCULTO por padrão */
  width: 350px;
  height: 100vh;
  background-color: white;
  z-index: 104;
  transition: left var(--transition-base);
  overflow-y: auto; /* Scroll no mobile */
  padding-bottom: 20px;
  
  /* Scrollbar customizada */
  scrollbar-width: thin;
  scrollbar-color: #ccc #f0f0f0;
}

/* ✅ QUANDO ABRE - Aparece */
.sidebar-menu.open {
  left: 0;
}

/* Scrollbar para Chrome, Safari, Edge */
.sidebar-menu::-webkit-scrollbar {
  width: 8px;
}

.sidebar-menu::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* ==================== MEDIA QUERIES ==================== */

/* Mobile Small */
@media (max-width: 480px) {
  .sidebar-menu {
    width: 80vw;
    left: -80vw; /* ✅ OCULTO */
  }
  
  .sidebar-menu.open {
    left: 0; /* ✅ APARECE */
  }
}

/* Mobile Large */
@media (min-width: 481px) and (max-width: 768px) {
  .sidebar-menu {
    width: 280px;
    left: -280px; /* ✅ OCULTO */
    height: 100vh;
    overflow-y: auto;
  }
  
  .sidebar-menu.open {
    left: 0; /* ✅ APARECE */
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .sidebar-menu {
    width: 320px;
    left: -320px; /* ✅ OCULTO */
    height: 100vh;
    overflow-y: auto;
  }
  
  .sidebar-menu.open {
    left: 0; /* ✅ APARECE */
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .sidebar-menu {
    width: 350px;
    left: -350px; /* ✅ OCULTO por padrão */
    height: 100vh;
    overflow-y: auto;
  }
  
  .sidebar-menu.open {
    left: 0; /* ✅ APARECE ao clicar */
  }
  
  /* OPCIONAL: Se quiser sidebar PERMANENTEMENTE visível no desktop, descomente:
  .sidebar-menu {
    position: static;
    left: 0;
    height: auto;
    overflow-y: visible;
  }
  */
}

/* ==================== SIDEBAR MENU HEADER ==================== */
.sidebar-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid var(--primary);
  flex-shrink: 0;
  min-height: 60px;
}

.sidebar-menu__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.sidebar-menu__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.sidebar-menu__close:hover {
  color: var(--primary);
}

/* ==================== SIDEBAR PRODUCTS LIST (SCROLLABLE) ==================== */
.sidebar-menu__products {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  -webkit-overflow-scrolling: touch;
}

/* ==================== SIDEBAR PRODUCTS SCROLLBAR (WEBKIT) ==================== */
.sidebar-menu__products::-webkit-scrollbar {
  width: 6px;
}

.sidebar-menu__products::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-menu__products::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 3px;
}

.sidebar-menu__products::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-dark);
}

/* ==================== SIDEBAR PRODUCT CARD ==================== */
.sidebar-product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-left: 5px solid;
  border-radius: 0;
  transition: all var(--transition-base);
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-product-card:hover {
  background-color: #f9f9f9;
  transform: translateX(8px);
  padding-left: 28px;
}

/* ==================== SIDEBAR PRODUCT CARD - COLOR VARIANTS ==================== */
.sidebar-product-card--amino {
  border-color: var(--amino-primary);
}
.sidebar-product-card--amino:hover {
  background-color: rgba(196, 20, 35, 0.05);
}
.sidebar-product-card--memory {
  border-color: var(--memory-primary);
}
.sidebar-product-card--memory:hover {
  background-color: rgba(94, 145, 147, 0.05);
}
.sidebar-product-card--mitochondrial {
  border-color: var(--mitochondrial-primary);
}
.sidebar-product-card--mitochondrial:hover {
  background-color: rgba(0, 71, 171, 0.05);
}

.sidebar-product-card--clearflux {
  border-color: var(--clearflux-primary);
}

.sidebar-product-card--clearflux:hover {
  background-color: rgba(255, 113, 154, 0.05);
}

.sidebar-product-card--endopeak {
  border-color: var(--endopeak-primary);
}

.sidebar-product-card--endopeak:hover {
  background-color: rgba(255, 215, 0, 0.05);
}

.sidebar-product-card--moringa {
  border-color: var(--moringa-primary);
}

.sidebar-product-card--moringa:hover {
  background-color: rgba(255, 105, 180, 0.05);
}

.sidebar-product-card--citrusburn {
  border-color: var(--citrusburn-primary);
}

.sidebar-product-card--citrusburn:hover {
  background-color: rgba(213, 78, 33, 0.05);
}

/* ==================== SIDEBAR PRODUCT CARD ICON ==================== */
.sidebar-product-card__icon {
  font-size: 28px;
  flex-shrink: 0;
  min-width: 28px;
}

/* ==================== SIDEBAR PRODUCT CARD CONTENT ==================== */
.sidebar-product-card__content {
  flex: 1;
  min-width: 0;
}

.sidebar-product-card__content h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--text);
}

.sidebar-product-card__content p {
  font-size: 12px;
  color: var(--text-mid);
  margin: 0;
}

/* ==================== SIDEBAR PRODUCT CARD ARROW ==================== */
.sidebar-product-card__arrow {
  color: var(--text-mid);
  font-weight: 600;
  flex-shrink: 0;
  transition: color var(--transition-base);
}

.sidebar-product-card:hover .sidebar-product-card__arrow {
  color: var(--primary);
}

/* ==================== SIDEBAR MENU FOOTER (STICKY) ==================== */
.sidebar-menu__footer {
  padding: 16px 20px;
  border-top: 2px solid var(--line);
  flex-shrink: 0;
  min-height: 60px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================== SIDEBAR CTA BUTTON ==================== */

.sidebar-cta-button {

  display: block;

  width: 100%;

  padding: 12px 16px;

  background-color: var(--primary);

  color: white;

  text-align: center;

  border-radius: var(--radius-sm);

  font-weight: 700;

  font-size: 13px;

  text-decoration: none;

  transition: all var(--transition-base);

  border: none;

  cursor: pointer;

}

.sidebar-cta-button:hover {

  background-color: var(--primary-dark);

  transform: translateY(-2px);

  box-shadow: var(--shadow-md);

}

.sidebar-cta-button:active {

  transform: translateY(0);

}

/* ==================== SIDEBAR OVERLAY (DARK BACKGROUND) ==================== */

.sidebar-overlay {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.5);

  z-index: 103;

  opacity: 0;

  visibility: hidden;

  transition: opacity var(--transition-base), visibility var(--transition-base);

  pointer-events: none;

}

.sidebar-overlay.open {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

}

/* ==================== SIDEBAR MENU RESPONSIVE ==================== */

/* DESKTOP (1025px+) */

@media (min-width: 1025px) {

  .sidebar-menu {

width: 350px;

  }

  .sidebar-product-card {

padding: 16px 20px;

  }

}

/* TABLET (769px - 1024px) */

@media (min-width: 769px) and (max-width: 1024px) {

  .sidebar-menu {

width: 320px;

left: -320px;

  }

  .sidebar-menu__header {

padding: 18px;

  }

  .sidebar-menu__title {

font-size: 20px;

  }

  .sidebar-product-card {

padding: 14px 16px;

gap: 10px;

  }

  .sidebar-product-card:hover {

padding-left: 24px;

  }

  .sidebar-product-card__icon {

font-size: 24px;

  }

  .sidebar-product-card__content h3 {

font-size: 13px;

  }

  .sidebar-product-card__content p {

font-size: 11px;

  }

}

/* MOBILE LARGE (481px - 768px) */

@media (min-width: 481px) and (max-width: 768px) {

  .sidebar-menu {

width: 280px;

left: -280px;

  }

  .sidebar-menu__header {

padding: 16px;

  }

  .sidebar-menu__title {

font-size: 18px;

  }

  .sidebar-menu__close {

font-size: 24px;

  }

  .sidebar-product-card {

padding: 12px 14px;

gap: 10px;

  }

  .sidebar-product-card:hover {

padding-left: 20px;

  }

  .sidebar-product-card__icon {

font-size: 22px;

  }

  .sidebar-product-card__content h3 {

font-size: 12px;

  }

  .sidebar-product-card__content p {

font-size: 10px;

  }

  .sidebar-menu__footer {

padding: 12px 14px;

min-height: 56px;

  }

  .sidebar-cta-button {

padding: 10px 14px;

font-size: 12px;

  }

}

/* MOBILE SMALL (max 480px) */

@media (max-width: 480px) {

  .sidebar-menu {

width: 80vw;

left: -80vw;

  }

  .sidebar-menu__header {

padding: 14px;

min-height: 52px;

  }

  .sidebar-menu__title {

font-size: 16px;

  }

  .sidebar-menu__close {

font-size: 22px;

  }

  .sidebar-product-card {

padding: 12px 12px;

gap: 10px;

  }

  .sidebar-product-card:hover {

padding-left: 18px;

  }

  .sidebar-product-card__icon {

font-size: 20px;

  }

  .sidebar-product-card__content h3 {

font-size: 12px;

  }

  .sidebar-product-card__content p {

font-size: 10px;

  }

  .sidebar-menu__footer {

padding: 10px 12px;

min-height: 52px;

  }

  .sidebar-cta-button {

padding: 10px 12px;

font-size: 11px;

  }

}

/* MOBILE EXTRA SMALL (max 320px) */

@media (max-width: 320px) {

  .sidebar-menu {

width: 100%;

left: -100%;

  }

  .sidebar-menu__header {

padding: 12px;

min-height: 48px;

  }

  .sidebar-menu__title {

font-size: 14px;

  }

  .sidebar-menu__close {

font-size: 20px;

  }

  .sidebar-product-card {

padding: 10px;

gap: 8px;

  }

  .sidebar-product-card:hover {

padding-left: 16px;

  }

  .sidebar-product-card__icon {

font-size: 18px;

  }

  .sidebar-product-card__content h3 {

font-size: 11px;

  }

  .sidebar-product-card__content p {

font-size: 9px;

  }

  .sidebar-menu__footer {

padding: 8px 10px;

min-height: 48px;

  }

  .sidebar-cta-button {

padding: 8px 10px;

font-size: 10px;

  }

}
/* ==================== 6. HERO SECTION ==================== */

.hero {
  background: var(--gradient-hero);
  padding: var(--section-py) 20px;
  margin-top: 0;
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ==================== HERO CONTENT ==================== */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

/* ==================== HERO IMAGE WRAPPER ==================== */
.hero__image-wrapper {
  text-align: center;
}

.hero__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ==================== HERO RESPONSIVE ==================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .hero {
    padding: var(--section-py-mobile) 20px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* MOBILE SMALL (480px and below) */
@media (max-width: 480px) {
  .hero {
    padding: 40px 16px;
  }

  .hero__container {
    gap: 16px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__image {
    min-height: 200px;
  }
}

/* MOBILE EXTRA SMALL (320px and below) */
@media (max-width: 320px) {
  .hero {
    padding: 32px 12px;
  }

  .hero__title {
    font-size: 20px;
  }

  .hero__subtitle {
    font-size: 12px;
  }
}

/* ==================== 7. SHOP BY HEALTH CATEGORY (CAROUSEL) ==================== */

.shop-by-health {
  background: linear-gradient(to bottom, #ffffff 0%, #fffaf4 100%);
  padding: var(--section-py) 20px;
}

.shop-by-health__container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ==================== SECTION TITLES ==================== */
.shop-by-health__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
  color: var(--text);
}

.shop-by-health__subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--text-mid);
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* ==================== CAROUSEL WRAPPER ==================== */
.carousel-wrapper {
  position: relative;
  padding: 0 60px 40px 60px;
}

.products-swiper,
.stats-swiper,
.reviews-swiper,
.products-grid-swiper {
  position: relative;
}

/* ==================== HEALTH CARD (PRODUCT CARD) ==================== */
.health-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.health-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* ==================== HEALTH CARD - PRODUCT GRADIENTS ==================== */
.health-card--amino {
  background: var(--gradient-amino);
}

.health-card--memory {
  background: var(--gradient-memory);
}

.health-card--mitochondrial {
  background: var(--gradient-mitochondrial);
}

.health-card--clearflux {
  background: var(--gradient-clearflux);
}

.health-card--endopeak {
  background: var(--gradient-endopeak);
}

.health-card--moringa {
  background: var(--gradient-moringa);
}

.health-card--citrusburn {
  background: var(--gradient-citrusburn);
}

/* ==================== HEALTH CARD HEADER (TEXT OVERLAY) ==================== */
.health-card__header {
  padding: 20px;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

.health-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.health-card__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ==================== HEALTH CARD IMAGE SECTION ==================== */
.health-card__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 200px;
}

.health-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ==================== HEALTH CARD CTA BUTTON ==================== */
.health-card__cta {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  margin: 12px;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.health-card__cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.health-card__cta:active {
  transform: translateY(-1px);
}

/* ==================== CAROUSEL ARROWS ==================== */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.carousel-arrow:hover {
  background-color: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow--prev {
  left: 10px;
}

.carousel-arrow--next {
  right: 10px;
}

/* ==================== SHOP BY HEALTH RESPONSIVE ==================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .shop-by-health__title {
    font-size: 32px;
  }

  .carousel-wrapper {
    padding: 0 50px 40px 50px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .health-card__title {
    font-size: 18px;
  }

  .health-card__subtitle {
    font-size: 13px;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .shop-by-health {
    padding: var(--section-py-mobile) 20px;
  }

  .shop-by-health__title {
    font-size: 28px;
  }

  .shop-by-health__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .carousel-wrapper {
    padding: 0 40px 30px 40px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .health-card__header {
    padding: 16px;
  }

  .health-card__title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .health-card__subtitle {
    font-size: 12px;
  }

  .health-card__cta {
    padding: 12px 16px;
    font-size: 12px;
    margin: 10px;
  }
}

/* MOBILE SMALL (480px and below) */
@media (max-width: 480px) {
  .shop-by-health {
    padding: 40px 16px;
  }

  .shop-by-health__title {
    font-size: 22px;
  }

  .shop-by-health__subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .carousel-wrapper {
    padding: 0 35px 20px 35px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .carousel-arrow--prev {
    left: 5px;
  }

  .carousel-arrow--next {
    right: 5px;
  }

  .health-card__header {
    padding: 12px;
  }

  .health-card__title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .health-card__subtitle {
    font-size: 11px;
  }

  .health-card__cta {
    padding: 10px 14px;
    font-size: 11px;
    margin: 8px;
  }
}

/* MOBILE EXTRA SMALL (320px and below) */
@media (max-width: 320px) {
  .shop-by-health__title {
    font-size: 18px;
  }

  .shop-by-health__subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .carousel-wrapper {
    padding: 0 30px 15px 30px;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .health-card__cta {
    padding: 8px 12px;
    font-size: 10px;
    margin: 6px;
  }
}

/* ==================== 8. CAROUSEL NAVIGATION ARROWS ==================== */

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  z-index: 10;
  padding: 0;
}

.carousel-arrow:hover {
  background-color: var(--primary-dark);
  transform: translateY(-50%) scale(1.15);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==================== CAROUSEL ARROW POSITIONING ==================== */
.carousel-arrow--prev {
  left: 10px;
}

.carousel-arrow--next {
  right: 10px;
}

/* ==================== CAROUSEL ARROW RESPONSIVE ==================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-arrow--prev {
    left: 8px;
  }

  .carousel-arrow--next {
    right: 8px;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .carousel-arrow--prev {
    left: 6px;
  }

  .carousel-arrow--next {
    right: 6px;
  }
}

/* MOBILE SMALL (480px and below) */
@media (max-width: 480px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .carousel-arrow--prev {
    left: 5px;
  }

  .carousel-arrow--next {
    right: 5px;
  }
}

/* MOBILE EXTRA SMALL (320px and below) */
@media (max-width: 320px) {
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .carousel-arrow--prev {
    left: 2px;
  }

  .carousel-arrow--next {
    right: 2px;
  }
}

/* ==================== 9. STATISTICS SECTION (CAROUSEL) ==================== */

.stats-section {
  padding: var(--section-py) 20px;
  background-color: var(--beige);  /* ✅ ALTERADO: de gradient para cor sólida beige */
}

.stats-section__container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ==================== SECTION TITLES ==================== */

.stats-section__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
  color: var(--text);
}

.stats-section__title.shop-by-health-format {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
  color: var(--text);
  line-height: 1.4;
}

.stats-section__subtitle {
  font-size: 16px;
  color: var(--text-mid);
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

.stats-section__subtitle.shop-by-health-format {
  font-size: 16px;
  color: var(--text-mid);
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* ==================== STAT CARD ==================== */

.stat-card {
  background-color: var(--bg);
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  border-top: 4px solid var(--primary);  /* ✅ MANTIDO */
}

.stat-card:hover {
  transform: translateY(-8px);  /* ✅ MANTIDO */
  box-shadow: var(--shadow-lg);  /* ✅ MANTIDO */
}

/* ==================== STAT CARD - ICON ==================== */

.stat-card__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

/* ==================== STAT CARD - METRIC ==================== */

.stat-card__number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.stat-card__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
}

/* ==================== STAT CARD - DESCRIPTION ==================== */

.stat-card__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  margin: 0;
}

/* ==================== STAT CARD - BENEFITS LIST ==================== */

.stat-card__benefits {
  list-style: none;
  padding: 16px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.stat-card__benefits li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
}

.stat-card__benefits li:before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 700;
  margin-right: 6px;
}

/* ==================== STATS SECTION RESPONSIVE ==================== */

/* TABLET (1024px and below) */

@media (max-width: 1024px) {
  .target-symptoms__title {
    font-size: 32px;
  }

  .target-symptoms__title.shop-by-health-format {
    font-size: 32px;
  }

  .stat-card {
    padding: 24px 20px;
    min-height: 300px;
  }

  .stat-card__number {
    font-size: 28px;
  }

  .stat-card__label {
    font-size: 15px;
  }

  .stat-card__icon {
    font-size: 44px;
  }
}

/* MOBILE (768px and below) */

@media (max-width: 768px) {
  .target-symptoms {
    padding: var(--section-py-mobile) 20px;
  }

  .target-symptoms__title {
    font-size: 28px;
  }

  .target-symptoms__title.shop-by-health-format {
    font-size: 28px;
  }

  .target-symptoms__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .target-symptoms__subtitle.shop-by-health-format {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .stat-card {
    padding: 20px 16px;
    min-height: 280px;
  }

  .stat-card__number {
    font-size: 24px;
  }

  .stat-card__label {
    font-size: 14px;
  }

  .stat-card__text {
    font-size: 13px;
  }

  .stat-card__icon {
    font-size: 40px;
  }

  .stat-card__benefits {
    padding: 12px 0 0 0;
  }

  .stat-card__benefits li {
    font-size: 12px;
  }
}

/* MOBILE SMALL (480px and below) */

@media (max-width: 480px) {
  .target-symptoms {
    padding: 40px 16px;
  }

  .target-symptoms__title {
    font-size: 22px;
  }

  .target-symptoms__title.shop-by-health-format {
    font-size: 22px;
  }

  .target-symptoms__subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .target-symptoms__subtitle.shop-by-health-format {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .stat-card {
    padding: 16px 12px;
    min-height: 260px;
  }

  .stat-card__number {
    font-size: 20px;
  }

  .stat-card__label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .stat-card__text {
    font-size: 12px;
    line-height: 1.6;
  }

  .stat-card__icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .stat-card__benefits li {
    font-size: 11px;
  }
}

/* MOBILE EXTRA SMALL (320px and below) */

@media (max-width: 320px) {
  .target-symptoms__title {
    font-size: 18px;
  }

  .target-symptoms__title.shop-by-health-format {
    font-size: 18px;
  }

  .target-symptoms__subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .target-symptoms__subtitle.shop-by-health-format {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .stat-card {
    padding: 14px 10px;
    min-height: 240px;
  }

  .stat-card__number {
    font-size: 18px;
  }

  .stat-card__label {
    font-size: 12px;
  }

  .stat-card__text {
    font-size: 11px;
  }

  .stat-card__icon {
    font-size: 32px;
  }
}

/* ==================== 10. CUSTOMER REVIEWS CAROUSEL ==================== */

.reviews-carousel {
  padding: var(--section-py) 20px;
  background-color: var(--beige);
}

.reviews-carousel__container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ==================== SECTION TITLE ==================== */
.reviews-carousel__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
  color: var(--text);
}

.reviews-carousel__subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--text-mid);
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* ==================== REVIEW CARD ==================== */
.review-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  background-color: white;
  border-left: 4px solid var(--primary);
  position: relative;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ==================== REVIEW CARD - STAR RATING ==================== */
.review-card__rating {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.review-card__stars {
  font-size: 16px;
  margin: 0;
  letter-spacing: 2px;
}

/* ==================== REVIEW CARD - TITLE ==================== */
.review-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

/* ==================== REVIEW CARD - TEXT ==================== */
.review-card__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  margin: 0 0 16px 0;
}

/* ==================== REVIEW CARD - AUTHOR SECTION ==================== */
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.review-card__author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.review-card__author-location {
  font-size: 12px;
  color: var(--text-mid);
  margin: 0;
}

/* ==================== REVIEW CARD - VERIFIED BADGE ==================== */
.review-card__verified {
  display: inline-block;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ==================== REVIEWS CAROUSEL RESPONSIVE ==================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .reviews-carousel__title {
    font-size: 32px;
  }

  .review-card {
    padding: 24px 20px;
  }

  .review-card__title {
    font-size: 15px;
  }

  .review-card__text {
    font-size: 13px;
  }

  .review-card__avatar {
    width: 44px;
    height: 44px;
  }

  .review-card__author-name {
    font-size: 12px;
  }

  .review-card__author-location {
    font-size: 11px;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .reviews-carousel {
    padding: var(--section-py-mobile) 20px;
  }

  .reviews-carousel__title {
    font-size: 28px;
  }

  .reviews-carousel__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .review-card {
    padding: 20px 16px;
  }

  .review-card__stars {
    font-size: 15px;
  }

  .review-card__title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .review-card__text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .review-card__avatar {
    width: 40px;
    height: 40px;
  }

  .review-card__author-name {
    font-size: 11px;
  }

  .review-card__author-location {
    font-size: 10px;
  }
}

/* MOBILE SMALL (480px and below) */
@media (max-width: 480px) {
  .reviews-carousel {
    padding: 40px 16px;
  }

  .reviews-carousel__title {
    font-size: 22px;
  }

  .reviews-carousel__subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .review-card {
    padding: 16px 12px;
  }

  .review-card__stars {
    font-size: 14px;
  }

  .review-card__title {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .review-card__text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .review-card__avatar {
    width: 36px;
    height: 36px;
  }

  .review-card__author-name {
    font-size: 11px;
  }

  .review-card__author-location {
    font-size: 10px;
  }

  .review-card__verified {
    font-size: 10px;
    margin-top: 8px;
    padding-top: 8px;
  }
}

/* MOBILE EXTRA SMALL (320px and below) */
@media (max-width: 320px) {
  .reviews-carousel__title {
    font-size: 18px;
  }

  .reviews-carousel__subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .review-card {
    padding: 14px 10px;
  }

  .review-card__title {
    font-size: 12px;
  }

  .review-card__text {
    font-size: 11px;
  }

  .review-card__avatar {
    width: 32px;
    height: 32px;
  }

  .review-card__author-name {
    font-size: 10px;
  }

  .review-card__author-location {
    font-size: 9px;
  }
}

/* ==================== 11. PRODUCTS GRID (PURCHASE SECTION) ==================== */

.products-grid {
  padding: var(--section-py) 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #fffaf4 100%);
}

.products-grid__container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ==================== SECTION TITLE ==================== */
.products-grid__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px 0;
  color: var(--text);
}

.products-grid__subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--text-mid);
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* ==================== PRODUCT CARD ==================== */
.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* ==================== PRODUCT CARD - BADGE ==================== */
.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

/* ==================== PRODUCT CARD - IMAGE ==================== */
.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 200px;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ==================== PRODUCT CARD - RATING ==================== */
.product-card__rating {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}

.product-card__stars {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.product-card__reviews {
  font-size: 12px;
  color: var(--text-mid);
  margin: 0;
}

/* ==================== PRODUCT CARD - NAME & PRICE ==================== */
.product-card__name {
  padding: 16px 16px 8px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.product-card__description {
  padding: 0 16px 12px 16px;
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
}

.product-card__price {
  padding: 0 16px 16px 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

/* ==================== PRODUCT CARD - CTA BUTTONS ==================== */
.product-card__ctas {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* ==================== CTA BUTTON - BASE STYLES ==================== */
.cta-button {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==================== CTA BUTTON - PRIMARY VARIANT ==================== */
.cta-button--primary {
  background-color: var(--primary);
  color: #FFFFFF; /* SEMPRE BRANCO */
  transition: background-color 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease;
}

.cta-button--primary:hover {
  background-color: var(--primary-dark);
  color: #FFFFFF; /* MANTÉM BRANCO */
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-button--primary:active {
  background-color: var(--primary-dark);
  color: #FFFFFF; /* MANTÉM BRANCO */
  transform: translateY(0);
}

/* ==================== CTA BUTTON - SECONDARY VARIANT ==================== */
.cta-button--secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-button--secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cta-button--secondary:active {
  transform: translateY(-1px);
}

/* ==================== PRODUCTS GRID RESPONSIVE ==================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .products-grid__title {
    font-size: 32px;
  }

  .product-card__name {
    font-size: 15px;
  }

  .product-card__price {
    font-size: 20px;
  }

  .cta-button {
    padding: 12px 14px;
    font-size: 12px;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .products-grid {
    padding: var(--section-py-mobile) 20px;
  }

  .products-grid__title {
    font-size: 28px;
  }

  .products-grid__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .product-card__image {
    min-height: 180px;
  }

  .product-card__name {
    padding: 12px 16px 6px 16px;
    font-size: 14px;
  }

  .product-card__description {
    padding: 0 16px 8px 16px;
    font-size: 12px;
  }

  .product-card__price {
    padding: 0 16px 12px 16px;
    font-size: 20px;
  }

  .product-card__rating {
    padding: 10px 14px;
  }

  .product-card__ctas {
    padding: 12px;
    gap: 8px;
  }

  .cta-button {
    padding: 11px 12px;
    font-size: 11px;
  }
}

/* MOBILE SMALL (480px and below) */
@media (max-width: 480px) {
  .products-grid {
    padding: 40px 16px;
  }

  .products-grid__title {
    font-size: 22px;
  }

  .products-grid__subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .product-card__image {
    min-height: 160px;
  }

  .product-card__badge {
    padding: 5px 10px;
    font-size: 10px;
  }

  .product-card__name {
    padding: 12px 12px 4px 12px;
    font-size: 13px;
  }

  .product-card__description {
    padding: 0 12px 6px 12px;
    font-size: 11px;
  }

  .product-card__price {
    padding: 0 12px 10px 12px;
    font-size: 18px;
  }

  .product-card__rating {
    padding: 8px 12px;
  }

  .product-card__stars {
    font-size: 12px;
  }

  .product-card__reviews {
    font-size: 11px;
  }

  .product-card__ctas {
    padding: 10px;
    gap: 6px;
  }

  .cta-button {
    padding: 10px 10px;
    font-size: 10px;
    min-height: 40px;
  }
}

/* MOBILE EXTRA SMALL (320px and below) */
@media (max-width: 320px) {
  .products-grid__title {
    font-size: 18px;
  }

  .products-grid__subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .product-card__image {
    min-height: 140px;
  }

  .product-card__name {
    font-size: 12px;
  }

  .product-card__price {
    font-size: 16px;
  }

  .cta-button {
    padding: 8px 8px;
    font-size: 9px;
  }
}

/* ==================== 12. FOOTER ==================== */

.footer {
  background-color: #fffaf4;
  border-top: 1px solid var(--line);
  padding: var(--section-py) 20px;
  margin-top: var(--section-py);
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ==================== FOOTER TOP - BRAND SECTION ==================== */
.footer__top {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0;
  font-weight: 500;
}

.footer__brand-description {
  font-size: 13px;
  color: var(--text-mid);
  margin: 8px 0 0 0;
  line-height: 1.6;
  max-width: 400px;
}

/* ==================== FOOTER SECTIONS - PRODUCTS, COMPANY, LEGAL ==================== */
.footer__products,
.footer__company,
.footer__legal {
  margin-bottom: 48px;
}

.footer__section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== FOOTER LINK LISTS ==================== */
.footer__products-list,
.footer__company-list,
.footer__legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px 24px;
}

.footer__products-list li,
.footer__company-list li,
.footer__legal-list li {
  margin: 0;
}

.footer__products-list a,
.footer__company-list a,
.footer__legal-list a {
  font-size: 13px;
  color: var(--text-mid);
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.footer__products-list a:hover,
.footer__company-list a:hover,
.footer__legal-list a:hover {
  color: var(--primary);
  font-weight: 600;
  transform: translateX(4px);
}

.footer__products-list a:focus,
.footer__company-list a:focus,
.footer__legal-list a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==================== FOOTER SOCIAL SECTION ==================== */
.footer__social {
  margin-bottom: 48px;
}

.footer__social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__social-link {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__social-link:hover {
  color: var(--primary);
  font-weight: 600;
  transform: translateY(-2px);
}

/* ==================== FOOTER NEWSLETTER SECTION ==================== */
.footer__newsletter {
  margin-bottom: 48px;
  background-color: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.footer__newsletter-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
}

.footer__newsletter-text {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0 0 16px 0;
}

.footer__newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--sans-serif);
  font-size: 13px;
  transition: all var(--transition-base);
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 125, 72, 0.1);
}

.footer__newsletter-button {
  padding: 12px 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__newsletter-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==================== FOOTER DISCLAIMERS ==================== */
.footer__disclaimers {
  background-color: rgba(255, 125, 72, 0.05);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  border-left: 4px solid var(--primary);
}

.footer__disclaimers h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__disclaimer-text {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0 0 12px 0;
  text-align: left;
}

.footer__disclaimer-text:last-child {
  margin-bottom: 0;
}

/* ==================== FOOTER BOTTOM - COPYRIGHT ==================== */
.footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer__copyright {
  font-size: 12px;
  color: var(--text-mid);
  margin: 0;
}

.footer__version {
  font-size: 10px;
  color: var(--line);
  margin: 8px 0 0 0;
}

/* ==================== FOOTER RESPONSIVE ==================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .footer__products-list,
  .footer__company-list,
  .footer__legal-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__logo {
    font-size: 24px;
  }

  .footer__newsletter-form {
    flex-direction: column;
  }

  .footer__newsletter-button {
    width: 100%;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .footer {
    padding: var(--section-py-mobile) 20px;
    margin-top: var(--section-py-mobile);
  }

  .footer__top {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .footer__products,
  .footer__company,
  .footer__legal {
    margin-bottom: 32px;
  }

  .footer__section-title {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer__products-list,
  .footer__company-list,
  .footer__legal-list {
    grid-template-columns: 1fr;
    gap: 8px 0;
  }

  .footer__products-list a,
  .footer__company-list a,
  .footer__legal-list a {
    font-size: 12px;
  }

  .footer__newsletter {
    padding: 20px 16px;
  }

  .footer__newsletter-title {
    font-size: 15px;
  }

  .footer__newsletter-text {
    font-size: 12px;
  }

  .footer__newsletter-form {
    flex-direction: column;
  }

  .footer__newsletter-input {
    min-width: 100%;
  }

  .footer__newsletter-button {
    width: 100%;
  }

  .footer__disclaimers {
    padding: 20px 16px;
  }

  .footer__disclaimer-text {
    font-size: 10px;
    text-align: left;
  }

  .footer__disclaimer-text:last-child {
    margin-bottom: 0;
  }

  .footer__copyright {
    font-size: 11px;
  }
}

/* MOBILE SMALL (480px and below) */
@media (max-width: 480px) {
  .footer {
    padding: 40px 16px;
    margin-top: 40px;
  }

  .footer__top {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .footer__logo {
    font-size: 20px;
  }

  .footer__tagline {
    font-size: 12px;
  }

  .footer__brand-description {
    font-size: 12px;
  }

  .footer__section-title {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footer__products-list a,
  .footer__company-list a,
  .footer__legal-list a {
    font-size: 11px;
  }

  .footer__social-links {
    gap: 12px;
  }

  .footer__social-link {
    font-size: 12px;
  }

  .footer__newsletter {
    padding: 16px 12px;
  }

  .footer__newsletter-title {
    font-size: 14px;
  }

  .footer__newsletter-text {
    font-size: 11px;
  }

  .footer__newsletter-input {
    padding: 10px 12px;
    font-size: 12px;
  }

  .footer__newsletter-button {
    padding: 10px 16px;
    font-size: 12px;
  }

  .footer__disclaimers {
    padding: 16px 12px;
  }

  .footer__disclaimer-text {
    font-size: 9px;
    line-height: 1.6;
  }

  .footer__copyright {
    font-size: 10px;
  }

  .footer__version {
    font-size: 9px;
  }
}

/* MOBILE EXTRA SMALL (320px and below) */
@media (max-width: 320px) {
  .footer {
    padding: 32px 12px;
    margin-top: 32px;
  }

  .footer__logo {
    font-size: 18px;
  }

  .footer__tagline {
    font-size: 11px;
  }

  .footer__section-title {
    font-size: 11px;
  }

  .footer__products-list a,
  .footer__company-list a,
  .footer__legal-list a {
    font-size: 10px;
  }

  .footer__newsletter-title {
    font-size: 13px;
  }

  .footer__newsletter-text {
    font-size: 10px;
  }

  .footer__newsletter-input {
    font-size: 11px;
  }

  .footer__newsletter-button {
    font-size: 11px;
  }

  .footer__disclaimer-text {
    font-size: 8px;
  }

  .footer__copyright {
    font-size: 9px;
  }
}

/* ==================== 13. ANIMATIONS & KEYFRAMES ==================== */

/* ==================== FADE IN ANIMATION ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* ==================== SLIDE IN FROM LEFT ANIMATION ==================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

/* ==================== SLIDE IN FROM RIGHT ANIMATION ==================== */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* ==================== PULSE/BREATHING ANIMATION ==================== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ==================== SCALE UP ANIMATION ==================== */
@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.scale-up {
  animation: scaleUp 0.5s ease-out forwards;
}

/* ==================== BOUNCE ANIMATION ==================== */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bounce {
  animation: bounce 1s ease-in-out infinite;
}

/* ==================== SHAKE ANIMATION ==================== */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* ==================== GLOW ANIMATION ==================== */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 125, 72, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 125, 72, 0.5);
  }
}

.glow {
  animation: glow 2s ease-in-out infinite;
}

/* ==================== ROTATE ANIMATION ==================== */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 2s linear infinite;
}

/* ==================== UTILITY ANIMATION CLASSES ==================== */

/* Animation delay utilities */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* Animation duration utilities */
.duration-fast {
  animation-duration: 0.3s;
}

.duration-normal {
  animation-duration: 0.6s;
}

.duration-slow {
  animation-duration: 1s;
}

.duration-slower {
  animation-duration: 1.5s;
}

/* ==================== PREFIXED ANIMATIONS (WEBKIT) ==================== */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@-webkit-keyframes scaleUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
  }
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-5px);
  }
  75% {
    -webkit-transform: translateX(5px);
  }
}

@-webkit-keyframes glow {
  0%, 100% {
    -webkit-box-shadow: 0 0 10px rgba(255, 125, 72, 0);
  }
  50% {
    -webkit-box-shadow: 0 0 20px rgba(255, 125, 72, 0.5);
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

/* ==================== 14. SCROLL TO TOP BUTTON ==================== */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 99;
  box-shadow: var(--shadow-lg);
  padding: 0;
  font-family: var(--sans-serif);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==================== 15. RESPONSIVE DESIGN - COMPREHENSIVE MEDIA QUERIES ==================== */

/* ==================== TABLET (1024px and below) ==================== */
@media (max-width: 1024px) {
  .carousel-wrapper {
    padding: 0 40px 40px 40px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .shop-by-health__title {
    font-size: 32px;
  }

  .target-symptoms__title {
    font-size: 32px;
  }

  .reviews-carousel__title {
    font-size: 32px;
  }

  .products-grid__title {
    font-size: 32px;
  }

  .stat-card {
    min-height: 280px;
  }

  .product-card__image {
    min-height: 200px;
  }

  .footer__products-list,
  .footer__company-list,
  .footer__legal-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== MOBILE (768px and below) ==================== */
@media (max-width: 768px) {
  body {
    padding-top: calc(var(--header-height) + var(--banner-height));
  }

  /* Hero Section */
  .hero {
    padding: var(--section-py-mobile) 20px;
    margin-top: 0;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  /* Shop by Health */
  .shop-by-health {
    padding: var(--section-py-mobile) 20px;
  }

  .shop-by-health__title {
    font-size: 28px;
  }

  .shop-by-health__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .carousel-wrapper {
    padding: 0 40px 30px 40px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* Stats Section */
  .target-symptoms {
    padding: var(--section-py-mobile) 20px;
  }

  .target-symptoms__title {
    font-size: 28px;
  }

  .target-symptoms__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .stat-card {
    min-height: 260px;
    padding: 20px 16px;
  }

  .stat-card__number {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .stat-card__label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .stat-card__text {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Reviews Section */
  .reviews-carousel {
    padding: var(--section-py-mobile) 20px;
  }

  .reviews-carousel__title {
    font-size: 28px;
  }

  .reviews-carousel__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .review-card {
    padding: 20px 16px;
  }

  .review-card__title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .review-card__text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .review-card__avatar {
    width: 40px;
    height: 40px;
  }

  /* Products Grid */
  .products-grid {
    padding: var(--section-py-mobile) 20px;
  }

  .products-grid__title {
    font-size: 28px;
  }

  .products-grid__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .product-card__image {
    min-height: 180px;
  }

  .product-card__name {
    font-size: 14px;
    padding: 12px 16px 8px 16px;
  }

  .product-card__description {
    font-size: 12px;
  }

  .product-card__price {
    font-size: 20px;
    padding: 0 16px 12px 16px;
  }

  .product-card__ctas {
    padding: 12px;
    gap: 8px;
  }

  .cta-button {
    padding: 11px 12px;
    font-size: 12px;
  }

  /* Footer */
  .footer {
    padding: var(--section-py-mobile) 20px;
    margin-top: var(--section-py-mobile);
  }

  .footer__products-list,
  .footer__company-list,
  .footer__legal-list {
    grid-template-columns: 1fr;
    gap: 8px 0;
  }

  .footer__section-title {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer__logo {
    font-size: 24px;
  }

  .footer__tagline {
    font-size: 12px;
  }

  .footer__disclaimer-text {
    font-size: 10px;
    text-align: left;
  }

  /* Scroll to Top */
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }
}

/* ==================== MOBILE SMALL (480px and below) ==================== */
@media (max-width: 480px) {
  /* Banner */
  .banner-promo__text {
    font-size: 10px;
  }

  /* Header */
  .header__logo-text {
    font-size: 16px;
  }

  .header__logo-subtitle {
    font-size: 8px;
  }

  /* Hero Section */
  .hero {
    padding: 40px 16px;
  }

  .hero__title {
    font-size: 22px;
  }

  .hero__subtitle {
    font-size: 13px;
    line-height: 1.5;
  }

  .hero__image {
    min-height: 200px;
  }

  /* Shop by Health */
  .shop-by-health {
    padding: 40px 16px;
  }

  .shop-by-health__title {
    font-size: 22px;
  }

  .shop-by-health__subtitle {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .carousel-wrapper {
    padding: 0 30px 20px 30px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Stats Section */
  .target-symptoms {
    padding: 40px 16px;
  }

  .target-symptoms__title {
    font-size: 22px;
  }

  .target-symptoms__subtitle {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .stat-card {
    min-height: 240px;
    padding: 16px 12px;
  }

  .stat-card__number {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .stat-card__label {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .stat-card__text {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Reviews Section */
  .reviews-carousel {
    padding: 40px 16px;
  }

  .reviews-carousel__title {
    font-size: 22px;
  }

  .reviews-carousel__subtitle {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .review-card {
    padding: 16px 12px;
  }

  .review-card__title {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .review-card__text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .review-card__avatar {
    width: 36px;
    height: 36px;
  }

  /* Products Grid */
  .products-grid {
    padding: 40px 16px;
  }

  .products-grid__title {
    font-size: 22px;
  }

  .products-grid__subtitle {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .product-card__image {
    min-height: 160px;
  }

  .product-card__badge {
    padding: 5px 10px;
    font-size: 10px;
  }

  .product-card__name {
    font-size: 13px;
    padding: 12px 12px 4px 12px;
  }

  .product-card__description {
    font-size: 11px;
    padding: 0 12px 6px 12px;
  }

  .product-card__price {
    font-size: 18px;
    padding: 0 12px 10px 12px;
  }

  .product-card__rating {
    padding: 8px 12px;
  }

  .product-card__stars {
    font-size: 12px;
  }

  .product-card__reviews {
    font-size: 11px;
  }

  .product-card__ctas {
    padding: 10px;
    gap: 6px;
  }

  .cta-button {
    padding: 10px 10px;
    font-size: 11px;
    min-height: 40px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px;
    margin-top: 40px;
  }

  .footer__top {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .footer__logo {
    font-size: 20px;
  }

  .footer__tagline {
    font-size: 11px;
  }

  .footer__section-title {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footer__products-list a,
  .footer__company-list a,
  .footer__legal-list a {
    font-size: 11px;
  }

  .footer__newsletter {
    padding: 16px 12px;
  }

  .footer__newsletter-input {
    padding: 10px 12px;
    font-size: 12px;
  }

  .footer__newsletter-button {
    padding: 10px 16px;
    font-size: 12px;
  }

  .footer__disclaimers {
    padding: 16px 12px;
  }

  .footer__disclaimer-text {
    font-size: 9px;
    line-height: 1.6;
  }

  /* Scroll to Top */
  .scroll-to-top {
    width: 42px;
    height: 42px;
    bottom: 16px;
    right: 16px;
    font-size: 18px;
  }
}

/* ==================== MOBILE EXTRA SMALL (320px and below) ==================== */
@media (max-width: 320px) {
  /* Global */
  body {
    padding-top: calc(var(--header-height) + var(--banner-height));
  }

  /* Banner */
  .banner-promo__text {
    font-size: 9px;
  }

  /* Header */
  .header__logo-text {
    font-size: 14px;
  }

  .header__logo-subtitle {
    font-size: 7px;
  }

  /* Hero Section */
  .hero {
    padding: 32px 12px;
  }

  .hero__title {
    font-size: 18px;
  }

  .hero__subtitle {
    font-size: 12px;
  }

  /* Shop by Health */
  .shop-by-health {
    padding: 32px 12px;
  }

  .shop-by-health__title {
    font-size: 18px;
  }

  .shop-by-health__subtitle {
    font-size: 11px;
  }

  .carousel-wrapper {
    padding: 0 25px 15px 25px;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  /* Stats Section */
  .target-symptoms {
    padding: 32px 12px;
  }

  .target-symptoms__title {
    font-size: 18px;
  }

  .target-symptoms__subtitle {
    font-size: 11px;
  }

  .stat-card {
    min-height: 220px;
    padding: 12px 8px;
  }

  .stat-card__number {
    font-size: 18px;
  }

  .stat-card__label {
    font-size: 12px;
  }

  .stat-card__text {
    font-size: 11px;
  }

  /* Reviews Section */
  .reviews-carousel {
    padding: 32px 12px;
  }

  .reviews-carousel__title {
    font-size: 18px;
  }

  .reviews-carousel__subtitle {
    font-size: 11px;
  }

  .review-card {
    padding: 12px 8px;
  }

  .review-card__title {
    font-size: 12px;
  }

  .review-card__text {
    font-size: 11px;
  }

  .review-card__avatar {
    width: 32px;
    height: 32px;
  }

  /* Products Grid */
  .products-grid {
    padding: 32px 12px;
  }

  .products-grid__title {
    font-size: 18px;
  }

  .products-grid__subtitle {
    font-size: 11px;
  }

  .product-card__image {
    min-height: 140px;
  }

  .product-card__name {
    font-size: 12px;
    padding: 10px 10px 3px 10px;
  }

  .product-card__description {
    font-size: 10px;
    padding: 0 10px 5px 10px;
  }

  .product-card__price {
    font-size: 16px;
    padding: 0 10px 8px 10px;
  }

  .product-card__ctas {
    padding: 8px;
    gap: 4px;
  }

  .cta-button {
    padding: 8px 8px;
    font-size: 10px;
    min-height: 38px;
  }

  /* Footer */
  .footer {
    padding: 28px 10px;
    margin-top: 32px;
  }

  .footer__logo {
    font-size: 18px;
  }

  .footer__tagline {
    font-size: 10px;
  }

  .footer__section-title {
    font-size: 11px;
  }

  .footer__products-list a,
  .footer__company-list a,
  .footer__legal-list a {
    font-size: 10px;
  }

  .footer__newsletter-input {
    font-size: 11px;
  }

  .footer__newsletter-button {
    font-size: 11px;
  }

  .footer__disclaimer-text {
    font-size: 8px;
  }

  /* Scroll to Top */
  .scroll-to-top {
    width: 38px;
    height: 38px;
    bottom: 12px;
    right: 12px;
    font-size: 16px;
  }
}