@font-face { font-family: 'Montserrat'; font-weight: 400; src: url('../fonts/montserrat-400.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Montserrat'; font-weight: 500; src: url('../fonts/montserrat-500.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Montserrat'; font-weight: 600; src: url('../fonts/montserrat-600.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Montserrat'; font-weight: 700; src: url('../fonts/montserrat-700.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Montserrat'; font-weight: 800; src: url('../fonts/montserrat-800.ttf') format('truetype'); font-display: swap; }

:root {
  --bg: #ffffff;
  --bg-soft: #f7f5f8;
  --ink: #121014;
  --ink-soft: #6b6470;
  --line: #e8e4ea;
  --accent: #9b59b6;
  --accent-deep: #6f3480;
  --accent-glow: #d9a8ec;
  --dark: #0b0a0d;
  --ok: #3fae6a;
  --radius-pill: 999px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(18, 16, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(18, 16, 20, 0.16);
}

[hidden] { display: none !important; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--dark); color: #fff; font-size: 0.78rem;
  text-align: center; padding: 8px 12px; letter-spacing: 0.02em;
}
.topbar strong { color: var(--accent-glow); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; gap: 28px; padding: 16px 32px;
  max-width: 1280px; margin: 0 auto;
}
.logo-mark { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark img { height: 40px; width: auto; }
.logo-mark .word { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; }
.logo-mark .word span { color: var(--accent); }

/* Wordmark de texto para fondos claros (header) -- el logo neón en PNG
   está pensado para fondo negro (footer/hero); sobre blanco se ve como un
   cartel cuadrado, asi que el header usa tipografia propia en su lugar. */
.logo-mark-text { display: flex; align-items: baseline; gap: 7px; }
.logo-mark-text .logo-word { font-size: 1.85rem; font-weight: 800; letter-spacing: -0.02em; color: var(--dark); }
.logo-mark-text .logo-sub { font-size: 0.9rem; font-weight: 600; color: var(--accent-deep); }

.main-nav { display: flex; gap: 22px; font-size: 0.86rem; font-weight: 600; }
.main-nav a { color: var(--ink-soft); transition: color .15s; position: relative; padding: 4px 0; }
.main-nav a:hover { color: var(--ink); }
.main-nav a.hot { color: var(--accent-deep); }

/* mega-menu: cada item tiene padding-bottom + margin-bottom negativo para que
   el mouse pueda bajar del link al panel sin que haya un hueco donde se
   dispare el :hover del item de al lado */
.nav-item { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.mega-panel {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 22px 26px; gap: 30px; min-width: 460px; z-index: 45;
}
.nav-item:hover .mega-panel, .nav-item:focus-within .mega-panel { display: flex; }
.mega-col { min-width: 170px; }
.mega-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.mega-col ul {
  list-style: none; margin: 0; padding: 0 6px 0 0; display: flex; flex-direction: column; gap: 9px;
  max-height: 340px; overflow-y: auto;
}
.mega-col ul a { font-size: 0.83rem; font-weight: 500; color: var(--ink); }
.mega-col ul a:hover { color: var(--accent); }
.mega-col ul a span { color: var(--ink-soft); font-weight: 400; font-size: 0.76rem; }
.mega-viewall { display: inline-block; margin-top: 14px; font-size: 0.78rem; font-weight: 700; color: var(--accent-deep); }
.mega-loading { color: var(--ink-soft); font-size: 0.82rem; }

.hamburger {
  display: none; width: 34px; height: 34px; border: none; background: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px; flex-shrink: 0;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav {
  display: flex; flex-direction: column; width: 100%; order: 4;
  border-top: 1px solid var(--line); padding-top: 10px; gap: 2px;
}
.mobile-nav a { padding: 11px 4px; font-size: 0.92rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a.hot { color: var(--accent-deep); }

.header-search {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 10px 18px; max-width: 340px; margin-left: auto;
}
.header-search input {
  border: none; background: none; outline: none; font: inherit; flex: 1; font-size: 0.85rem; color: var(--ink);
}
.header-icons { display: flex; align-items: center; gap: 18px; }
.icon-btn {
  position: relative; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer;
}
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -8px; right: -10px; background: var(--accent); color: #fff;
  font-size: 0.62rem; font-weight: 700; border-radius: 50%; width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-pill); padding: 13px 28px; font-weight: 700; font-size: 0.86rem;
  cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, background .15s;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--dark); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }

/* ---------- hero ---------- */
/* ---------- hero slider ---------- */
/* alturas explicitas (no min-height) en toda la cadena -- con min-height
   nada mas, el 100% de .hero-track quedaba indeterminado (el padre tiene
   auto-height) y el navegador terminaba apilando la altura de cada nivel
   en vez de que todos midan lo mismo, mandando los puntos del carrusel
   muy por debajo del hero real */
.hero-slider { position: relative; overflow: hidden; height: 680px; }
.hero-slider-mobile { display: none; }
.hero-track { display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.hero-slide { flex: 0 0 100%; height: 100%; }
.hero-slide-img { display: block; position: relative; height: 100%; }
.hero-slide-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
  background: rgba(18,16,20,0.25); backdrop-filter: blur(4px); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s, border-color .15s;
}
.hero-arrow:hover { background: rgba(18,16,20,0.5); border-color: #fff; }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.45); transition: background .15s, width .15s;
}
.hero-dots button.active { background: #fff; width: 22px; border-radius: 4px; }

.hero {
  position: relative; overflow: hidden; background: var(--dark); color: #fff;
  height: 100%; display: flex; align-items: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 82% 20%, rgba(155,89,182,0.55), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(155,89,182,0.25), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 90px 32px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent-glow);
  border: 1px solid rgba(217,168,236,0.4); border-radius: var(--radius-pill); padding: 7px 16px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); line-height: 1.04; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent-glow); }
.hero p.lede { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 460px; margin-bottom: 32px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; }
.hero-actions .btn-ghost { background: transparent; border-color: rgba(255,255,255,0.28); color: #fff; }
.hero-actions .btn-ghost:hover { border-color: var(--accent-glow); color: var(--accent-glow); }
.hero-actions .btn-primary { background: #fff; color: var(--dark); }
.hero-actions .btn-primary:hover { background: var(--accent-glow); color: var(--dark); }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px; padding: 28px; backdrop-filter: blur(6px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 380px;
}
.hero-card a { display: block; }
.hero-card img { border-radius: 14px; aspect-ratio: 1; object-fit: cover; background: #fff; width: 100%; height: 100%; }
.hero-card a.tall { grid-row: span 2; }
.hero-card a.tall img { aspect-ratio: auto; }

/* ---------- value strip ---------- */
.value-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line);
}
.value-item {
  display: flex; align-items: center; gap: 14px; padding: 22px 32px;
  border-right: 1px solid var(--line);
}
.value-item:last-child { border-right: none; }
.value-item .ic {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; color: var(--accent-deep); flex-shrink: 0;
}
.value-item strong { display: block; font-size: 0.86rem; }
.value-item span { display: block; font-size: 0.76rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section.tight { padding: 48px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 34px; gap: 20px;
}
.section-head .eyebrow {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 8px;
}
.section-head h2 { font-size: 1.9rem; }
.section-head p { color: var(--ink-soft); margin-top: 8px; font-size: 0.92rem; max-width: 480px; }
.link-more { font-size: 0.84rem; font-weight: 700; color: var(--accent-deep); white-space: nowrap; padding-bottom: 6px; }
.link-more:hover { text-decoration: underline; }
.head-tight { margin-bottom: 24px; }
.eyebrow-light { border-color: rgba(255,255,255,0.25); }
.btn-invert { background: #fff; color: var(--dark); }
.btn-invert:hover { background: var(--accent-glow); color: var(--dark); }
.auth-msg-error { background: #fdecea; color: #b3261e; border-radius: 10px; padding: 10px 14px; font-size: 0.82rem; }

.section.dark { background: var(--dark); color: #fff; }
.section.soft { background: var(--bg-soft); }

/* ---------- category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-grid-row2 { margin-top: 24px; }
.cat-card {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow); isolation: isolate;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,10,13,0.88) 100%); z-index: 1;
}
.cat-card .label {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; color: #fff;
}
.cat-card .label strong { font-size: 1.3rem; display: block; margin-bottom: 4px; }
.cat-card .label span { font-size: 0.8rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; }

/* ---------- product grid ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.prod-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.prod-media { position: relative; aspect-ratio: 1; background: var(--bg-soft); overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; }
.prod-badge {
  position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff;
  font-size: 0.66rem; font-weight: 700; padding: 5px 10px; border-radius: var(--radius-pill); letter-spacing: 0.03em;
}
.prod-badge-pedido { background: var(--dark); }
.prod-badge-oferta { background: #d1264f; }
.pdp-badge-pedido {
  display: inline-block; background: var(--dark); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-pill); letter-spacing: 0.03em; margin-bottom: 10px;
}
.pdp-nota-pedido { font-size: 0.82rem; color: var(--ink-soft); margin-top: 8px; }
.prod-fav {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; color: var(--ink);
  border: none; cursor: pointer; font-size: 0.9rem; z-index: 2;
}
.prod-fav-active { color: var(--accent); }
.prod-body { padding: 16px; }
.prod-brand { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.prod-name { font-size: 0.88rem; font-weight: 600; margin-top: 4px; line-height: 1.35; }
.prod-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.prod-price { font-size: 1.1rem; font-weight: 800; }
.prod-price-old { font-size: 0.78rem; color: var(--ink-soft); text-decoration: line-through; }
.prod-price-oferta { color: #d1264f; }
.prod-price-consultar { font-size: 0.85rem; color: var(--ink-soft); font-weight: 700; }
.prod-installments { font-size: 0.7rem; color: var(--ok); margin-top: 2px; font-weight: 600; }

/* ---------- promo banner ---------- */
.promo-banner { display: block; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.promo-banner img { width: 100%; display: block; transition: transform .4s ease; }
.promo-banner:hover img { transform: scale(1.015); }

/* ---------- combo banner ---------- */
.combo-banner {
  border-radius: 26px; overflow: hidden; position: relative; background: linear-gradient(120deg, var(--accent-deep), var(--dark) 70%);
  color: #fff; padding: 56px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center;
}
.combo-banner h3 { font-size: 1.9rem; margin-bottom: 12px; }
.combo-banner p { color: rgba(255,255,255,0.75); font-size: 0.94rem; max-width: 420px; margin-bottom: 22px; }
.combo-visual { display: flex; gap: 14px; justify-content: center; }
.combo-visual img { width: 130px; height: 130px; object-fit: cover; border-radius: 16px; border: 3px solid rgba(255,255,255,0.18); background: #fff; }
.combo-visual .plus { align-self: center; font-size: 1.6rem; font-weight: 800; opacity: 0.6; }

/* ---------- combos grid (home) ---------- */
.combos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.combo-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .18s, transform .18s;
}
.combo-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.combo-card-visual {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--bg-soft); padding: 20px; aspect-ratio: 4/3;
}
.combo-card-visual img { width: 42%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; background: #fff; border: 1px solid var(--line); }
.combo-card-visual .plus { font-size: 1.1rem; font-weight: 800; color: var(--ink-soft); flex-shrink: 0; }
.combo-card-body { padding: 16px; }
.combo-card-body h3 { font-size: 0.98rem; margin-bottom: 6px; }
.combo-card-body p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 12px; min-height: 2.4em; }
.combo-card-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.combo-price-now { font-size: 1.1rem; font-weight: 800; }
.combo-price-old { font-size: 0.78rem; color: var(--ink-soft); text-decoration: line-through; }
.combo-save { font-size: 0.72rem; font-weight: 700; color: var(--ok); width: 100%; }

@media (max-width: 980px) {
  .combos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- brands ---------- */
.brand-strip { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 6px 0; }
.brand-chip {
  height: 72px; width: 150px; flex-shrink: 0; border-radius: 12px; background: #fff;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  padding: 14px 20px; transition: border-color .2s, box-shadow .2s; cursor: pointer;
}
.brand-chip:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.brand-chip img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }

/* ---------- trust / testimonial ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.trust-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.trust-card p.quote { font-size: 0.88rem; line-height: 1.6; color: var(--ink); margin-bottom: 16px; }
.trust-who { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--ink-soft); }
.trust-who .avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent-deep); font-size: 0.72rem; }

/* ---------- quienes somos ---------- */
.about-section { padding-top: 8px; padding-bottom: 56px; }
.about-inner { max-width: 640px; text-align: center; margin: 0 auto; }
.about-inner .eyebrow { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 10px; }
.about-inner h2 { font-size: 1.5rem; margin-bottom: 14px; }
.about-inner p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.7; }

/* ---------- newsletter ---------- */
.newsletter {
  border-radius: 26px; background: var(--bg-soft); padding: 52px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.newsletter h3 { font-size: 1.5rem; margin-bottom: 8px; }
.newsletter p { color: var(--ink-soft); font-size: 0.88rem; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 420px; min-width: 280px; }
.newsletter-form input {
  flex: 1; border: 1.5px solid var(--line); border-radius: var(--radius-pill); padding: 13px 20px;
  font: inherit; font-size: 0.85rem; outline: none; background: #fff;
}
.newsletter-form input:focus { border-color: var(--accent); }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.72); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo-mark img { height: 34px; }
.footer-brand .word { color: #fff; }
.footer-brand p { font-size: 0.82rem; margin-top: 14px; line-height: 1.6; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--accent-glow); color: var(--accent-glow); }
.footer-col h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.82rem; margin-bottom: 11px; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 0.74rem;
  color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 12px;
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.pay-chip {
  border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; padding: 4px 8px; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.6);
}

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  z-index: 50; color: #fff;
}

/* ---------- social proof (pedidos reales) ---------- */
.social-proof-card {
  position: fixed; left: 20px; bottom: 26px; z-index: 45; display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 12px 34px 12px 12px; max-width: 300px;
  opacity: 0; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s;
}
.social-proof-card.social-proof-in { opacity: 1; transform: translateY(0); }
.social-proof-thumb { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: var(--bg-soft); }
.social-proof-body { min-width: 0; }
.social-proof-quien { font-size: 0.74rem; color: var(--ink-soft); }
.social-proof-producto { font-size: 0.82rem; font-weight: 700; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.social-proof-tiempo { font-size: 0.7rem; color: var(--ink-soft); margin-top: 2px; }
.social-proof-close {
  position: absolute; top: 6px; right: 8px; border: none; background: none; color: var(--ink-soft);
  font-size: 1rem; line-height: 1; cursor: pointer; padding: 4px;
}
@media (max-width: 640px) {
  .social-proof-card { left: 12px; right: 12px; bottom: 16px; max-width: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-row { flex-wrap: wrap; row-gap: 10px; padding: 14px 20px; }
  .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .header-search { max-width: none; order: 3; flex-basis: 100%; }
  .header-icons { margin-left: auto; }
  /* padding lateral extra para que el texto no quede debajo de las flechas
     del carrusel (38px de flecha + 10px de offset) */
  .hero-inner { grid-template-columns: 1fr; padding: 56px 56px; }
  .hero-visual { display: none; }
  .hero-slider { height: 500px; }
  .hero-slider-desktop { display: none; }
  .hero-slider-mobile { display: block; }
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
  .value-strip { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--line); }
  .cat-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .combo-banner { grid-template-columns: 1fr; padding: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 20px; }
}
