/* ============================================
   AHUAZARCA — Design System & Styles
   Organic Veracruz Products
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors — Psychology-driven palette
     Gold/Amber: warmth, trust, appetite stimulation, premium feel
     Green: organic credibility, health, nature, trust
     Terracotta/Orange: urgency, energy, appetite, action
     Cream: comfort, cleanliness, approachability
     Deep Earth: authority, reliability, sophistication */
  --golden-honey: #D4920A;
  --golden-honey-light: #E8B830;
  --warm-amber: #D4710E;
  --warm-amber-hover: #C06109;
  --deep-earth: #2C1810;
  --cream: #FEF9F0;
  --cream-dark: #F5EBDA;
  --sage-green: #4A7C3F;
  --sage-green-light: #5E9B4D;
  --terracotta: #C14E2B;
  --trust-green: #2E7D32;
  --urgency-orange: #E67E22;
  --charcoal: #1A1A1A;
  --white: #FFFFFF;
  --black: #000000;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.16);
  --shadow-xl: 0 16px 60px rgba(44, 24, 16, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--deep-earth);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--sage-green);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-earth);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(44, 24, 16, 0.7);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* CTA pulse — draws eye to conversion action */
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 113, 14, 0.5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(212, 113, 14, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 113, 14, 0);
  }
}

.pulse {
  animation: cta-pulse 2s infinite;
}

/* Floating animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Subtle shimmer for accent text */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Gentle scale pulse */
@keyframes gentle-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

/* Icon bounce on hover */
@keyframes icon-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(-2px);
  }

  70% {
    transform: translateY(-4px);
  }
}

/* Hero gradient animation */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
  position: relative;
}

.logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  transition: opacity var(--transition-base);
}

/* Logo switching: white when at top, dark when scrolled */
.logo .logo-white {
  opacity: 1;
}

.logo .logo-dark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.header.scrolled .logo .logo-white {
  opacity: 0;
}

.header.scrolled .logo .logo-dark {
  opacity: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
}

.header.scrolled .logo-text {
  color: var(--deep-earth);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.header.scrolled .nav-links a {
  color: var(--deep-earth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--golden-honey);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--warm-amber) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--warm-amber-hover) !important;
  transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition-base), opacity var(--transition-fast), background var(--transition-base);
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background: var(--deep-earth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  background: linear-gradient(135deg, #2C1810 0%, #5C3A1E 25%, #6B7B3A 50%, #3D5A1E 75%, #2C1810 100%);
  background-size: 300% 300%;
  animation: gradient-shift 12s ease infinite;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(44, 24, 16, 0.75) 0%,
      rgba(44, 24, 16, 0.5) 40%,
      rgba(44, 24, 16, 0.3) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--golden-honey-light);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 4s ease-in-out infinite;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero-title .accent {
  font-style: italic;
  background: linear-gradient(90deg, var(--golden-honey-light), #F5D060, var(--golden-honey-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--warm-amber);
  color: var(--white);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--warm-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 113, 14, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 11px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
  background: var(--white);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: transform var(--transition-fast);
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  transition: transform var(--transition-base), background var(--transition-base);
}

.feature-item:hover .feature-icon {
  transform: scale(1.15);
  background: rgba(212, 160, 23, 0.12);
}

.feature-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.78rem;
  color: rgba(44, 24, 16, 0.6);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: var(--space-4xl) 0;
}

.products-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.products-header .section-label {
  justify-content: center;
}

.products-header .section-subtitle {
  margin: 0 auto;
}

/* Featured Product (Miel) */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.featured-product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-product:hover .featured-product-image img {
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: var(--trust-green);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.featured-product-info {
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) 0;
}

.featured-product-info .product-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: var(--space-md);
}

.featured-product-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.featured-product-info .product-description {
  font-size: 0.95rem;
  color: rgba(44, 24, 16, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.product-highlights .tag {
  background: var(--cream);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--deep-earth);
}

.price-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.price-option {
  background: var(--cream);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.price-option:hover {
  border-color: var(--golden-honey);
  background: rgba(212, 160, 23, 0.05);
}

.price-option .weight {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.6);
  margin-bottom: 4px;
}

.price-option .price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--terracotta);
}

.featured-product-info .btn {
  width: 100%;
  justify-content: center;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body .product-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-green);
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: var(--space-sm) 0;
}

.product-card-body .product-desc {
  font-size: 0.85rem;
  color: rgba(44, 24, 16, 0.65);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.product-card-body .ingredients {
  font-size: 0.78rem;
  color: rgba(44, 24, 16, 0.5);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.product-card-prices {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: auto;
}

.product-card-prices .price-tag {
  background: var(--cream);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-card-prices .price-tag .amount {
  color: var(--terracotta);
  font-weight: 700;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--golden-honey);
  color: var(--deep-earth);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: gentle-pulse 3s ease-in-out infinite;
}

.about-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-stat-card .stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
}

.about-content .story-text {
  font-size: 1rem;
  color: rgba(44, 24, 16, 0.75);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.value-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
}

.value-item:hover {
  transform: translateY(-2px);
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.value-item p {
  font-size: 0.8rem;
  color: rgba(44, 24, 16, 0.6);
  line-height: 1.5;
}

/* ============================================
   SHIPPING SECTION
   ============================================ */
.shipping {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.shipping-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.shipping-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.shipping-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.shipping-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.shipping-card .shipping-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base);
}

.shipping-card:hover .shipping-icon {
  animation: icon-bounce 0.6s ease;
}

.shipping-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.shipping-card .shipping-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--warm-amber);
  margin-bottom: var(--space-xs);
}

.shipping-card p {
  font-size: 0.82rem;
  color: rgba(44, 24, 16, 0.6);
}

.shipping-note {
  margin-top: var(--space-xl);
  font-size: 0.85rem;
  color: rgba(44, 24, 16, 0.5);
  font-style: italic;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact-cta {
  padding: var(--space-4xl) 0;
  background: var(--deep-earth);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta .section-label {
  color: var(--golden-honey-light);
  justify-content: center;
}

.contact-cta .section-label::before {
  background: var(--golden-honey-light);
}

.contact-cta .section-title {
  color: var(--white);
}

.contact-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto var(--space-2xl);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: var(--white);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-brand img {
  height: 28px;
  width: 28px;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
}

.footer-text {
  font-size: 0.82rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--golden-honey-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-product-info {
    padding: var(--space-2xl);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-stat-card {
    right: var(--space-lg);
    bottom: -16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1201;
  }

  /* When nav menu is open, hide logo and cart so menu overlays fully */
  .header.nav-open .logo,
  .header.nav-open .cart-toggle {
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
    z-index: 1200;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
    color: var(--deep-earth);
    padding: var(--space-sm) 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1199;
  }

  .nav-overlay.active {
    display: block;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .scroll-indicator {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .price-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .product-card-body {
    padding: var(--space-md);
  }

  .shipping-cards {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  /* Toast: prevent overflow on narrow screens */
  .toast {
    white-space: normal;
    max-width: 90vw;
    text-align: center;
    font-size: 0.85rem;
  }

  /* Cart toggle: bigger touch target */
  .cart-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  /* Sections: reduce horizontal padding */
  .section {
    padding: var(--space-2xl) 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .price-options {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-description {
    font-size: 0.95rem;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   — Always visible, highest-conversion element
   Green = trust + action on WhatsApp brand color
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--deep-earth);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Product Card CTA */
.product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  margin-top: var(--space-md);
  padding: 0.7rem 1.2rem;
  background: var(--warm-amber);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.product-card-cta:hover {
  background: var(--warm-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 113, 14, 0.35);
}

.product-card-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Social proof badge */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--trust-green);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float .tooltip {
    display: none;
  }
}

/* ============================================
   CART TOGGLE + BADGE
   ============================================ */

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--white);
  transition: color var(--transition-fast);
}

.header.scrolled .cart-toggle svg {
  color: var(--deep-earth);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--warm-amber);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cart-badge.bounce {
  transform: scale(1.4);
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

/* ============================================
   CART DRAWER
   ============================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--white);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--deep-earth);
  line-height: 1;
  padding: 4px;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-empty {
  text-align: center;
  padding: var(--space-2xl) 0;
  color: rgba(44, 24, 16, 0.5);
}

.cart-empty p {
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 0.78rem;
  color: rgba(44, 24, 16, 0.5);
}

.cart-item-price {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 0.9rem;
  margin-top: 4px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.cart-qty-btn:hover {
  background: var(--cream);
  border-color: var(--golden-honey);
}

.cart-item-qty {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(44, 24, 16, 0.3);
  cursor: pointer;
  font-size: 0.78rem;
  margin-left: auto;
  padding: 4px;
  transition: color var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--terracotta);
}

.cart-drawer-footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--cream);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

/* ============================================
   SKELETON LOADER
   ============================================ */

.skeleton-card {
  overflow: hidden;
}

.skeleton-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(90deg, #f0ece4 25%, #e8e2d8 50%, #f0ece4 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-line {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0ece4 25%, #e8e2d8 50%, #f0ece4 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-line.w40 {
  width: 40%;
}

.skeleton-line.w60 {
  width: 60%;
}

.skeleton-line.w80 {
  width: 80%;
}

@keyframes skeletonPulse {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ============================================
   PRODUCTS ERROR
   ============================================ */

.products-error {
  text-align: center;
  padding: var(--space-2xl);
  color: rgba(44, 24, 16, 0.6);
}

.products-error button {
  background: var(--warm-amber);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  margin-left: var(--space-sm);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */

.toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--deep-earth);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   ADD TO CART BUTTON (product cards)
   ============================================ */

.product-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--warm-amber);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  width: 100%;
  margin-top: var(--space-md);
  transition: all var(--transition-fast);
}

.product-card-cta:hover {
  background: var(--golden-honey);
  transform: translateY(-1px);
}

.product-card-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ============================================
   PRODUCT DETAIL MODAL
   ============================================ */

.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-modal-overlay.active .product-modal {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: var(--deep-earth);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
  line-height: 1;
}

.product-modal-close:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: rotate(90deg);
}

/* Modal Image */
.product-modal-image {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.product-modal-image .product-modal-category {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: var(--sage-green);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Modal Info */
.product-modal-info {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-modal-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.product-modal-description {
  font-size: 0.92rem;
  color: rgba(44, 24, 16, 0.7);
  line-height: 1.8;
}

.product-modal-ingredients {
  font-size: 0.82rem;
  color: rgba(44, 24, 16, 0.5);
  font-style: italic;
  padding: var(--space-sm) var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-md);
  line-height: 1.6;
}

/* Variant Selector */
.variant-selector {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.variant-selector-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(44, 24, 16, 0.6);
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.variant-btn {
  padding: 0.55rem 1.1rem;
  border: 2px solid rgba(44, 24, 16, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep-earth);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 80px;
}

.variant-btn:hover {
  border-color: var(--golden-honey);
  background: rgba(212, 160, 23, 0.04);
}

.variant-btn.active {
  border-color: var(--warm-amber);
  background: rgba(212, 160, 23, 0.08);
  box-shadow: 0 0 0 1px var(--warm-amber);
}

.variant-btn .variant-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.variant-btn .variant-price {
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 700;
}

/* Modal Price Display */
.product-modal-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.product-modal-price .current-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--terracotta);
}

.product-modal-price .compare-price {
  font-size: 1rem;
  color: rgba(44, 24, 16, 0.4);
  text-decoration: line-through;
}

/* Quantity Picker */
.qty-picker {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.qty-picker label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(44, 24, 16, 0.6);
  margin-right: var(--space-sm);
}

.qty-picker-controls {
  display: flex;
  align-items: center;
  border: 1px solid rgba(44, 24, 16, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-picker-controls button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  color: var(--deep-earth);
}

.qty-picker-controls button:hover {
  background: rgba(212, 160, 23, 0.15);
}

.qty-picker-controls .qty-value {
  width: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  background: var(--white);
}

/* Modal Add to Cart */
.product-modal-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--warm-amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.product-modal-add:hover {
  background: var(--warm-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 113, 14, 0.4);
}

.product-modal-add svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Card price "desde" label */
.price-from {
  font-size: 0.72rem;
  color: rgba(44, 24, 16, 0.5);
  font-weight: 500;
  margin-right: 2px;
}

/* Card click hint */
.product-card {
  cursor: pointer;
}

/* ── Modal responsive ── */
@media (max-width: 768px) {
  .product-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .product-modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
  }

  .product-modal-overlay.active .product-modal {
    transform: translateY(0);
  }

  .product-modal-image img {
    min-height: 200px;
    max-height: 260px;
  }

  .product-modal-info {
    padding: var(--space-lg);
    padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 0px));
  }

  .product-modal-close {
    top: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    width: 40px;
    height: 40px;
  }

  .variant-btn {
    min-height: 44px;
  }

  .qty-picker-controls button {
    width: 44px;
    height: 44px;
  }
}