/* ============================================================
   DONA BELLE — Lencería Premium
   styles.css
   Paleta: Negro-morado / Morado / Verde lima
   Tipografías: Catavalo (display) + Galano Grotesque (body)
   ============================================================ */

/* ---------- FUENTES LOCALES ---------- */
@font-face {
  font-family: "Catavalo";
  src: url("fonts/Catavalo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Catavalo";
  src: url("fonts/Catavalo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Catavalo";
  src: url("fonts/Catavalo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Catavalo";
  src: url("fonts/Catavalo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Galano";
  src: url("fonts/GalanoGrotesqueLight.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Galano";
  src: url("fonts/GalanoGrotesqueRegular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Galano";
  src: url("fonts/GalanoGrotesqueMedium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Galano";
  src: url("fonts/GalanoGrotesqueSemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Galano";
  src: url("fonts/GalanoGrotesqueBold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

/* ---------- TOKENS DE COLOR ---------- */
:root {
  --black: #100510;         /* negro-morado (fondo) */
  --dark: #1a0d1c;          /* superficie */
  --card: #22112450;        /* tarjetas translúcidas */
  --purple: #9b6cc0;        /* morado medio (marca) */
  --purple-deep: #6f3f96;   /* morado profundo */
  --purple-dark: #4a2568;   /* morado oscuro (degradado banner) */
  --purple-light: #c9a8e0;  /* morado claro */
  --lime: #c6f000;          /* verde lima (acento) */
  --lime-soft: #d6f75a;
  --white: #f6f0f7;
  --muted: #b9a7bf;         /* texto secundario */
  --line: rgba(201, 168, 224, 0.14);

  --font-display: "Catavalo", Georgia, serif;
  --font-body: "Galano", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --max: 1240px;
}

/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.font-display { font-family: var(--font-display); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--lime); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-lime { background: var(--lime); color: var(--black); }
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(198,240,0,.5); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-purple:hover { background: var(--purple-deep); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--line); color: var(--white); }
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }
.btn-block { width: 100%; }

/* ---------- BARRA ANUNCIOS ---------- */
.marquee {
  background: linear-gradient(90deg, var(--purple-deep), var(--purple));
  overflow: hidden; padding: 9px 0; position: relative; z-index: 60;
}
.marquee__track {
  display: inline-flex; white-space: nowrap; animation: marquee 26s linear infinite;
}
.marquee span {
  margin: 0 34px; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
}
.marquee .hl { color: var(--lime); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 55;
  background: rgba(16, 5, 16, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .4s ease, border-color .4s ease;
}
.header.scrolled { background: rgba(16, 5, 16, 0.95); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: transform .3s ease; }
.brand:hover img { transform: scale(1.05); }
.brand__name {
  font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: .08em;
  color: var(--white);
}
.brand__name b { color: var(--lime); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--muted); position: relative; padding: 4px 0;
  transition: color .25s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--lime); transition: width .3s ease;
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--muted); position: relative; transition: color .25s ease, background .25s ease;
}
.icon-btn:hover { color: var(--lime); background: rgba(155, 108, 192, .12); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--lime); color: var(--black); font-size: 10px; font-weight: 700; line-height: 18px;
  border-radius: 999px; text-align: center; transform: scale(0); transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cart-count.show { transform: scale(1); }
.menu-toggle { display: none; }

/* ---------- HERO (BANNER A TODO EL ANCHO) ---------- */
.hero {
  position: relative;
  width: 100%;
  line-height: 0;            /* elimina el espacio inferior del inline-img */
}
.hero__link { display: block; }
/* La imagen ocupa el 100% del ancho y se muestra COMPLETA (sin recortes ni degradados).
   La altura se ajusta sola al aspecto de tu pieza diseñada. */
.hero__full {
  display: block;
  width: 100%;
  height: auto;
}
/* Texto y CTAs superpuestos a la izquierda de la imagen */
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  pointer-events: none;                /* solo los enlaces reciben clic */
}
.hero__content {
  max-width: 520px; line-height: 1.5;
  pointer-events: auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--lime);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--lime); }
.hero h1 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.03;
  font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -0.01em; text-wrap: balance;
  color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--purple-light); }
.hero p {
  margin: 18px 0 28px; color: var(--muted);
  font-size: 16px; max-width: 420px; line-height: 1.65;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 720px) {
  /* En móvil la imagen se recorta para dar altura y espacio al texto */
  .hero { min-height: 460px; }
  .hero__full { height: 460px; object-fit: cover; object-position: 78% center; }
  .hero__overlay {
    background: linear-gradient(90deg, rgba(58,26,79,.9) 0%, rgba(58,26,79,.55) 50%, transparent 100%);
  }
  .hero__content { max-width: 100%; }
  .hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .hero p { font-size: 14px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
}

/* ---------- SECCIÓN GENÉRICA ---------- */
.section { padding: 96px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__head .eyebrow { justify-content: center; }
.section__head .eyebrow::before { display: none; }
.section__head h2 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1; letter-spacing: -0.01em; text-wrap: balance;
}
.section__head p { margin-top: 14px; color: var(--muted); }

/* ---------- BENEFICIOS ---------- */
.benefits { background: var(--dark); border-block: 1px solid var(--line); }
.benefits__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.benefit {
  display: flex; flex-direction: column; gap: 10px; padding: 8px 4px;
}
.benefit .ic {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
  background: rgba(155,108,192,.14); color: var(--lime);
}
.benefit .ic svg { width: 22px; height: 22px; }
.benefit h4 { font-size: 15px; font-weight: 600; color: var(--white); }
.benefit p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- CATEGORÍAS ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat {
  position: relative; height: 260px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); cursor: pointer;
}
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cat:hover img { transform: scale(1.08); }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(16,5,16,.9));
}
.cat__label {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
}
.cat__label h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.cat__label span { font-size: 12px; color: var(--lime); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- FILTROS ---------- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter {
  padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--muted); transition: all .25s ease;
}
.filter:hover { color: var(--white); border-color: var(--purple); }
.filter.active { background: var(--lime); color: var(--black); border-color: var(--lime); }

/* ---------- GRID PRODUCTOS ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.product:hover {
  transform: translateY(-6px); border-color: rgba(198,240,0,.4);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,.8);
}
.product__media { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--dark); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product:hover .product__media img { transform: scale(1.06); }
.product__badge {
  position: absolute; top: 12px; left: 12px; z-index: 3; padding: 5px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.badge-sale { background: var(--lime); color: var(--black); }
.badge-nuevo { background: var(--purple); color: var(--white); }
.badge-popular { background: var(--purple-light); color: var(--black); }
.product__fav {
  position: absolute; top: 10px; right: 10px; z-index: 3; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(16,5,16,.6); backdrop-filter: blur(6px); color: var(--white);
  display: grid; place-items: center; transition: all .25s ease;
}
.product__fav:hover { background: var(--lime); color: var(--black); }
.product__fav svg { width: 17px; height: 17px; }
.product__fav.active { color: var(--lime); }
.product__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  transform: translateY(120%); opacity: 0; transition: all .35s ease;
}
.product:hover .product__quick { transform: translateY(0); opacity: 1; }
.product__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product__cat { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-light); }
.product__name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); }
.product__colors { display: flex; gap: 6px; margin-top: 2px; }
.product__colors span { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); }
.product__price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 6px; }
.product__price .now { font-size: 18px; font-weight: 700; color: var(--lime); }
.product__price .old { font-size: 13px; color: var(--muted); text-decoration: line-through; }

/* ---------- BANNER PARALLAX (frase de marca) ---------- */
.parallax {
  position: relative; overflow: hidden;
  min-height: 460px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  border-block: 1px solid var(--line);
}
.parallax__bg {
  position: absolute; inset: -12% 0; z-index: 0; will-change: transform;
  background-image: url("images/experience.png");
  background-size: cover; background-position: center;
}
.parallax::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(16,5,16,.72), rgba(16,5,16,.78)),
    radial-gradient(700px 400px at 50% 40%, rgba(111,63,150,.5), transparent 70%);
}
.parallax__inner { position: relative; z-index: 2; max-width: 760px; padding: 40px 24px; }
.parallax .eyebrow { justify-content: center; }
.parallax .eyebrow::before { display: none; }
.parallax h2 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 5vw, 56px);
  line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance;
}
.parallax h2 em { font-style: italic; color: var(--purple-light); }
.parallax p { color: var(--muted); margin-top: 18px; font-size: 16px; }
.parallax .btn { margin-top: 30px; }

/* ---------- EXPERIENCIA (CAJA + TARJETA) ---------- */
.experience { background: var(--dark); border-block: 1px solid var(--line); overflow: hidden; }
.experience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.experience__media { position: relative; }
.experience__media img {
  width: 100%; height: 460px; object-fit: cover; border-radius: 20px; border: 1px solid var(--line);
  will-change: transform;
}
.experience h2 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12; margin-bottom: 18px; text-wrap: balance;
}
.experience p { color: var(--muted); margin-bottom: 28px; }
.experience__list { display: flex; flex-direction: column; gap: 18px; }
.experience__item { display: flex; gap: 14px; align-items: flex-start; }
.experience__item .ic {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(198,240,0,.12); color: var(--lime);
}
.experience__item .ic svg { width: 20px; height: 20px; }
.experience__item h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.experience__item p { font-size: 13px; margin: 0; line-height: 1.5; }

/* ---------- NOSOTRAS ---------- */
.about { text-align: center; }
.about__text { max-width: 720px; margin: 0 auto; }
.about__text p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.about__quote {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-style: italic;
  color: var(--purple-light); margin: 32px 0; line-height: 1.3; text-wrap: balance;
}

/* ---------- NEWSLETTER / CONTACTO ---------- */
.contact {
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(155,108,192,.2), transparent 60%),
    var(--dark);
  border-top: 1px solid var(--line);
}
.contact__box {
  max-width: 620px; margin: 0 auto; text-align: center;
}
.contact__box h2 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
}
.contact__box p { color: var(--muted); margin: 14px 0 30px; }
.newsletter { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter input {
  flex: 1; padding: 15px 18px; border-radius: 999px; background: var(--card);
  border: 1px solid var(--line); color: var(--white); font-family: inherit; font-size: 14px;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter input:focus { outline: none; border-color: var(--lime); }

/* ---------- FOOTER ---------- */
.footer { background: var(--black); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand__name { font-size: 24px; }
.footer__col p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 280px; }
.footer__col h5 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col ul a { color: var(--muted); font-size: 14px; transition: color .2s ease; }
.footer__col ul a:hover { color: var(--white); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); transition: all .25s ease;
}
.footer__social a:hover { border-color: var(--lime); color: var(--lime); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13px;
}

/* ---------- CARRITO (SIDEBAR) ---------- */
.overlay { position: fixed; inset: 0; z-index: 80; display: none; }
.overlay.open { display: block; }
.overlay__bg { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); }
.cart {
  position: absolute; right: 0; top: 0; height: 100%; width: 100%; max-width: 420px;
  background: var(--dark); border-left: 1px solid var(--line); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.overlay.open .cart { transform: translateX(0); }
.cart__head { padding: 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart__head h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.cart__items { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.cart__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--muted); gap: 12px; }
.cart__empty svg { width: 54px; height: 54px; color: var(--purple); opacity: .5; }
.cart-item { display: flex; gap: 12px; }
.cart-item img { width: 74px; height: 92px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.cart-item__info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item__name { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.cart-item__price { font-size: 14px; color: var(--lime); font-weight: 600; }
.cart-item__qty { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.cart-item__qty button {
  width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line); color: var(--white);
  display: grid; place-items: center; font-size: 15px; transition: all .2s ease;
}
.cart-item__qty button:hover { border-color: var(--lime); color: var(--lime); }
.cart-item__qty span { min-width: 22px; text-align: center; font-size: 14px; }
.cart-item__remove { color: var(--muted); font-size: 12px; align-self: flex-start; margin-top: 2px; transition: color .2s ease; }
.cart-item__remove:hover { color: var(--lime); }
.cart__foot { padding: 20px; border-top: 1px solid var(--line); }
.cart__row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; color: var(--muted); }
.cart__row.total { font-size: 18px; color: var(--white); font-weight: 600; margin: 14px 0 18px; }
.cart__row.total .val { color: var(--lime); font-family: var(--font-display); }

/* ---------- MODAL CHECKOUT ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal__bg { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(4px); }
.modal__box {
  position: relative; background: var(--dark); border: 1px solid var(--line); border-radius: 20px;
  width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; padding: 30px;
  animation: pop .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop { from { opacity: 0; transform: scale(.94) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal__close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; color: var(--muted); display: grid; place-items: center; transition: all .2s ease; }
.modal__close:hover { background: rgba(255,255,255,.08); color: var(--white); }
.modal__box h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin-bottom: 6px; }
.modal__box .sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--purple-light); margin-bottom: 7px; font-weight: 500; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px; background: var(--card);
  border: 1px solid var(--line); color: var(--white); font-family: inherit; font-size: 14px; transition: border-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .6; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lime); }
.field.error input, .field.error textarea { border-color: #ff6b8a; }
.field .err { display: none; color: #ff8fa3; font-size: 12px; margin-top: 6px; }
.field.error .err { display: block; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.summary { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin: 8px 0 22px; }
.summary__row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: var(--muted); }
.summary__row.total { color: var(--white); font-weight: 600; font-size: 17px; border-top: 1px solid var(--line); padding-top: 10px; margin-top: 4px; }
.summary__row.total .v { color: var(--lime); }

/* ---------- TOASTS ---------- */
.toasts { position: fixed; bottom: 24px; right: 24px; z-index: 120; display: flex; flex-direction: column; gap: 12px; }
.toast {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 12px;
  background: var(--dark); border: 1px solid var(--line); color: var(--white); font-size: 14px;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.7); min-width: 240px;
  animation: slideIn .35s cubic-bezier(.34,1.56,.64,1);
}
.toast.out { animation: slideOut .35s ease forwards; }
.toast .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(198,240,0,.14); color: var(--lime); flex-shrink: 0; }
.toast .ic svg { width: 18px; height: 18px; }
@keyframes slideIn { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideOut { to { opacity: 0; transform: translateX(60px); } }

/* ---------- WHATSAPP FLOTANTE ---------- */
.wa-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 110; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- MENÚ MÓVIL / BÚSQUEDA ---------- */
.drawer { position: fixed; inset: 0; z-index: 85; background: rgba(16,5,16,.98); backdrop-filter: blur(14px); display: none; }
.drawer.open { display: flex; }
.mobile-nav { flex-direction: column; align-items: center; justify-content: center; gap: 26px; height: 100%; width: 100%; }
.mobile-nav a { font-family: var(--font-display); font-size: 30px; color: var(--white); }
.mobile-nav a:hover { color: var(--lime); }
.drawer__close { position: absolute; top: 22px; right: 22px; color: var(--muted); }
.drawer__close svg { width: 30px; height: 30px; }

.search { position: fixed; inset: 0; z-index: 88; background: rgba(16,5,16,.97); backdrop-filter: blur(14px); display: none; align-items: center; justify-content: center; padding: 24px; }
.search.open { display: flex; }
.search__box { width: 100%; max-width: 620px; }
.search__field { display: flex; align-items: center; gap: 14px; border-bottom: 2px solid var(--purple); padding-bottom: 14px; }
.search__field svg { width: 24px; height: 24px; color: var(--purple-light); }
.search__field input { flex: 1; background: none; border: none; color: var(--white); font-family: var(--font-display); font-size: 26px; outline: none; }
.search__field input::placeholder { color: rgba(255,255,255,.3); }
.search__hint { color: var(--muted); font-size: 13px; margin-top: 14px; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Respeta reduce-motion: sin parallax ni animaciones agresivas */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__blob, .parallax__bg, .experience__media img { transform: none !important; }
  .marquee__track { animation: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .products, .cats { grid-template-columns: repeat(3, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .experience__grid { grid-template-columns: 1fr; gap: 32px; }
  .experience__media { order: -1; }
  .products, .cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .section { padding: 64px 0; }
  .hero__stats { gap: 24px; }
  .products { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; }
  .product__name { font-size: 15px; }
  .parallax { min-height: 380px; }
}
