/* Alba de azucar: la misma paleta del media kit (mk.laskachile.com) para que
   toda la presencia de Laska hable un solo idioma visual. */
@font-face{font-family:'Fraunces';font-style:normal;font-weight:300 700;font-display:swap;
  src:url('/fonts/fraunces.woff2') format('woff2')}
@font-face{font-family:'Fraunces';font-style:italic;font-weight:300 700;font-display:swap;
  src:url('/fonts/fraunces-italic.woff2') format('woff2')}
:root {
  --bg: #fdf4f8;
  --bg-2: #fdf6f9;
  --card: rgba(255, 255, 255, 0.72);
  --text: #431a3c;
  --soft: #8a5878;
  --muted: #a87e9a;
  --pink: #f0b6cd;
  --pink-2: #fbe4ee;
  --pink-dark: #c22660;
  --lav: #cdb4e2;
  --peach: #f8d8c4;
  --gold: #c08a2e;
  --display: 'Fraunces', Georgia, serif;
  --shadow: rgba(67, 26, 60, 0.10);
  --shadow-strong: rgba(67, 26, 60, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
}

/* SHARED BACKGROUND */

.home-body,
.faq-body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -5%, rgba(240, 182, 205, 0.55) 0, transparent 38%),
    radial-gradient(circle at 92% 8%, rgba(205, 180, 226, 0.5) 0, transparent 36%),
    radial-gradient(circle at 50% 105%, rgba(248, 216, 196, 0.5) 0, transparent 40%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  touch-action: manipulation;
}

/* HOME / BIO PAGE */

.home-body {
  padding: 18px 16px 24px;
}

.page {
  max-width: 460px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 6px 18px 16px;
}

/* HOME LOGO */

.logo-badge {
  width: clamp(230px, 45vw, 390px);
  height: clamp(82px, 13vw, 125px);
  max-width: 100%;
  margin: 0 auto 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

.logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* BRAND TEXT */

.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  /* 01-09: el peso se declara porque este elemento paso de <p> a <h1> -- la home
     no tenia NINGUN h1 y el logo es un <img>, asi que no habia senal de tema.
     Un h1 por defecto viene en 700; fijarlo en 400 deja el diseño idéntico. */
  font-weight: 400;
  margin: 0;
  color: var(--soft);
}

.description {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin: 16px 0 0;
  color: var(--soft);
}

.heart {
  color: var(--gold);
  margin: 12px 0;
  font-size: 16px;
}

/* HOME BANNER */

.banner {
  background: linear-gradient(135deg, var(--pink-2), #f3e6f5);
  border: 1px solid rgba(192, 138, 46, 0.22);
  border-radius: 22px;
  padding: 17px 18px;
  margin: 10px 0 18px;
  text-align: center;
  box-shadow: 0 8px 24px var(--shadow);
}

.banner-title {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}

.banner-text {
  font-size: 14px;
  color: var(--text);
}

/* PICKUP INFO */

#pickupInfo {
  margin: 12px 0 16px;
}

.pickup-card {
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 7px 22px var(--shadow);
  border: 1px solid rgba(192, 138, 46, 0.20);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pickup-card summary {
  cursor: pointer;
  list-style: none;
  min-height: 66px;
  padding: 14px 16px;

  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 14px;

  color: var(--text);
}

.pickup-card summary::-webkit-details-marker {
  display: none;
}

.pickup-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--pink-dark);
  font-size: 22px;
  flex-shrink: 0;
}

.pickup-title {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

.pickup-toggle {
  width: 31px;
  height: 31px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, var(--pink-2), #f3e6f5);
  color: var(--pink-dark);

  font-size: 22px;
  line-height: 1;
}

.pickup-toggle::before {
  content: "+";
  transform: translateY(-1px);
}

.pickup-card[open] .pickup-toggle::before {
  content: "−";
  transform: translateY(-2px);
}

.pickup-answer {
  padding: 0 16px 16px 72px;
  color: var(--soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.pickup-answer p {
  margin: 0 0 9px;
}

.pickup-answer p:last-child {
  margin-bottom: 0;
}

/* HOME BUTTONS */

.button {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  text-decoration: none;
  color: var(--text);
  padding: 16px;
  border-radius: 20px;
  margin: 12px 0;
  box-shadow: 0 7px 22px var(--shadow);
  border: 1px solid rgba(192, 138, 46, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
}

.button-text {
  flex: 1;
  text-align: left;
}

.button-title {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 3px;
}

.button-subtitle {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.3;
}

.arrow {
  font-size: 24px;
  color: var(--soft);
}

/* E-BOOK SECTION */

.ebook-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 104px;
  align-items: center;
  gap: 14px;
  background: var(--card);
  color: var(--text);
  padding: 16px;
  border-radius: 20px;
  margin: 12px 0;
  box-shadow: 0 7px 22px var(--shadow);
  border: 1px solid rgba(192, 138, 46, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ebook-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.ebook-content {
  text-align: left;
  min-width: 0;
}

.ebook-title {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.ebook-text {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.35;
}

.ebook-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  justify-content: center;
}

.ebook-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  min-height: 38px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(72, 42, 34, 0.10);
}

.ebook-choice:active {
  transform: scale(0.98);
}

/* SOCIAL */

.social-title {
  text-align: center;
  margin: 28px 0 12px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--soft);
  text-transform: uppercase;
}

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

.social {
  background: var(--card);
  border-radius: 18px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 7px 22px var(--shadow);
  border: 1px solid rgba(192, 138, 46, 0.20);
}

.footer {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--soft);
  line-height: 1.7;
}

/* 01-09: el enlace a /zefir/ que ahora lleva el pie de cada pagina. Hereda el
   color del pie para no gritar; el subrayado lo hace obviamente clicable. */
.footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer a:hover,
.footer a:focus-visible {
  color: var(--pink-dark);
  text-decoration-color: var(--pink-dark);
}

.error {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--soft);
  box-shadow: 0 7px 22px var(--shadow);
}

/* FAQ PAGE */

.faq-body {
  padding: 18px 16px 28px;
}

.faq-page {
  max-width: 520px;
  margin: 0 auto;
}

.faq-hero {
  position: relative;
  text-align: center;
  padding: 12px 18px 20px;
  margin-bottom: 6px;
}

.faq-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(76vw, 330px);
  height: 105px;
  margin: 0 auto 4px;
  text-decoration: none;
}

.faq-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 4px auto 12px;
  padding: 7px 13px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(192, 138, 46, 0.20);
  box-shadow: 0 7px 20px rgba(72, 42, 34, 0.08);

  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--soft);
}

.faq-hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(34px, 7vw, 48px);
  line-height: 1.03;
  font-weight: 400;
  color: var(--text);
}

.faq-hero p {
  max-width: 390px;
  margin: 13px auto 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--soft);
}

.faq-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);

  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 8px 24px rgba(72, 42, 34, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-section {
  display: grid;
  gap: 12px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  box-shadow: 0 9px 26px rgba(72, 42, 34, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.96);
  overflow: hidden;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  min-height: 66px;
  padding: 18px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  width: 31px;
  height: 31px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: linear-gradient(135deg, #ffd3db, #ffe7e5);
  color: var(--pink-dark);

  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--soft);
  font-size: 14.5px;
  line-height: 1.58;
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--text);
  font-weight: 700;
}

.faq-cta {
  margin: 18px 0 12px;
  padding: 22px 20px;
  border-radius: 26px;

  text-align: center;
  background: linear-gradient(135deg, #ffd3db, #ffe7e5);
  box-shadow: 0 10px 28px rgba(72, 42, 34, 0.13);
}

.faq-cta-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.72);
  color: var(--pink-dark);
  font-size: 20px;
}

.faq-cta h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
}

.faq-cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}

/* MENU PAGE */

.menu-body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fff8f5;
  font-family: Arial, sans-serif;
  padding: 0;
}

.menu-back-button {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.92);
  color: #2b1f1b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 8px 24px rgba(43, 31, 27, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-frame {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
}

/* MOBILE */

@media (max-width: 480px) {
  .home-body,
  .faq-body {
    padding-top: 14px;
  }

  .hero {
    padding-top: 4px;
    padding-bottom: 14px;
  }

  .logo-badge {
    width: min(82vw, 310px);
    height: 96px;
    margin-bottom: 6px;
  }

  .faq-page {
    max-width: 100%;
  }

  .faq-hero {
    padding-top: 6px;
  }

  .faq-logo-link {
    width: min(78vw, 300px);
    height: 92px;
  }

  .faq-hero h1 {
    font-size: 36px;
  }

  .faq-card summary {
    font-size: 15px;
    min-height: 62px;
    padding: 16px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }
}

@media (max-width: 360px) {
  .ebook-card {
    grid-template-columns: 36px minmax(0, 1fr) 92px;
    gap: 10px;
    padding: 14px;
  }

  .ebook-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .ebook-title {
    font-size: 15px;
  }

  .ebook-text {
    font-size: 12px;
  }

  .ebook-choice {
    width: 92px;
    min-height: 36px;
    font-size: 13px;
  }

  .faq-hero h1 {
    font-size: 32px;
  }
}


/* ---------- Alba: interaccion y jardin ---------- */
a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 2px solid var(--pink-dark);
  outline-offset: 3px;
}
.button, .social, .ebook-choice, .menu-back, .menu-order {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.button:hover, .ebook-choice:hover, .menu-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--shadow-strong);
}
@media (prefers-reduced-motion: reduce) {
  .button, .social, .ebook-choice, .menu-back, .menu-order { transition: none; }
  .button:hover, .ebook-choice:hover, .menu-order:hover { transform: none; }
}
.icon svg, .pickup-icon svg, .ebook-icon svg { color: var(--pink-dark); display: block; }

/* Petalos: jardin quieto como base (visible siempre), caida solo si el
   telefono permite movimiento. Mismo patron que el media kit. */
.petalfield { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.page { position: relative; z-index: 1; }
.petalfield i {
  position: absolute; width: 20px; height: 27px; opacity: 0.4;
  background: linear-gradient(150deg, #d9739f, var(--lav));
  border-radius: 62% 38% 58% 42% / 48% 60% 40% 52%;
  box-shadow: 0 2px 8px rgba(67, 26, 60, 0.12);
}
.petalfield i:nth-child(1) { left: 6%;  top: 16%; width: 15px; height: 20px; transform: rotate(24deg); }
.petalfield i:nth-child(2) { left: 88%; top: 30%; width: 22px; height: 30px; transform: rotate(-18deg); }
.petalfield i:nth-child(3) { left: 12%; top: 68%; transform: rotate(48deg); }
.petalfield i:nth-child(4) { left: 80%; top: 78%; width: 14px; height: 19px; transform: rotate(-40deg); }
.petalfield i:nth-child(5) { left: 48%; top: 8%;  width: 17px; height: 23px; transform: rotate(12deg); }
@keyframes petalo-bio {
  0%   { transform: translateY(-25vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.55; }
  82%  { opacity: 0.4; }
  100% { transform: translateY(85vh) rotate(200deg);  opacity: 0; }
}
@media (prefers-reduced-motion: no-preference) {
  .petalfield i { animation: petalo-bio 24s linear infinite; }
  .petalfield i:nth-child(2) { animation-duration: 29s; animation-delay: -11s; }
  .petalfield i:nth-child(3) { animation-duration: 21s; animation-delay: -5s; }
  .petalfield i:nth-child(4) { animation-duration: 31s; animation-delay: -17s; }
  .petalfield i:nth-child(5) { animation-duration: 26s; animation-delay: -8s; }
}

/* ---------- Menu nativo (fase 2) ---------- */
.menu-native-body .page { padding-top: 8px; }
.menu-back {
  display: inline-block; margin: 6px 0 14px; padding: 10px 18px;
  background: var(--card); border: 1px solid rgba(192, 138, 46, 0.2);
  border-radius: 999px; color: var(--text); text-decoration: none;
  font-weight: 600; font-size: 14px; box-shadow: 0 6px 18px var(--shadow);
}
.menu-head { text-align: center; margin-bottom: 18px; }
.menu-title {
  font-family: var(--display); font-weight: 450; font-size: 34px;
  margin: 0 0 6px; letter-spacing: -0.01em;
}
.menu-sub { margin: 0 auto; max-width: 42ch; color: var(--soft); font-size: 14.5px; line-height: 1.55; }
.menu-loading { text-align: center; color: var(--soft); padding: 26px 10px; line-height: 1.6; }
/* ── Menú a dos columnas (16-08) ───────────────────────────────────────────
   Decision de Martin. Dos criterios que se disenaron por separado y llegaron
   al mismo riesgo: a dos columnas la foto queda en ~172px de ancho. Por eso la
   foto es VERTICAL y a sangre: Ana fotografia en 9:16 porque esas mismas fotos
   van a historias, y el menu anterior las recortaba a 4:3 horizontal, o sea se
   comia la mayor parte de la imagen.
   4:5 en vez de 9:16 completo: con 9:16 la tarjeta pasa de 300px de alto y se
   pierde la gracia de las dos columnas. 4:5 recorta ~22% contra ~0%, y deja
   dos filas por pantalla. */
.productos{
  display:grid;
  /* minmax(0,1fr) o un nombre largo revienta la columna */
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  align-items:stretch;
}
.producto{
  display:flex; flex-direction:column;
  background: var(--card); border: 1px solid rgba(192, 138, 46, 0.2);
  border-radius: 18px; overflow: hidden; margin: 0;
  box-shadow: 0 6px 18px var(--shadow);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
/* ⚠️ La tarjeta huerfana. Con 3 productos el tercero quedaba solo y dejaba
   medio renglon vacio: se veia sin terminar. Se acuesta y ocupa el ancho.
   Se corrige sola cuando cambie el catalogo. */
.producto:last-child:nth-child(odd){ grid-column:1 / -1; flex-direction:row; }
.producto:last-child:nth-child(odd) .producto-media{ flex:0 0 40%; }
.producto:last-child:nth-child(odd) .producto-info{ flex:1 1 auto; }

.producto-media{ position:relative; }
.producto-foto{ width:100%; aspect-ratio: 4 / 5; object-fit: cover; display:block; }
/* El precio sobre la foto: gana la linea vertical que se pierde al angostar.
   El velo garantiza contraste con cualquier foto que suba Ana. */
.producto-precio{
  position:absolute; left:0; right:0; bottom:0; margin:0;
  padding:26px 11px 9px;
  background:linear-gradient(to top, rgba(40,16,34,.78), rgba(40,16,34,0));
  color:#fff; font-weight:700; font-size:16px;
  font-variant-numeric: tabular-nums; letter-spacing:-.01em;
}
/* Sin foto no es un hueco: es una portada. El Libro Digital no va a tener foto
   nunca, y las Boquillas tampoco. */
.producto-nofoto{
  aspect-ratio: 4 / 5; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(160deg, var(--pink-2), #f3e6f5 62%, rgba(205,180,226,.5));
  color: var(--gold); font-size:30px; line-height:1;
  box-shadow: inset 0 0 0 1px rgba(192,138,46,.22);
}
.producto-info{ padding:11px 12px 13px; display:flex; flex-direction:column; flex:1 1 auto; }
.producto-nombre{
  font-family: var(--display); font-weight: 500; font-size: 17px;
  margin: 0 0 4px; letter-spacing: -0.01em; line-height:1.2;
  overflow-wrap:anywhere;
}
.producto-desc{
  margin:0; color: var(--soft); font-size:13.5px; line-height:1.45;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
/* margin-top:auto: sin descripcion el boton igual queda abajo y la fila no cojea */
.producto-pedir{
  margin-top:auto; padding-top:10px;
  display:flex; align-items:center; justify-content:center; min-height:44px;
  font-weight:700; font-size:14px; color: var(--pink-dark); text-decoration:none;
  text-align:center;
}
.producto-pedir::after{ content:" →"; }
.producto-pedir:focus-visible{ outline:2px solid var(--pink-dark); outline-offset:2px; border-radius:10px; }

/* ── Listo para llevar: mas urgente por jerarquia, no por gritar ── */
#piezas-wrap{
  margin-top:30px; padding:18px 12px 20px; border-radius:24px;
  border:1px solid rgba(192,138,46,.42);
  background:linear-gradient(170deg, rgba(251,228,238,.92), rgba(205,180,226,.24));
  box-shadow:0 10px 28px var(--shadow);
}
#piezas-wrap .menu-head{ margin-bottom:14px; }
#piezas-wrap .menu-title{ font-size:24px; }
#piezas-wrap .producto{ position:relative; }
/* El unico boton solido de la pagina va aca: hay una sola de cada una. */
#piezas-wrap .producto-pedir{
  background: var(--pink-dark); color:#fff; border-radius:12px;
  margin:10px -2px 0; padding:0 10px;
}
#piezas-wrap .producto-pedir::after{ content:""; }
.sello-unica{
  position:absolute; top:8px; left:8px; z-index:2;
  background:rgba(255,255,255,.94); color: var(--pink-dark);
  font-size:11.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  padding:5px 9px; border-radius:999px; box-shadow:0 2px 8px var(--shadow);
}
@media (max-width:340px){
  .productos{ gap:9px; }
  .producto-nombre{ font-size:15.5px; }
  .producto-desc{ font-size:12.8px; }
}

/* Aviso de "te copiamos el mensaje". Vive abajo para no tapar la foto y se va
   solo; si el cliente no lo ve, no pierde nada: el texto igual esta copiado. */
/* ── Popup de idioma del e-book (menu) ── */
.ebook-dialog{
  border:0; border-radius:22px; padding:24px 22px 18px; max-width:min(92vw,22rem);
  background:var(--bg); color:var(--text); box-shadow:0 18px 48px var(--shadow-strong);
}
.ebook-dialog::backdrop{ background:rgba(67,26,60,.42); backdrop-filter:blur(3px); }
.ebook-dialog-titulo{
  font-family:var(--display); font-weight:500; font-size:22px; margin:0 0 6px;
  letter-spacing:-.01em; line-height:1.2; text-align:center;
}
.ebook-dialog-sub{ margin:0 0 16px; color:var(--soft); font-size:13.5px; text-align:center; line-height:1.45; }
.ebook-dialog-botones{ display:flex; flex-direction:column; gap:10px; }
.ebook-dialog-btn{
  display:flex; align-items:center; justify-content:center; min-height:46px;
  background:var(--pink-dark); color:#fff; border-radius:12px; text-decoration:none;
  font-weight:700; font-size:15px;
}
.ebook-dialog-btn:focus-visible, .ebook-dialog-cerrar:focus-visible{ outline:2px solid var(--pink-dark); outline-offset:2px; }
.ebook-dialog-cerrar{
  display:block; margin:12px auto 0; background:none; border:0; color:var(--muted);
  font:inherit; font-size:13.5px; padding:8px 12px; cursor:pointer; min-height:40px;
}
#aviso{
  position:fixed; left:50%; bottom:1.2rem; transform:translate(-50%,140%);
  max-width:min(92vw,26rem); background:#3b2a24; color:#fdf4f8;
  padding:.7rem 1.1rem; border-radius:999px; font-size:.92rem; line-height:1.35;
  text-align:center; box-shadow:0 6px 24px rgba(59,42,36,.28);
  opacity:0; pointer-events:none; transition:transform .28s ease,opacity .28s ease; z-index:50;
}
#aviso.visible{ transform:translate(-50%,0); opacity:1; }
@media (prefers-reduced-motion:reduce){ #aviso{ transition:none; } }
