/* =============================================
   TUCABELO - Premium Barber Shop CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --bg-primary: #fcfcfc;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f2f5;
  --surface: #ffffff;
  --surface-2: #f0f2f5;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(82, 194, 201, 0.4);

  /* Brand Colors (Clean & Bold) */
  --teal: #0d7377;
  --teal-dark: #094f52;
  --teal-glow: rgba(13, 115, 119, 0.15);
  --teal-glow-strong: rgba(13, 115, 119, 0.3);
  --gold: #b5935a;
  --gold-dark: #8c7144;
  --gold-glow: rgba(181, 147, 90, 0.2);

  /* Text */
  --text-primary: #1a1a24;
  --text-secondary: #4a4a5e;
  --text-muted: #6e6e87;

  /* Status */
  --success: #00d4aa;
  --danger: #ff4d6d;
  --warning: #ffd166;

  /* Gradients */
  --grad-teal: linear-gradient(135deg, #0d7377, #094f52);
  --grad-gold: linear-gradient(135deg, #b5935a, #8c7144);
  --grad-dark: linear-gradient(180deg, #08080f 0%, #0f0f1a 100%);
  --grad-hero: linear-gradient(135deg, rgba(8,8,15,0.95) 0%, rgba(0,40,60,0.8) 50%, rgba(8,8,15,0.9) 100%);

  /* Spacing */
  --max-w: 1280px;
  --nav-h: 72px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-teal: 0 0 30px rgba(0,200,255,0.2);
  --shadow-gold: 0 0 30px rgba(245,166,35,0.25);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-dark); }

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(82, 194, 201, 0.3);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-text span.tuca { color: var(--text-primary); }
.logo-text span.belo { color: var(--teal); }
.logo-text span.dot { color: var(--gold); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--teal-glow);
}

.nav-links a.active {
  color: var(--teal);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text-secondary);
  background: transparent;
  transition: var(--transition);
  position: relative;
}

.nav-btn:hover {
  color: var(--teal);
  background: var(--teal-glow);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: var(--teal);
  color: var(--bg-primary);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: var(--transition);
}

.nav-hamburger:hover { background: var(--teal-glow); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8,8,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--teal);
  background: var(--teal-glow);
  border-color: var(--border-hover);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,15,0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-inner {
  width: 100%;
  max-width: 640px;
  padding: 24px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}

.search-field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.search-field input::placeholder { color: var(--text-muted); }

.search-close {
  color: var(--text-muted);
  font-size: 1.2rem;
  padding: 4px;
  transition: var(--transition-fast);
}

.search-close:hover { color: var(--teal); }

/* ===== HERO V2 — Design-Only Hero ===== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0e1215 0%, #141b1f 45%, #0a1118 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Repeating grid/pattern layer */
.hero-v2-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
}

/* Ambient orbs */
.hero-v2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,115,119,0.25) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(181,147,90,0.12) 0%, transparent 70%);
  bottom: -60px;
  left: 5%;
  animation: orb-drift 16s ease-in-out infinite alternate-reverse;
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(40px, -30px); }
}

/* Two-column layout */
.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

/* ---- LEFT: Copy ---- */
.hero-v2-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,115,119,0.2);
  border: 1px solid rgba(13,115,119,0.4);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeInDown 0.6s ease both;
}

.hero-v2-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero-v2-title {
  display: flex;
  flex-direction: column;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease both 0.1s;
}

.hero-v2-line-1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: #e8eaed;
}

.hero-v2-line-2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: #e8eaed;
}

.hero-v2-line-3 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: var(--teal);
  -webkit-text-stroke: 0;
}

.hero-v2-sub {
  font-size: 1rem;
  color: rgba(232, 234, 237, 0.65);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease both 0.2s;
}

.hero-v2-sub strong {
  color: var(--gold);
  font-weight: 600;
}

/* CTAs */
.hero-v2-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.9s ease both 0.3s;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--teal);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,115,119,0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(37,211,102,0.1);
  color: #25d366;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid rgba(37,211,102,0.3);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(37,211,102,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}

/* Stats bar */
.hero-v2-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeInUp 1s ease both 0.4s;
}

.hero-v2-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-v2-stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #e8eaed;
  line-height: 1;
}

.hero-v2-stat span {
  font-size: 0.72rem;
  color: rgba(232, 234, 237, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-v2-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ---- RIGHT: Product Showcase ---- */
.hero-v2-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInRight 0.9s ease both 0.2s;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Main product display */
.hero-prod-main {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 280px;
  overflow: hidden;
  transition: var(--transition);
}

.hero-prod-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(13,115,119,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-prod-main:hover {
  border-color: rgba(13,115,119,0.3);
  box-shadow: 0 0 40px rgba(13,115,119,0.15);
}

.hero-prod-img-main {
  width: 100%;
  max-width: 240px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.65));
  transition: transform 0.4s ease;
  animation: float-product 5s ease-in-out infinite alternate;
}

@keyframes float-product {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.hero-prod-main:hover .hero-prod-img-main {
  transform: scale(1.04) translateY(-8px);
}

/* "Más vendido" badge */
.hero-prod-tag {
  position: absolute;
  top: 16px;
  right: 16px;
}

.hero-prod-tag-pill {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Secondary product cards */
.hero-prod-secondaries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-prod-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  transition: var(--transition);
  cursor: default;
}

.hero-prod-card:hover {
  border-color: rgba(13,115,119,0.3);
  background: rgba(13,115,119,0.07);
}

.hero-prod-card img {
  width: 100%;
  max-width: 90px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.55));
}

.hero-prod-card span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(232, 234, 237, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Brand badges row */
.hero-brands {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-brand-badge {
  padding: 5px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(232,234,237,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
}

.hero-brand-badge:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* Scroll indicator */
.hero-v2-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(232,234,237,0.3);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce-scroll 2.5s ease-in-out infinite;
}

/* ===== HERO BANNER (legacy — replaced by hero-v2) ===== */
.hero-banner { display: none; }
.hero-hd-btn { display: none; }



/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s infinite;
}

@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-glow);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.6); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease;
}

.hero-title .line-1 { color: var(--text-primary); }
.hero-title .line-2 { color: var(--teal); }
.hero-title .line-3 { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle strong { color: var(--teal); font-weight: 600; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.9s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--grad-teal);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-teal);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,200,255,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Badges floating */
.hero-floats {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.float-badge {
  background: rgba(15,15,26,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-in 0.6s ease both;
}

.float-badge:nth-child(1) { animation-delay: 0.3s; }
.float-badge:nth-child(2) { animation-delay: 0.5s; }
.float-badge:nth-child(3) { animation-delay: 0.7s; }
.float-badge:nth-child(4) { animation-delay: 0.9s; }

@keyframes float-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.float-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.float-info .float-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.float-info .float-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: bounce-scroll 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 80px 0;
}

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

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--teal-glow);
  color: var(--teal);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title span { color: var(--teal); }
.section-title .gold { color: var(--gold); }

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  group: true;
  aspect-ratio: 1;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-teal);
}

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

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

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(0,40,60,0.95) 0%, rgba(0,40,60,0.4) 60%, transparent 100%);
}

.cat-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  transition: var(--transition);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.cat-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal-glow-strong);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 0 0 1px var(--teal-glow);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  /* isolation:isolate crea contexto limpio para que mix-blend-mode funcione contra el background */
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  /* Fondo claro neutro necesario para que multiply elimine el blanco */
  background: #f4f5f6;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  display: block;
  /* multiply: blanco (255) x fondo (#f4f5f6) = fondo — el blanco desaparece */
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}

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

.badge-oferta {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--danger);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.badge-nuevo {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-quick-add {
  position: absolute;
  bottom: -56px;
  left: 0; right: 0;
  background: var(--teal-glow);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--teal-glow-strong);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover .product-quick-add {
  bottom: 0;
}

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price-current {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-old {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(0,212,170,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ===== OFERTA / SALE PRICE STYLES ===== */
.price-sale {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #00d4aa;
}

.price-original {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: #e53e3e;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.product-offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: #e53e3e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.btn-add-cart {
  flex: 1;
  padding: 10px 16px;
  background: var(--grad-teal);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,200,255,0.35);
}

.btn-whatsapp {
  width: 40px;
  height: 40px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: rgba(37,211,102,0.25);
  transform: translateY(-1px);
}

/* ===== CATEGORY PAGE HEADER ===== */
.cat-page-header {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.cat-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,200,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.05) 0%, transparent 50%);
}

.cat-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}

.cat-page-title span { color: var(--teal); }

.cat-page-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  position: relative;
}

.cat-page-desc ul {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-page-desc ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cat-page-desc ul li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  color: var(--teal);
  border-color: var(--border-hover);
  background: var(--teal-glow);
}

.filter-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  outline: none;
  transition: var(--transition);
}

.sort-select:focus { border-color: var(--border-hover); }
.sort-select option { background: var(--bg-secondary); }

.results-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,200,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.newsletter-sub {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-hover);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--surface-2);
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form button {
  padding: 14px 24px;
  background: var(--grad-teal);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* ===== FOOTER (PREMIUM REDESIGN) ===== */
footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-body) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-text { 
  font-size: 1.6rem; 
  margin-bottom: 15px; 
  display: inline-block;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 320px;
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.3);
  color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.2);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.footer-col ul { 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-col ul li a:hover { 
  color: var(--teal); 
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== WHATSAPP FLOATING BTN ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: wa-pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.7);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  z-index: 1501;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}

.cart-sidebar.open { right: 0; }

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

.cart-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.cart-close:hover { color: var(--teal); background: var(--teal-glow); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--text-muted);
}

.cart-empty-icon { font-size: 3rem; }
.cart-empty p { font-size: 0.9rem; text-align: center; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}

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

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.qty-btn:hover { border-color: var(--teal); color: var(--teal); }
.qty-val { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }

.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition-fast);
  align-self: flex-start;
}

.cart-item-remove:hover { color: var(--danger); }

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

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

.cart-total span { font-size: 0.9rem; color: var(--text-secondary); }
.cart-total strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: var(--grad-teal);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-bottom: 10px;
}

.btn-checkout:hover {
  box-shadow: 0 4px 30px rgba(0,200,255,0.4);
  transform: translateY(-1px);
}

.btn-checkout-wa {
  width: 100%;
  padding: 12px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-checkout-wa:hover { background: rgba(37,211,102,0.2); }

/* ===== TOAST NOTIFICATION ===== */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 360px;
  box-shadow: var(--shadow-card);
  animation: toast-in 0.3s ease;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.toast-icon { font-size: 1.2rem; }
.toast-msg { font-size: 0.875rem; color: var(--text-primary); flex: 1; }
.toast-close { color: var(--text-muted); font-size: 0.9rem; }
.toast-close:hover { color: var(--text-primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* ===== CATALOG SPECIFIC ===== */
.catalog-intro {
  padding: 120px 0 40px;
  position: relative;
}

.catalog-intro h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.catalog-intro p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   RESPONSIVE — Mobile-First Overhaul
   ==========================================================================
   Breakpoints:
     - Base styles    → < 480px  (small phones)
     - xs             → >= 480px (large phones)
     - sm             → >= 640px (phablets / small tablets)
     - md             → >= 768px (tablets portrait)
     - lg             → >= 992px (tablets landscape / small laptops)
     - xl             → >= 1024px (laptops / desktop)
     - 2xl            → >= 1280px (large desktop — max-width container)
   ========================================================================== */

/* -------------------------------------------------------
   BASE MOBILE OVERRIDES  (< 480px)
   Applied to ALL screens, overridden upward.
   ------------------------------------------------------- */

/* -- Navbar -- */
.nav-links { display: none; }

.nav-hamburger {
  display: flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-inner {
  position: relative;
  justify-content: center;
}

.nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  height: 60px !important;
  max-height: 60px !important;
  width: auto;
  object-fit: contain;
}

.nav-actions {
  width: 100%;
  justify-content: flex-end;
}

/* Ensure touch-friendly tap targets (min 44×44px) */
.nav-btn {
  min-width: 44px;
  min-height: 44px;
}

.nav-hamburger {
  min-width: 44px;
  min-height: 44px;
}

/* -- Mobile Menu -- */
.mobile-menu {
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* -- Hero Banner -- */
.hero-banner {
  margin-top: var(--nav-h) !important;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* -- Hero Section (legacy, if used) -- */
.hero {
  min-height: auto;
  padding-top: var(--nav-h);
}

.hero-content {
  padding: 40px 0;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(1.8rem, 8vw, 2.4rem);
}

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

.hero-ctas {
  flex-direction: column;
  margin-bottom: 32px;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-secondary {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.hero-stats {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-floats { display: none; }
.hero-scroll { display: none; }

/* -- Sections -- */
.section {
  padding: 48px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(1.5rem, 6vw, 1.8rem);
}

.section-desc {
  font-size: 0.9rem;
}

/* -- Features Strip -- */
.features-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature-item {
  padding: 12px 14px;
  gap: 10px;
  border-right: none !important;
  border-bottom: 1px solid var(--border);
}

/* Even items get left border for visual 2-col separation */
.feature-item:nth-child(even) {
  border-left: 1px solid var(--border);
}

/* Remove bottom border from last row */
.feature-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.feature-icon { font-size: 1.3rem; }
.feature-text strong { font-size: 0.78rem; }
.feature-text span { font-size: 0.68rem; }

/* -- Categories Grid -- */
.categories-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cat-card {
  aspect-ratio: 1;
}

.cat-name { font-size: 0.82rem; color: #ffffff !important; }

.cat-overlay {
  padding: 14px;
}

/* On mobile always show arrow (no hover) */
.cat-arrow {
  opacity: 1;
  transform: translateY(0);
  font-size: 0.7rem;
}

/* -- Products Grid -- */
.products-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.product-info {
  padding: 10px;
}

.product-category {
  font-size: 0.62rem;
  margin-bottom: 4px;
}

.product-name {
  font-size: 0.78rem;
  margin-bottom: 6px;
  -webkit-line-clamp: 2;
}

.price-current {
  font-size: 0.92rem;
}

.price-old { font-size: 0.72rem; }
.price-save { font-size: 0.65rem; padding: 1px 6px; }

.product-actions {
  margin-top: 8px;
  flex-direction: column;
  gap: 6px;
}

.btn-add-cart {
  width: 100%;
  padding: 10px 8px;
  font-size: 0.78rem;
  min-height: 44px;
}

.btn-whatsapp {
  width: 100%;
  height: 38px;
  min-height: 44px;
}

/* Disable hover slide-up on touch */
.product-quick-add {
  display: none;
}

/* Badges */
.badge-oferta, .badge-nuevo {
  font-size: 0.6rem;
  padding: 2px 7px;
  top: 8px;
  left: 8px;
}

.badge-nuevo { right: 8px; left: auto; }

/* -- Filter Bar -- */
.filter-bar {
  flex-direction: column;
  align-items: stretch;
  padding: 12px 14px;
  gap: 10px;
}

.filter-left {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
  gap: 8px;
  padding-bottom: 4px;
}

.filter-left::-webkit-scrollbar { display: none; }

.filter-btn {
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
  padding: 8px 14px;
}

.filter-right {
  justify-content: space-between;
  width: 100%;
}

.sort-select {
  flex: 1;
  min-height: 44px;
}

.results-count {
  font-size: 0.75rem;
}

/* -- Catalog Intro -- */
.catalog-intro {
  padding: 96px 0 24px;
}

.catalog-intro h1 {
  font-size: clamp(1.6rem, 7vw, 2rem);
}

/* -- Category Page Header -- */
.cat-page-header {
  padding: 90px 0 40px;
}

.cat-page-title {
  font-size: clamp(1.6rem, 7vw, 2.2rem);
}

.cat-page-desc {
  font-size: 0.9rem;
}

.cat-page-desc ul li {
  font-size: 0.82rem;
}

/* -- Trust Bar -- */
.trust-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.trust-item {
  padding: 14px 12px;
}

.trust-icon { width: 28px; height: 28px; }
.trust-text strong { font-size: 0.8rem; }
.trust-text span { font-size: 0.7rem; }

/* -- Testimonials -- */
.testimonials-section {
  background: linear-gradient(160deg, #f8fffe 0%, #f0fafa 50%, #f8f9ff 100%);
}

.testimonials-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
  gap: 16px;
}

.testimonial-card {
  padding: 24px 20px;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(20, 184, 166, 0.12);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0,0,0,0.04);
  transition: var(--transition);
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 14px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(20, 184, 166, 0.10);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(20, 184, 166, 0.14), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.3);
}

.testimonial-featured {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 60%, #14b8a6 100%);
  border: none;
  border-radius: 20px;
}

.testimonial-featured::before {
  color: rgba(255,255,255,0.15);
}

.testimonial-featured .testimonial-name,
.testimonial-featured .testimonial-role,
.testimonial-featured .testimonial-quote,
.testimonial-featured .testimonial-footer,
.testimonial-featured .testimonial-product {
  color: #ffffff !important;
}

.testimonial-featured .testimonial-stars {
  filter: brightness(1.3);
}

.testimonial-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.testimonial-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-avatar-wrap {
  flex-shrink: 0;
}

.testimonial-avatar-large {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.testimonial-avatar-fallback {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #0ea5a0);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(20,184,166,0.3);
  flex-shrink: 0;
}

.testimonial-featured .testimonial-avatar-fallback {
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.5);
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.testimonial-stars {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.testimonial-quote {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  text-align: left;
  margin: 0 0 12px;
  font-style: italic;
}

.testimonial-featured .testimonial-quote {
  color: rgba(255,255,255,0.92);
}

.testimonial-footer {
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-featured .testimonial-footer {
  border-top-color: rgba(255,255,255,0.2);
}

.testimonial-product {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
}

.testimonial-featured .testimonial-product {
  color: rgba(255,255,255,0.85);
}

.testimonials-cta {
  flex-direction: column;
  text-align: center;
  gap: 16px;
  padding: 24px 16px;
}

.btn-cta-wa {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

/* -- Newsletter -- */
.newsletter-form {
  flex-direction: column;
  border-radius: 0;
  border: none;
  gap: 10px;
}

.newsletter-form input {
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  min-height: 48px;
}

.newsletter-form button {
  border-radius: var(--radius-md);
  padding: 14px;
  min-height: 48px;
}

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

.footer-brand p {
  max-width: 100%;
}

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

.payment-methods {
  flex-wrap: wrap;
  justify-content: center;
}

/* -- Cart Sidebar (full width on mobile) -- */
.cart-sidebar {
  width: 100%;
  right: -100%;
}

/* -- WhatsApp Float (smaller on mobile, safe from product buttons) -- */
.whatsapp-float {
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

/* -- Toast (mobile) -- */
.toast-container {
  left: 12px;
  right: 12px;
  bottom: 80px;
}

.toast {
  min-width: unset;
  max-width: 100%;
  width: 100%;
}

/* -- Generic button min-heights for accessibility -- */
.btn-primary, .btn-secondary {
  min-height: 48px;
}


/* -------------------------------------------------------
   XS — >= 480px  (larger phones)
   ------------------------------------------------------- */
@media (min-width: 480px) {
  .products-grid {
    gap: 14px;
  }

  .product-info {
    padding: 12px;
  }

  .product-name {
    font-size: 0.82rem;
    margin-bottom: 8px;
  }

  .product-actions {
    flex-direction: row;
  }

  .btn-whatsapp {
    width: 44px;
    height: 44px;
  }

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

  .trust-icon { width: 32px; height: 32px; }
  .trust-text strong { font-size: 0.82rem; }
  .trust-text span { font-size: 0.72rem; }

  .testimonial-top {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .testimonial-quote {
    text-align: left;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}


/* -------------------------------------------------------
   SM — >= 640px  (phablets / small tablets)
   ------------------------------------------------------- */
@media (min-width: 640px) {
  :root {
    --nav-h: 68px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-v2-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-v2-inner {
    padding: 60px 0;
  }

  .hero-v2-ctas {
    flex-direction: row;
  }

  .hero-v2-ctas .btn-hero-primary,
  .hero-v2-ctas .btn-hero-secondary {
    width: auto;
  }

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

  .product-name {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .price-current { font-size: 1rem; }

  .categories-grid {
    gap: 14px;
  }

  .cat-name { font-size: 0.9rem; }

  .catalog-intro {
    padding: 110px 0 32px;
  }

  .cat-page-header {
    padding: 100px 0 48px;
  }

  .newsletter-form {
    flex-direction: row;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-hover);
    gap: 0;
    overflow: hidden;
  }

  .newsletter-form input {
    border: none;
    border-radius: 0;
  }

  .newsletter-form button {
    border-radius: 0;
  }

  .testimonials-grid {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* -------------------------------------------------------
   MD — >= 768px  (tablets portrait)
   ------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --nav-h: 72px;
  }

  .section {
    padding: 72px 0;
  }

  /* Features strip → 4 columns like desktop */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-item {
    padding: 0 20px;
    border-right: 1px solid var(--border) !important;
    border-left: none !important;
    border-bottom: none !important;
  }

  .feature-item:last-child {
    border-right: none !important;
  }

  .feature-icon { font-size: 1.5rem; }
  .feature-text strong { font-size: 0.82rem; }
  .feature-text span { font-size: 0.72rem; }

  /* Products → 3 columns */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .product-info { padding: 14px; }
  .product-name { font-size: 0.88rem; }
  .price-current { font-size: 1.05rem; }

  /* Re-enable hover quick-add on non-touch */
  @media (hover: hover) {
    .product-quick-add {
      display: flex;
    }
  }

  /* Categories → 2 cols still, but bigger gaps */
  .categories-grid {
    gap: 18px;
  }

  /* Filter bar horizontal */
  .filter-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .filter-left {
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .filter-right {
    width: auto;
  }

  /* Trust grid → 2 cols with more space */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-item { padding: 16px; }
  .trust-icon { width: 36px; height: 36px; }
  .trust-text strong { font-size: 0.85rem; }
  .trust-text span { font-size: 0.75rem; }

  /* Testimonials → 2 cols */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  /* Featured card spans full width at top */
  .testimonial-featured {
    grid-column: 1 / -1;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-badge {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
  }

  .testimonials-cta {
    flex-direction: row;
    text-align: left;
  }

  .btn-cta-wa {
    width: auto;
  }

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

  /* Cart sidebar → fixed width again */
  .cart-sidebar {
    width: 400px;
    right: -400px;
  }

  /* WhatsApp float back to normal */
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Toast */
  .toast-container {
    left: auto;
    right: 24px;
    bottom: 90px;
  }

  .toast {
    min-width: 280px;
    max-width: 360px;
    width: auto;
  }
}


/* -------------------------------------------------------
   LG — >= 992px  (tablets landscape / small laptops)
   ------------------------------------------------------- */
@media (min-width: 992px) {
  /* Trust bar → 4 columns */
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Testimonials → 3 columns with featured wider */
  .testimonials-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .testimonial-featured {
    grid-column: auto;
  }
}


/* -------------------------------------------------------
   XL — >= 1024px  (desktop)
   Full desktop layout restored.
   ------------------------------------------------------- */
@media (min-width: 1024px) {
  :root {
    --nav-h: 72px;
  }

  /* Navbar: show full horizontal links */
  .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .nav-logo {
    position: static;
    transform: none;
  }

  .nav-actions {
    width: auto;
  }

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

  .hero-v2-inner {
    padding: 80px 0;
  }

  .hero-v2-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
  }

  .hero-v2-sub {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .hero-v2-showcase { display: flex; }
  .hero-v2-scroll { display: flex; }

  .hero-v2-stats {
    flex-direction: row;
    gap: 40px;
  }

  /* Sections */
  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  }

  /* Features strip */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-item {
    padding: 0 24px;
    gap: 14px;
  }

  .feature-icon { font-size: 1.6rem; }
  .feature-text strong { font-size: 0.85rem; }
  .feature-text span { font-size: 0.75rem; }

  /* Categories → 4 columns */
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .cat-name { font-size: 1rem; }

  /* Cat arrow: back to hover-only */
  .cat-arrow {
    opacity: 0;
    transform: translateY(6px);
  }

  .cat-card:hover .cat-arrow {
    opacity: 1;
    transform: translateY(0);
  }

  /* Products → 4 columns */
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .product-info { padding: 16px; }

  .product-category {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .product-name {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .price-current { font-size: 1.1rem; }
  .price-old { font-size: 0.82rem; }
  .price-save { font-size: 0.72rem; padding: 2px 8px; }

  .product-actions {
    margin-top: 14px;
    flex-direction: row;
    gap: 8px;
  }

  .btn-add-cart {
    flex: 1;
    width: auto;
    font-size: 0.82rem;
    min-height: 40px;
    padding: 10px 16px;
  }

  .btn-whatsapp {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .badge-oferta, .badge-nuevo {
    font-size: 0.7rem;
    padding: 3px 10px;
    top: 12px;
    left: 12px;
  }
  .badge-nuevo { right: 12px; left: auto; }

  /* Re-enable hover quick-add */
  .product-quick-add {
    display: flex;
  }

  /* Filter bar */
  .filter-bar {
    padding: 16px 24px;
  }

  /* Catalog intro */
  .catalog-intro {
    padding: 120px 0 40px;
  }

  .catalog-intro h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  /* Category page header */
  .cat-page-header {
    padding: 120px 0 60px;
  }

  .cat-page-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
  }

  /* Footer → 4 columns */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }

  .footer-brand p {
    max-width: 280px;
  }

  /* Cart sidebar */
  .cart-sidebar {
    width: 420px;
    right: -420px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    width: 58px;
    height: 58px;
    bottom: 28px;
    right: 28px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  /* Toast */
  .toast-container {
    bottom: 100px;
    right: 24px;
  }

  /* General buttons — relax min-height at desktop */
  .btn-primary, .btn-secondary {
    min-height: unset;
  }
}

/* -------------------------------------------------------
   Prevent horizontal scroll globally
   ------------------------------------------------------- */
html, body {
  overflow-x: hidden;
}

/* -------------------------------------------------------
   Safe area padding for notched phones (iPhone X+)
   ------------------------------------------------------- */
@supports (padding: env(safe-area-inset-bottom)) {
  .whatsapp-float {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .cart-footer {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .mobile-menu {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* -------------------------------------------------------
   Search Results Overlay
   ------------------------------------------------------- */
#search-results {
  margin-top: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-result-item:hover {
  background: var(--bg-card-hover);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
}

.search-result-add {
  font-size: 1.2rem;
  color: var(--teal);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.search-result-add:hover {
  transform: scale(1.1);
}

/* -------------------------------------------------------
   Mobile (Base) overrides for hero-v2
   ------------------------------------------------------- */
@media (max-width: 639px) {
  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-v2-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-v2-stat-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }

  .hero-v2-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-v2-showcase {
    order: -1; /* Move images above text on mobile */
    align-items: center;
  }

  .hero-prod-main {
    min-height: 200px;
    padding: 24px;
    width: 100%;
  }

  .hero-prod-img-main {
    max-width: 180px;
    height: 180px;
  }

  .hero-prod-secondaries {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

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