/* ==========================================================================
   Rizos Ondea — Identidad: chocolate #58301F · rosa #F5A9BE · crema #FBF4EF
   ========================================================================== */

:root {
  --brown: #552E1F; /* color exacto del fondo del logo */
  --brown-deep: #46251A;
  --brown-soft: #6E4030;
  --pink: #F29DB0; /* rosa exacto del logo */
  --pink-strong: #E87FA0;
  --pink-soft: #FBD9E3;
  --cream: #FBF4EF;
  --cream-2: #F6E9E1;
  --ink: #3B2118;
  --white: #FFFFFF;
  --ok: #2E7D52;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(88, 48, 31, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; } /* evita que el atributo height deforme imágenes fluidas */

a { color: inherit; text-decoration: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- Tipografía ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown);
}

.script { font-style: italic; color: var(--pink-strong); }

.section { padding: 64px 0; }

/* Enlaces de compra por textura (fila compacta) */
.texture-links {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center;
  margin-top: 28px; font-size: 14px; color: var(--brown-soft); font-weight: 500;
}
.texture-links a {
  background: var(--white); border: 1.5px solid var(--pink);
  border-radius: 999px; padding: 7px 16px; font-size: 13px; font-weight: 600;
  color: var(--brown); transition: 0.2s;
}
.texture-links a:hover { background: var(--brown); color: var(--pink); border-color: var(--brown); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pink-strong); font-weight: 600; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { margin-top: 12px; color: var(--brown-soft); }

/* ---------- Iconos SVG ---------- */
.icon {
  width: 1.2em; height: 1.2em; display: inline-block;
  vertical-align: -0.24em; flex: 0 0 auto;
}
.icon-big { width: 60px; height: 60px; color: var(--pink-strong); }
.cart-empty .icon-big, .order-ok .icon-big { margin: 0 auto 10px; display: block; }
.trust-item .ico .icon, .benefit .ico .icon { width: 22px; height: 22px; }
.chip .icon { width: 1.05em; height: 1.05em; }
.floater .icon { color: var(--pink-strong); }
.pay-option > span > .icon { width: 20px; height: 20px; color: var(--pink-strong); }
.contact-lines { display: grid; gap: 9px; font-size: 14px; opacity: 0.9; }
.contact-lines > span { display: flex; gap: 9px; align-items: flex-start; }
.contact-lines .icon { color: var(--pink); margin-top: 3px; }

/* ---------- Barra superior ---------- */
.topbar {
  background: var(--pink); color: var(--brown-deep);
  text-align: center; font-size: 13.5px; font-weight: 600;
  padding: 8px 14px; letter-spacing: 0.3px;
  display: flex; justify-content: center; align-items: center;
  gap: 6px 22px; flex-wrap: wrap;
}
.topbar > span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .icon { width: 1.1em; height: 1.1em; }

/* ---------- Header ---------- */
.header {
  background: var(--brown);
  position: sticky; top: 0; z-index: 60;
  box-shadow: 0 4px 18px rgba(70, 37, 26, 0.35);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 8px 0;
}
.brand { display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.header .brand { align-items: center; }
.brand-logo {
  display: block; width: 168px; height: 72px;
  object-fit: cover; object-position: center;
}
.brand .brand-rizos {
  font-size: 11px; letter-spacing: 4px; color: var(--pink-soft);
  text-transform: uppercase; font-weight: 600;
}
.brand .brand-ondea {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 30px; color: var(--pink);
}
.brand .spark { color: var(--pink); font-size: 16px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--cream); font-size: 14.5px; font-weight: 500;
  padding: 6px 2px; border-bottom: 2px solid transparent; transition: 0.2s;
}
.nav a:hover, .nav a.active { color: var(--pink); border-bottom-color: var(--pink); }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink); color: var(--brown-deep);
  border: none; border-radius: 999px; padding: 9px 18px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: 0.2s;
}
.cart-btn:hover { background: var(--pink-soft); }
.cart-count {
  background: var(--brown-deep); color: var(--pink);
  border-radius: 999px; min-width: 21px; height: 21px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; padding: 0 5px;
}

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--pink); font-size: 26px; line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(700px 380px at 85% 20%, rgba(245, 169, 190, 0.28), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center; padding: 72px 0;
}
.hero h1 { font-size: clamp(34px, 5vw, 56px); }
.hero p.lead { margin: 18px 0 28px; font-size: 17.5px; color: var(--brown-soft); max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-badges span {
  background: var(--white); border: 1px solid var(--pink-soft);
  border-radius: 999px; padding: 7px 15px; font-size: 13px; font-weight: 500;
  color: var(--brown); box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 7px;
}
.hero-badges .icon { color: var(--pink-strong); }

.hero-visual { position: relative; }
.hero-logo-card {
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow);
  transform: rotate(2deg); border: 6px solid var(--white);
}
/* --- Hero de video: texturas de rizo en movimiento --- */
.hero-video { position: relative; background: var(--brown-deep); }
.hero-video .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-video .hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(70, 37, 26, 0.46) 0%, rgba(70, 37, 26, 0.18) 45%, rgba(70, 37, 26, 0.60) 100%);
}
.hero-video .container { position: relative; z-index: 2; }
.hero-video .hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  justify-content: center;
  min-height: min(76vh, 640px); min-height: min(76svh, 640px);
  padding: 92px 0 100px;
}
.hero-video .hero-copy { display: flex; flex-direction: column; align-items: center; }
.hero-video h1 { color: var(--white); text-shadow: 0 2px 26px rgba(59, 33, 24, 0.5); }
.hero-video p.lead { color: var(--cream); max-width: 560px; text-shadow: 0 1px 14px rgba(59, 33, 24, 0.45); }
.hero-video .script { color: var(--pink); }
.hero-video .hero-actions, .hero-video .hero-badges { justify-content: center; }
.hero-video .btn-outline { border-color: var(--white); color: var(--white); }
.hero-video .btn-outline:hover { background: var(--white); color: var(--brown); }
.hero-video .hero-badges span {
  background: rgba(255, 255, 255, 0.13); border-color: rgba(255, 255, 255, 0.35);
  color: var(--white); box-shadow: none;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-video .hero-badges .icon { color: var(--pink); }
.hero-video .scroll-cue { color: var(--cream); }
.hero-video .scroll-cue:hover { color: var(--pink); }
@media (prefers-reduced-motion: reduce) {
  .hero-video .hero-bg { display: none; }
  .hero-video {
    background: url("../Statics/hero-poster.jpg?v=20") center / cover no-repeat, var(--brown-deep);
  }
}

.hero-word { display: inline-block; min-width: 4.2ch; transition: opacity 0.28s ease, transform 0.28s ease; }
.hero-word.out { opacity: 0; transform: translateY(14px); }

.anim-up { opacity: 0; transform: translateY(26px); animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.anim-up.d1 { animation-delay: 0.05s; }
.anim-up.d2 { animation-delay: 0.18s; }
.anim-up.d3 { animation-delay: 0.32s; }
.anim-up.d4 { animation-delay: 0.46s; }

@keyframes fadeUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .anim-up { animation: none; opacity: 1; transform: none; }
}

/* --- Efectos de scroll: revelado progresivo --- */
.rv {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: calc(var(--rv-i, 0) * 80ms);
  will-change: opacity, transform;
}
.rv-left { transform: translateX(-36px); }
.rv-right { transform: translateX(36px); }
.rv-zoom { transform: translateY(18px) scale(0.94); }
.rv.rv-in { opacity: 1; transform: none; }

/* Indicador "sigue bajando" del hero */
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 0 0 30px; margin-top: -8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brown-soft);
  animation: cueFloat 2.6s ease-in-out infinite;
}
.scroll-cue:hover { color: var(--pink-strong); }
.cue-mouse {
  width: 26px; height: 42px; border: 2.5px solid var(--brown);
  border-radius: 999px; display: flex; justify-content: center; padding-top: 7px;
}
.cue-dot {
  width: 5px; height: 9px; border-radius: 999px; background: var(--pink-strong);
  animation: cueDot 1.8s ease-in-out infinite;
}
@keyframes cueDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes cueFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Contadores de estadísticas (manifiesto) */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 44px; text-align: center;
}
.stat .stat-num {
  display: block; font-family: var(--font-display); font-style: italic;
  font-weight: 700; font-size: clamp(30px, 4vw, 44px); color: var(--pink);
  line-height: 1.1;
}
.stat span { font-size: 13px; color: var(--cream-2); letter-spacing: 0.5px; }

/* Barra de progreso de lectura */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--pink), var(--pink-strong));
  z-index: 120; pointer-events: none; transition: width 0.1s linear;
}

/* Header compacto al hacer scroll */
.header { transition: box-shadow 0.3s ease; }
.header.scrolled { box-shadow: 0 8px 28px rgba(70, 37, 26, 0.5); }
.brand-logo { transition: width 0.25s ease, height 0.25s ease; }
.header.scrolled .brand-logo { width: 136px; height: 58px; }

/* Anclas bajo el header pegajoso */
section[id], footer[id] { scroll-margin-top: 96px; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; filter: none; }
  #scroll-progress { display: none; }
  .scroll-cue, .cue-dot { animation: none; }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px; padding: 13px 28px; font-weight: 600; font-size: 15px;
  font-family: var(--font-body); cursor: pointer; transition: 0.22s;
  border: 2px solid transparent; text-align: center;
}
.btn-brown { background: var(--brown); color: var(--pink-soft); }
.btn-brown:hover { background: var(--brown-deep); transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: var(--brown-deep); }
.btn-pink:hover { background: var(--pink-strong); color: var(--white); transform: translateY(-2px); }
.btn-outline { border-color: var(--brown); color: var(--brown); background: transparent; }
.btn-outline:hover { background: var(--brown); color: var(--pink-soft); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* CTA del hero: vidrio rosado, sereno pero visible sobre el video */
.btn-cta {
  background: rgba(242, 157, 176, 0.34);
  border-color: rgba(242, 157, 176, 0.8);
  color: var(--white); font-size: 16px; padding: 15px 32px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(70, 37, 26, 0.2);
}
.btn-cta:hover {
  background: var(--pink); border-color: var(--pink);
  color: var(--brown-deep); transform: translateY(-2px);
}
.btn-cta .cta-arrow { display: inline-block; margin-left: 4px; transition: transform 0.22s ease; }
.btn-cta:hover .cta-arrow { transform: translateX(4px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Marquee editorial ---------- */
.marquee {
  background: var(--brown); overflow: hidden; padding: 12px 0;
  border-top: 2px solid var(--pink); border-bottom: 2px solid var(--pink);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-style: italic; font-size: 21px;
  color: var(--pink); white-space: nowrap; padding-right: 14px;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Cinta de confianza ---------- */
.trust { background: var(--brown); color: var(--cream); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 26px 0;
}
.trust-item { display: flex; align-items: center; gap: 13px; font-size: 14px; }
.trust-item .ico {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(245, 169, 190, 0.16); color: var(--pink);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.trust-item strong { display: block; font-size: 14.5px; color: var(--pink); }

/* ---------- Categorías ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 22px;
  text-align: center; box-shadow: var(--shadow); transition: 0.25s;
  border: 1px solid transparent;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--pink); }
.cat-card .cat-ico {
  width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--pink-soft); display: flex; align-items: center; justify-content: center;
}
.cat-card h3 { font-size: 19px; margin-bottom: 6px; }
.cat-card p { font-size: 13.5px; color: var(--brown-soft); }

/* ---------- Tarjeta de producto ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: 0.25s; border: 1px solid transparent; position: relative;
}
.prod-card:hover { transform: translateY(-6px); border-color: var(--pink); }
.prod-art {
  background: linear-gradient(150deg, var(--pink-soft), var(--cream-2));
  padding: 26px; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 0.85;
}
.prod-art svg { width: 72%; height: auto; }
.prod-art.has-photo { padding: 0; background: var(--white); }
.prod-art.has-photo .prod-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--brown); color: var(--pink); font-size: 11.5px;
  font-weight: 600; letter-spacing: 0.5px; padding: 5px 12px; border-radius: 999px;
}
.prod-badge.badge-pink { background: var(--pink-strong); color: var(--white); }
.prod-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.prod-cat { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--pink-strong); font-weight: 600; }
.prod-name { font-size: 16.5px; font-family: var(--font-display); color: var(--brown); font-weight: 600; line-height: 1.3; }
.prod-name a:hover { color: var(--pink-strong); }
.prod-rating { font-size: 12.5px; color: var(--brown-soft); }
.prod-rating .stars { color: #E7A33C; letter-spacing: 1.5px; }
.prod-price { margin-top: auto; display: flex; align-items: baseline; gap: 9px; }
.prod-price .now { font-size: 18.5px; font-weight: 700; color: var(--brown); }
.prod-price .before { font-size: 13.5px; color: #A98D80; text-decoration: line-through; }
.prod-actions { display: flex; gap: 9px; margin-top: 12px; }
.prod-actions .btn { flex: 1; }

/* ---------- Beneficios / Nosotros ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.benefit-list { display: grid; gap: 18px; margin-top: 26px; }
.benefit {
  display: flex; gap: 15px; background: var(--white); border-radius: 14px;
  padding: 16px 18px; box-shadow: var(--shadow);
}
.benefit .ico {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
  background: var(--pink-soft); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.benefit strong { color: var(--brown); }
.benefit p { font-size: 13.5px; color: var(--brown-soft); }

/* ---------- Pasos rutina ---------- */
.steps { counter-reset: paso; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow); position: relative;
}
.step::before {
  counter-increment: paso; content: counter(paso, decimal-leading-zero);
  font-family: var(--font-display); font-style: italic; font-size: 40px;
  color: var(--pink); font-weight: 700; display: block; margin-bottom: 8px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--brown-soft); }

/* ---------- Testimonios ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px;
}
.testi .stars { color: #E7A33C; letter-spacing: 2px; }
.testi-ico {
  width: 48px; height: 48px; border-radius: 14px; flex: 0 0 auto;
  background: var(--pink-soft); color: var(--pink-strong);
  display: flex; align-items: center; justify-content: center;
}
.testi-ico .icon { width: 22px; height: 22px; }
.testi p { font-size: 14.5px; color: var(--ink); }
.testi footer { display: flex; align-items: center; gap: 12px; }
.testi .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--pink);
  color: var(--brown-deep); font-weight: 700; display: flex;
  align-items: center; justify-content: center; font-size: 15px;
}
.testi footer strong { font-size: 14px; color: var(--brown); display: block; line-height: 1.2; }
.testi footer span { font-size: 12.5px; color: var(--brown-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 13px; }
.faq details {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  overflow: hidden; border: 1px solid transparent;
}
.faq details[open] { border-color: var(--pink); }
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--brown);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--pink-strong); transition: 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; font-size: 14.5px; color: var(--brown-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--brown); border-radius: 26px; padding: 54px 40px;
  text-align: center; color: var(--cream); position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "✦"; position: absolute; color: var(--pink); opacity: 0.5; font-size: 30px;
}
.cta-banner::before { top: 22px; left: 8%; }
.cta-banner::after { bottom: 22px; right: 8%; }
.cta-banner h2 { color: var(--pink); font-size: clamp(26px, 4vw, 38px); }
.cta-banner p { margin: 12px auto 26px; max-width: 520px; color: var(--cream-2); }

/* ---------- Footer ---------- */
.footer { background: var(--brown-deep); color: var(--cream-2); margin-top: 72px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 56px 0 40px;
}
.footer h4 { color: var(--pink); font-size: 15px; margin-bottom: 15px; letter-spacing: 1px; }
.footer a { display: block; font-size: 14px; padding: 4px 0; opacity: 0.9; }
.footer a:hover { color: var(--pink); }
.footer p { font-size: 14px; opacity: 0.9; }
.footer .brand .brand-ondea { font-size: 26px; }
.footer .social-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  color: var(--pink); font-weight: 600; font-size: 14.5px;
  border: 1.5px solid rgba(242, 157, 176, 0.45); border-radius: 999px;
  padding: 8px 16px; transition: 0.2s;
}
.footer .social-link:hover { background: var(--pink); color: var(--brown-deep); }
.footer .pay-line {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 14px; font-size: 12px; opacity: 0.75;
}
.footer .pay-line .icon { color: var(--pink); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(245, 169, 190, 0.18); padding: 18px 0;
  font-size: 13px; text-align: center; opacity: 0.75;
}
.footer-bottom a { display: inline; color: inherit; opacity: 0.55; }
.footer-bottom a:hover { color: var(--pink); opacity: 1; }

/* ---------- Página tienda ---------- */
.page-head {
  background: var(--brown); color: var(--cream); text-align: center; padding: 52px 0;
}
.page-head h1 { color: var(--pink); font-size: clamp(30px, 4.5vw, 44px); }
.page-head p { margin-top: 10px; color: var(--cream-2); max-width: 560px; margin-inline: auto; }
.breadcrumb { font-size: 13px; color: var(--brown-soft); padding: 18px 0 0; }
.breadcrumb a:hover { color: var(--pink-strong); }

.filters {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 30px; background: var(--white); padding: 16px 18px;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.filters label { font-size: 13px; font-weight: 600; color: var(--brown); }
.filters select {
  font-family: var(--font-body); font-size: 14px; padding: 9px 14px;
  border-radius: 10px; border: 1.5px solid var(--pink-soft); background: var(--cream);
  color: var(--ink); cursor: pointer;
}
.filters select:focus { outline: 2px solid var(--pink); }
.filters .spacer { flex: 1; }
.filters .result-count { font-size: 13px; color: var(--brown-soft); }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }

/* Controles de la tienda: pegajosos al hacer scroll */
.shop-controls {
  position: sticky; top: 88px; z-index: 30;
  background: var(--cream); padding: 10px 0 2px; margin-bottom: 24px;
}
.shop-controls .chip-row { margin-bottom: 12px; }
.shop-controls .filters { margin-bottom: 0; }

.search-box { position: relative; flex: 1 1 220px; min-width: 180px; }
.search-box .icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--pink-strong); pointer-events: none;
}
.search-box input {
  width: 100%; font-family: var(--font-body); font-size: 14px;
  padding: 10px 14px 10px 40px; border-radius: 999px;
  border: 1.5px solid var(--pink-soft); background: var(--white); color: var(--ink);
}
.search-box input:focus { outline: 2px solid var(--pink); border-color: var(--pink); }

.chip .chip-count {
  background: var(--pink-soft); color: var(--brown); border-radius: 999px;
  font-size: 11px; font-weight: 700; padding: 1px 8px; margin-left: 3px;
}
.chip.active .chip-count { background: var(--pink); color: var(--brown-deep); }
.chip-clear { border-color: #C9A99B; color: var(--brown-soft); }
.chip-clear:hover { background: #F1E4DC; }

.shop-empty {
  grid-column: 1 / -1; text-align: center; padding: 46px 20px;
  color: var(--brown-soft); display: grid; gap: 12px; justify-items: center;
}
.shop-empty strong { color: var(--brown); font-size: 17px; }

.cart-count.bump { animation: bump 0.4s ease; }
@keyframes bump { 30% { transform: scale(1.45); } }
.btn.added { background: #2E7D52 !important; color: #fff !important; border-color: #2E7D52 !important; }
.chip {
  border: 1.5px solid var(--pink); background: var(--white); color: var(--brown);
  border-radius: 999px; padding: 7px 16px; font-size: 13.5px; font-weight: 500;
  cursor: pointer; font-family: var(--font-body); transition: 0.2s;
}
.chip:hover { background: var(--pink-soft); }
.chip.active { background: var(--brown); border-color: var(--brown); color: var(--pink); }

/* ---------- Detalle de producto ---------- */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 0 72px; }
.detail-art {
  background: linear-gradient(150deg, var(--pink-soft), var(--cream-2));
  border-radius: 26px; display: flex; align-items: center; justify-content: center;
  padding: 48px; box-shadow: var(--shadow); position: sticky; top: 100px;
}
.detail-art svg { width: 70%; height: auto; }
.detail-art.has-photo { padding: 0; background: var(--white); flex-direction: column; overflow: hidden; }
.detail-art.has-photo #detail-img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain; display: block; background: var(--white);
}
.detail-thumbs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  padding: 12px 14px 16px; width: 100%;
}
.detail-thumb {
  width: 62px; height: 62px; border-radius: 12px; overflow: hidden; padding: 0;
  border: 2px solid transparent; background: var(--cream-2); cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.detail-thumb:hover { transform: translateY(-2px); }
.detail-thumb.active { border-color: var(--pink-strong); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-info h1 { font-size: clamp(26px, 3.5vw, 36px); }
.detail-info .prod-cat { display: block; margin-bottom: 8px; }
.detail-info .prod-rating { margin: 10px 0 16px; font-size: 14px; }
.detail-price { display: flex; align-items: baseline; gap: 12px; margin: 8px 0 4px; }
.detail-price .now { font-size: 30px; font-weight: 700; color: var(--brown); }
.detail-price .before { font-size: 17px; color: #A98D80; text-decoration: line-through; }
.detail-size { font-size: 13.5px; color: var(--brown-soft); margin-bottom: 18px; }
.detail-desc { color: var(--brown-soft); margin-bottom: 22px; }
.type-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.type-tags span {
  background: var(--pink-soft); color: var(--brown); font-size: 12.5px;
  font-weight: 600; border-radius: 999px; padding: 5px 13px;
}
.qty-row { display: flex; gap: 14px; align-items: stretch; margin-bottom: 14px; }
.qty-stepper {
  display: inline-flex; align-items: center; border: 2px solid var(--brown);
  border-radius: 999px; overflow: hidden;
}
.qty-stepper button {
  width: 42px; height: 100%; min-height: 48px; border: none; background: transparent;
  font-size: 20px; cursor: pointer; color: var(--brown); font-family: var(--font-body);
}
.qty-stepper button:hover { background: var(--pink-soft); }
.qty-stepper input {
  width: 46px; text-align: center; border: none; font-size: 16px; font-weight: 600;
  font-family: var(--font-body); color: var(--brown); background: transparent;
}
.qty-stepper input:focus { outline: none; }
.detail-ship {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  padding: 16px 18px; font-size: 13.5px; color: var(--brown-soft);
  display: grid; gap: 8px; margin-top: 22px;
}
.detail-ship strong { color: var(--brown); }

.accordion-set { margin-top: 26px; display: grid; gap: 11px; }
.accordion-set details { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); }
.accordion-set summary {
  cursor: pointer; padding: 15px 18px; font-weight: 600; color: var(--brown);
  font-size: 14.5px; list-style: none; display: flex; justify-content: space-between;
}
.accordion-set summary::-webkit-details-marker { display: none; }
.accordion-set summary::after { content: "+"; color: var(--pink-strong); }
.accordion-set details[open] summary::after { content: "–"; }
.accordion-set .acc-body { padding: 0 18px 16px; font-size: 14px; color: var(--brown-soft); }
.accordion-set ul { padding-left: 18px; }

/* ---------- Carrito ---------- */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px; align-items: start; padding: 40px 0 72px; }
.cart-items { display: grid; gap: 16px; }
.cart-item {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 16px 18px;
  box-shadow: var(--shadow);
}
.cart-item .thumb {
  background: linear-gradient(150deg, var(--pink-soft), var(--cream-2));
  border-radius: 12px; padding: 10px; display: flex; align-items: center; justify-content: center;
}
.cart-item .thumb.has-photo { padding: 0; overflow: hidden; background: var(--white); }
.cart-item .thumb.has-photo .prod-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.cart-item h3 { font-size: 15.5px; }
.cart-item .unit { font-size: 13px; color: var(--brown-soft); }
.cart-item .line-right { display: grid; gap: 8px; justify-items: end; }
.cart-item .line-total { font-weight: 700; color: var(--brown); }
.cart-item .remove {
  background: none; border: none; color: var(--pink-strong); cursor: pointer;
  font-size: 12.5px; font-family: var(--font-body); text-decoration: underline;
}
.cart-item .qty-stepper button { min-height: 34px; width: 32px; font-size: 16px; }
.cart-item .qty-stepper input { width: 34px; font-size: 14px; }

.cart-empty {
  text-align: center; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 64px 30px;
}
.cart-empty .big { font-size: 46px; margin-bottom: 10px; }
.cart-empty h2 { margin-bottom: 8px; }
.cart-empty p { color: var(--brown-soft); margin-bottom: 22px; }

.summary {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; position: sticky; top: 100px;
}
.summary h2 { font-size: 21px; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 7px 0; color: var(--brown-soft); }
.sum-row.total { border-top: 2px dashed var(--pink-soft); margin-top: 10px; padding-top: 14px; font-size: 18px; font-weight: 700; color: var(--brown); }
.free-ship-note {
  background: var(--pink-soft); color: var(--brown); font-size: 13px;
  border-radius: 10px; padding: 10px 14px; margin: 12px 0; font-weight: 500;
}
.free-ship-note.ok { background: #DDF0E5; color: var(--ok); }

.checkout-form { display: grid; gap: 13px; margin-top: 18px; }
.checkout-form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.checkout-form label { font-size: 13px; font-weight: 600; color: var(--brown); display: grid; gap: 5px; }
.checkout-form input, .checkout-form select, .checkout-form textarea {
  font-family: var(--font-body); font-size: 14px; padding: 11px 13px;
  border-radius: 10px; border: 1.5px solid var(--pink-soft); background: var(--cream);
  color: var(--ink); width: 100%;
}
.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus {
  outline: 2px solid var(--pink); border-color: var(--pink);
}
.pay-options { display: grid; gap: 9px; }
.pay-option {
  display: flex; gap: 11px; align-items: flex-start; border: 1.5px solid var(--pink-soft);
  border-radius: 12px; padding: 12px 14px; cursor: pointer; transition: 0.15s;
  font-size: 13.5px; font-weight: 500;
}
.pay-option:hover { border-color: var(--pink); }
.pay-option input { width: auto; accent-color: var(--pink-strong); margin-top: 3px; }
.pay-option small { display: block; font-weight: 400; color: var(--brown-soft); }

.order-ok {
  text-align: center; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 64px 30px; max-width: 640px; margin: 40px auto 72px;
}
.order-ok .big { font-size: 52px; }
.order-ok h1 { margin: 12px 0 10px; }
.order-ok p { color: var(--brown-soft); margin-bottom: 24px; }

/* ---------- Compra por textura ---------- */
.texture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.texture-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--brown); color: var(--cream); text-align: center;
  padding: 34px 22px 30px; box-shadow: var(--shadow); transition: 0.25s;
  border: 1px solid transparent;
}
.texture-card:hover { transform: translateY(-6px); border-color: var(--pink); }
.texture-card .tex-ico {
  width: 92px; height: 92px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(242, 157, 176, 0.14); display: flex; align-items: center; justify-content: center;
}
.texture-card .tex-ico svg { width: 60px; height: 60px; }
.texture-card h3 { color: var(--pink); font-size: 22px; }
.texture-card .tex-range { font-size: 12.5px; letter-spacing: 2.5px; color: var(--pink-soft); text-transform: uppercase; font-weight: 600; }
.texture-card p { font-size: 13.5px; color: var(--cream-2); margin: 10px 0 16px; }
.texture-card .btn { font-size: 13px; padding: 9px 20px; }

/* ---------- Banner Test capilar ---------- */
.test-banner {
  display: grid; grid-template-columns: 1.3fr 1fr; align-items: center; gap: 30px;
  background: linear-gradient(120deg, var(--pink-soft), var(--cream-2));
  border: 2px solid var(--pink); border-radius: 26px; padding: 40px 44px;
  position: relative; overflow: hidden;
}
.test-banner::after {
  content: "✦"; position: absolute; right: 30px; top: 18px;
  color: var(--pink-strong); font-size: 30px; opacity: 0.6;
}
.test-banner h2 { font-size: clamp(24px, 3.4vw, 34px); }
.test-banner p { color: var(--brown-soft); margin: 10px 0 0; }
.test-banner .tb-actions { display: flex; justify-content: flex-end; }

/* ---------- Manifiesto ---------- */
.manifesto { background: var(--brown); color: var(--cream); position: relative; overflow: hidden; }
.manifesto::before {
  content: "“"; position: absolute; top: -30px; left: 4%;
  font-family: var(--font-display); font-size: 240px; color: rgba(242, 157, 176, 0.16);
  line-height: 1;
}
.manifesto blockquote {
  max-width: 820px; margin: 0 auto; text-align: center;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 3vw, 29px); line-height: 1.5; color: var(--cream);
}
.manifesto blockquote strong { color: var(--pink); font-weight: 600; }
.manifesto figcaption { text-align: center; margin-top: 22px; color: var(--pink); font-weight: 600; letter-spacing: 2px; font-size: 13px; text-transform: uppercase; }

/* ---------- Grilla Instagram ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ig-tile {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 1;
  box-shadow: var(--shadow); display: block;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-tile:hover img { transform: scale(1.06); }
.ig-tile .ig-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(70, 37, 26, 0.55); opacity: 0; transition: 0.3s; color: var(--pink);
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-tile .ig-overlay .icon { width: 34px; height: 34px; }
.ig-tile.ig-cta {
  background: var(--brown); display: flex; flex-direction: column; gap: 10px;
  align-items: center; justify-content: center; text-align: center; color: var(--pink);
  font-weight: 600; padding: 18px;
}
.ig-tile.ig-cta .icon { width: 34px; height: 34px; }
.ig-tile.ig-cta .ig-handle { font-family: var(--font-display); font-style: italic; font-size: 20px; }
.ig-tile.ig-cta small { color: var(--cream-2); font-weight: 400; font-size: 12.5px; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--pink); border-radius: 26px; padding: 44px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center;
}
.newsletter h2 { color: var(--brown-deep); font-size: clamp(22px, 3.2vw, 32px); }
.newsletter p { color: var(--brown); margin-top: 8px; font-size: 14.5px; }
.newsletter form { display: flex; gap: 10px; }
.newsletter input {
  flex: 1; min-width: 0; font-family: var(--font-body); font-size: 14.5px;
  padding: 14px 18px; border-radius: 999px; border: 2px solid var(--brown);
  background: var(--cream); color: var(--ink);
}
.newsletter input:focus { outline: 3px solid rgba(70, 37, 26, 0.25); }

/* ---------- Test capilar (quiz) ---------- */
.quiz-wrap { max-width: 720px; margin: 0 auto; }
.quiz-progress {
  height: 8px; border-radius: 999px; background: var(--pink-soft);
  overflow: hidden; margin-bottom: 30px;
}
.quiz-progress .bar {
  height: 100%; width: 0; background: var(--pink-strong);
  border-radius: 999px; transition: width 0.4s ease;
}
.quiz-step { animation: fadeUp 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
.quiz-step .q-num {
  font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--pink-strong); font-weight: 600;
}
.quiz-step h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 8px 0 24px; }
.quiz-options { display: grid; gap: 12px; }
.quiz-option {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: var(--white); border: 2px solid var(--pink-soft); border-radius: 16px;
  padding: 16px 20px; cursor: pointer; font-family: var(--font-body);
  font-size: 15px; font-weight: 500; color: var(--ink); transition: 0.18s;
}
.quiz-option:hover { border-color: var(--pink-strong); transform: translateX(4px); }
.quiz-option .q-emoji {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
  background: var(--pink-soft); display: flex; align-items: center; justify-content: center;
}
.quiz-option .q-emoji svg { width: 22px; height: 22px; }
.quiz-option small { display: block; font-weight: 400; color: var(--brown-soft); font-size: 13px; }
.quiz-back {
  background: none; border: none; color: var(--brown-soft); font-family: var(--font-body);
  font-size: 13.5px; cursor: pointer; margin-top: 22px; text-decoration: underline;
}
.quiz-result { animation: fadeUp 0.5s ease both; }
.quiz-result .qr-head { text-align: center; margin-bottom: 34px; }
.quiz-result .qr-head .qr-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brown); color: var(--pink); border-radius: 999px;
  padding: 8px 20px; font-weight: 600; font-size: 14px; margin-bottom: 16px;
}
.quiz-result .qr-head h2 { font-size: clamp(26px, 4vw, 38px); }
.quiz-result .qr-head p { color: var(--brown-soft); max-width: 560px; margin: 10px auto 0; }
.qr-total {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px 26px; margin-top: 26px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 16px;
}
.qr-total .qr-price { font-size: 24px; font-weight: 700; color: var(--brown); }
.qr-total .qr-price small { display: block; font-size: 12.5px; font-weight: 500; color: var(--brown-soft); }
.qr-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: 0.25s; border: 1px solid transparent;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--pink); }
.blog-card .blog-cover { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card .blog-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-cover img { transform: scale(1.05); }
.blog-card .blog-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.blog-card .blog-tag { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--pink-strong); font-weight: 600; }
.blog-card h3 { font-size: 18px; line-height: 1.35; }
.blog-card h3 a:hover { color: var(--pink-strong); }
.blog-card p { font-size: 13.5px; color: var(--brown-soft); }
.blog-card .blog-more { margin-top: auto; color: var(--pink-strong); font-weight: 600; font-size: 13.5px; }

.article { max-width: 760px; margin: 0 auto; padding: 40px 0 72px; }
.article h1 { font-size: clamp(28px, 4.5vw, 42px); margin: 14px 0 18px; }
.article .art-meta { font-size: 13.5px; color: var(--brown-soft); margin-bottom: 26px; }
.article .art-cover { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 32px; }
.article h2 { font-size: 24px; margin: 34px 0 12px; }
.article h3 { font-size: 19px; margin: 26px 0 10px; }
.article p { margin-bottom: 16px; color: var(--ink); }
.article ul, .article ol { margin: 0 0 16px 22px; color: var(--ink); }
.article li { margin-bottom: 8px; }
.article a { color: var(--pink-strong); font-weight: 600; }
.article .art-cta {
  background: var(--pink-soft); border-radius: 16px; padding: 22px 26px;
  margin: 30px 0; font-weight: 500;
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); transition: 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 96px; transform: translateX(-50%) translateY(20px);
  background: var(--brown); color: var(--pink-soft); padding: 13px 24px;
  border-radius: 999px; font-size: 14px; font-weight: 600; z-index: 90;
  opacity: 0; pointer-events: none; transition: 0.3s; box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Pantalla de carga ---------- */
.splash {
  position: fixed; inset: 0; z-index: 200; background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.splash.done { opacity: 0; visibility: hidden; }
.splash.skip { display: none; }
.splash-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.splash-logo {
  width: min(230px, 58vw); height: auto; display: block;
  animation: splashBreath 1.6s ease-in-out infinite alternate;
}
.splash-spark {
  position: absolute; color: var(--pink); font-size: 20px;
  animation: splashTwinkle 1.9s ease-in-out infinite;
}
.splash-spark.sp1 { top: -32px; left: -4px; }
.splash-spark.sp2 { top: -10px; right: -28px; font-size: 14px; animation-delay: 0.6s; }
.splash-spark.sp3 { bottom: -22px; left: -28px; font-size: 16px; animation-delay: 1.2s; }
@keyframes splashBreath {
  from { transform: scale(0.97); }
  to { transform: scale(1.05); }
}
@keyframes splashTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(14deg); }
}
@media (prefers-reduced-motion: reduce) {
  .splash-logo, .splash-spark { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  /* Hero de video en tablet: más compacto */
  .hero-video .hero-inner {
    min-height: min(64vh, 540px); min-height: min(64svh, 540px);
    padding: 64px 0 72px;
  }
  /* Ritmo vertical del hero: título → texto → botón con aire proporcional */
  .hero p.lead { text-align: center; margin: 18px auto 28px; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; margin-top: 16px; }
  /* Tarjeta del logo en la sección "Sobre nosotras" */
  .hero-visual { max-width: 420px; margin: 18px auto 6px; width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid, .prod-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .texture-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .test-banner { grid-template-columns: 1fr; padding: 32px 28px; }
  .test-banner .tb-actions { justify-content: flex-start; }
  .newsletter { grid-template-columns: 1fr; padding: 34px 28px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .detail { grid-template-columns: 1fr; }
  .detail-art { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .menu-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--brown-deep); flex-direction: column; gap: 0;
    padding: 10px 0; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 24px; width: 100%; border-bottom: none; }
}

@media (max-width: 560px) {
  .brand-logo { width: 128px; height: 56px; }
  .section { padding: 44px 0; }
  .container { width: 94%; }

  /* Barra superior compacta */
  .topbar { font-size: 12px; padding: 6px 10px; gap: 2px 14px; }

  /* Hero centrado y compacto */
  .hero h1 { font-size: 37px; line-height: 1.12; }
  .hero p.lead { font-size: 15px; margin: 16px auto 26px; }
  .hero-badges { gap: 8px; }
  .hero-badges span { padding: 6px 12px; font-size: 12px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .btn-cta { padding: 15px 28px; font-size: 15.5px; }
  /* Hero minimalista en celular: titular, texto corto y un solo botón.
     Las insignias y el WhatsApp ya viven en la cinta de confianza y la
     burbuja flotante — repetirlos aquí saturaba la primera pantalla. */
  /* En celular el video llena la pantalla al abrir: 100svh menos la altura
     real de topbar+header (la mide app.js y la deja en --hero-offset;
     150px es el respaldo si el JS aún no corre). svh descuenta las barras
     del navegador tanto en Chrome como en Safari. */
  .hero-video .hero-inner {
    min-height: calc(100vh - var(--hero-offset, 150px));
    min-height: calc(100svh - var(--hero-offset, 150px));
    padding: 52px 0 40px;
  }
  .hero-video .hero-badges { display: none; }
  .hero-video .hero-actions .btn-outline { display: none; }
  .hero-video .hero-actions { width: 100%; }
  .hero-video .hero-actions .btn { flex: 1 1 auto; max-width: 340px; }
  .hero-video p.lead { max-width: 340px; }
  .hero-video .scroll-cue { display: none; }
  .marquee-track span { font-size: 17px; }

  /* Cinta de confianza en 2 columnas */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-item { font-size: 12px; gap: 9px; align-items: flex-start; }
  .trust-item .ico { width: 36px; height: 36px; }
  .trust-item .ico .icon { width: 17px; height: 17px; }
  .trust-item strong { font-size: 12.5px; }

  /* Tarjetas en filas de 2 */
  .cat-grid, .prod-grid, .steps { grid-template-columns: repeat(2, 1fr); gap: 13px; }

  .cat-card { padding: 18px 12px; }
  .cat-card .cat-ico { width: 54px; height: 54px; margin-bottom: 10px; }
  .cat-card .cat-ico svg { width: 30px; }
  .cat-card h3 { font-size: 15.5px; }
  .cat-card p { font-size: 11.5px; }

  .prod-art { padding: 14px; }
  .prod-body { padding: 12px 12px 14px; gap: 5px; }
  .prod-cat { font-size: 10px; letter-spacing: 1.2px; }
  .prod-name { font-size: 13.5px; }
  .prod-rating { font-size: 11px; }
  .prod-price .now { font-size: 15.5px; }
  .prod-price .before { font-size: 12px; }
  .prod-badge { font-size: 10px; padding: 4px 9px; top: 10px; left: 10px; }
  .prod-actions { flex-direction: column; gap: 7px; margin-top: 9px; }
  .prod-actions .btn-outline { display: none; } /* la tarjeta ya enlaza al detalle */
  .prod-actions .btn { padding: 9px 12px; font-size: 12.5px; }

  .step { padding: 18px 14px; }
  .step::before { font-size: 28px; margin-bottom: 4px; }
  .step h3 { font-size: 15px; }
  .step p { font-size: 12.5px; }

  .texture-card { padding: 26px 18px 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }

  .footer-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 72px 1fr; }

  /* Tienda en celular: controles compactos que no roban pantalla */
  .shop-controls { position: static; padding: 0; margin-bottom: 16px; }
  .shop-controls .chip-row {
    flex-wrap: nowrap; overflow-x: auto; gap: 7px;
    padding-bottom: 6px; margin-bottom: 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .shop-controls .chip-row::-webkit-scrollbar { display: none; }
  .shop-controls .chip { white-space: nowrap; flex: 0 0 auto; padding: 6px 13px; font-size: 12.5px; }
  .chip .chip-count { font-size: 10px; padding: 1px 6px; }
  .shop-controls .filters { padding: 10px 12px; gap: 8px; }
  .search-box { flex: 1 1 100%; min-width: 0; }
  .search-box input { padding: 9px 12px 9px 36px; font-size: 13.5px; }
  .shop-controls .filters select {
    flex: 1 1 calc(50% - 4px); min-width: 0;
    padding: 8px 8px; font-size: 12.5px;
  }
  .shop-controls .filters .spacer { display: none; }
  .shop-controls .filters .result-count {
    flex: 1 1 100%; text-align: center; font-size: 12px; margin-top: 2px;
  }
  .chip-clear { flex: 0 0 auto; font-size: 12px; }
  .newsletter form { flex-direction: column; }
  .qr-total { flex-direction: column; align-items: stretch; text-align: center; }
  .qr-actions { justify-content: center; }
  .cart-item .line-right { grid-column: 1 / -1; justify-items: start; grid-auto-flow: column; justify-content: space-between; width: 100%; }
  .checkout-form .grid-2 { grid-template-columns: 1fr; }
  .brand .brand-ondea { font-size: 25px; }
}
