:root {
  --fucsia: #e73683;
  --fucsia-intenso: #d91f73;
  --rosa-claro: #f7d5d0;
  --rosa-muy-claro: #fff3f7;
  --nude-institucional: #f2d8d2; /* aproximación Pantone P 57-9 U */
  --nude-institucional-borde: #e7bcb6;
  --violeta: #a21b8f;
  --gris-texto: #484848;
  --gris-suave: #f7f7f7;
  --blanco: #ffffff;
  --sombra-rosa: 0 18px 45px rgba(231, 54, 131, 0.20);
  --sombra-suave: 0 10px 28px rgba(35, 31, 32, 0.10);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--gris-texto);
  background: var(--blanco);
}

a { color: inherit; }

.bm-header {
  width: 100%;
  min-height: 82px;
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9%;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.bm-logo img {
  height: 52px;
  display: block;
}

.bm-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.bm-nav a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  font-weight: 700;
}

.bm-nav a.active,
.bm-nav a:hover { color: var(--fucsia); }

.catalogo-hero {
  min-height: 360px;
  background-image:
    linear-gradient(90deg, rgba(231, 54, 131, 0.92), rgba(231, 54, 131, 0.52)),
    url("img/header-catalogo.jpg");
  background-size: cover;
  background-position: center right;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 9%;
  overflow: hidden;
}

.catalogo-hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 38px solid rgba(255,255,255,.18);
  right: 38%;
  top: -80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: var(--blanco);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .95;
  font-weight: 800;
}

.subtitulo {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.5;
  margin: 22px 0 0;
}

.acciones-superiores {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn,
.nav-btn {
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn {
  min-height: 48px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
}

.btn-fucsia {
  background: var(--blanco);
  color: var(--fucsia-intenso);
}

.btn-fucsia:hover,
.btn-whatsapp:hover,
.btn-borde:hover {
  transform: translateY(-2px);
}

.btn-borde {
  color: var(--blanco);
  border: 2px solid var(--blanco);
  background: transparent;
}

.btn-borde:hover {
  background: var(--blanco);
  color: var(--fucsia-intenso);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--blanco);
}

.catalogo-section {
  background:
    radial-gradient(circle at top left, rgba(231,54,131,.12), transparent 34%),
    linear-gradient(180deg, var(--blanco), var(--rosa-muy-claro));
  padding: 32px 16px 40px;
}

.catalogo-toolbar {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 12px;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(231,54,131,.14);
  padding: 8px 10px;
  display: flex;
  align-items: center;
}

.page-counter {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--rosa-muy-claro);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--fucsia-intenso);
  white-space: nowrap;
}

.page-counter span:last-child { color: #777; font-weight: 700; }

#inputPagina {
  width: 48px;
  padding: 3px 6px;
  border: 1.5px solid var(--rosa-claro);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--fucsia-intenso);
  text-align: center;
  background: white;
  outline: none;
  -moz-appearance: textfield;
}
#inputPagina::-webkit-outer-spin-button,
#inputPagina::-webkit-inner-spin-button { -webkit-appearance: none; }
#inputPagina:focus { border-color: var(--fucsia); }

.catalogo-nav-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn { margin: 0; }

.nav-arrow {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  max-width: 46px;
  max-height: 46px;
  padding: 0;
  border-radius: 50%;
  background: var(--fucsia);
  color: var(--blanco);
  box-shadow: 0 10px 22px rgba(231,54,131,.22);
  font-size: 0;
}

#prevPage::before,
#nextPage::before {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

#prevPage::before { content: "‹"; }
#nextPage::before { content: "›"; }

.zoom-btn {
  height: 46px;
  min-width: 0;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--nude-institucional);
  color: var(--fucsia-intenso);
  border: 1px solid rgba(231,188,182,.55);
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 4px 12px rgba(231,188,182,.28);
  white-space: nowrap;
  flex-shrink: 0;
}

.zoom-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.zoom-btn strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.catalogo-contenedor {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 12px 0 18px;
}

.catalogo-libro {
  --alto: min(750px, calc(100vh - 590px));
  width: calc(var(--alto) * 1.417);
  height: var(--alto);
}

.page {
  background: var(--blanco);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--sombra-rosa);
}

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

.page-error {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: var(--rosa-muy-claro);
  color: var(--fucsia-intenso);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.swipe-hint {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, #fff7fa, #fff0f5);
  border: 1px solid rgba(231,188,182,.45);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(231,54,131,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  transition: opacity .3s ease, transform .3s ease;
}

.swipe-hint.oculto {
  display: none;
}

.swipe-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--fucsia);
  min-width: 64px;
}

.swipe-arrows {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.swipe-hand {
  font-size: 34px;
  line-height: 1;
  margin-top: -2px;
}

.swipe-textos {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.swipe-textos strong {
  color: var(--fucsia-intenso);
  font-size: 18px;
  line-height: 1.1;
}

.swipe-textos span {
  color: #7d6f75;
  font-size: 14px;
  line-height: 1.35;
}

.catalogo-footer-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.catalogo-footer-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.catalogo-footer-actions .btn-fucsia {
  background: var(--fucsia);
  color: var(--blanco);
}

.catalogo-footer-actions .btn-borde {
  border: 2px solid var(--fucsia);
  color: var(--fucsia);
  background: var(--blanco);
}

.catalogo-footer-actions .btn-borde:hover {
  background: var(--fucsia);
  color: var(--blanco);
}

.catalogo-footer-actions .btn-whatsapp {
  background: #25D366;
  color: var(--blanco);
}

.zoom-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--rosa-muy-claro);
  overflow: hidden;
}

.zoom-modal.activo { display: block; }

.zoom-controles {
  position: fixed;
  top: 10px;
  right: 10px;
  left: 10px;
  z-index: 10000;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.zoom-controles button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: var(--fucsia);
  color: var(--blanco);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(231,54,131,.28);
}

#cerrarZoom {
  background: var(--nude-institucional-borde);
  color: var(--fucsia-intenso);
}

.zoom-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 64px 12px 28px;
  -webkit-overflow-scrolling: touch;
  text-align: center;
}

.zoom-scroll img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 auto;
  transform-origin: top center;
}

/* ==================== ESTILOS PARA HOTSPOTS Y VIDEO ==================== */

.hotspot-area {
  transition: background-color 0.2s ease;
}

.hotspot-area:hover {
  background-color: rgba(231, 54, 131, 0.15) !important;
  border-radius: 4px;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.video-modal.activo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: var(--blanco);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: max-width .15s ease, aspect-ratio .15s ease;
}

.video-modal-content.vertical {
  width: auto;
  height: 90vh;
  max-width: 420px;
  aspect-ratio: 9 / 16;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10001;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--fucsia);
  color: var(--blanco);
  font-size: 28px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(231, 54, 131, 0.3);
  transition: 0.2s ease;
}

.video-modal-close:hover {
  background: var(--fucsia-intenso);
  transform: scale(1.1);
}

#videoDirecto { object-fit: contain; background: #000; }

/* ===== POPUP CARRITO ===== */
.carrito-toast {
  position: fixed; bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(30,30,30,.92); color: white;
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 700; font-family: "Montserrat", Arial, sans-serif;
  opacity: 0; transition: opacity .3s, transform .3s;
  z-index: 10100; white-space: nowrap; pointer-events: none;
}
.carrito-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

.popup-producto {
  display: none; position: fixed; inset: 0;
  z-index: 10003; background: rgba(0,0,0,.5);
  align-items: center; justify-content: center;
}
.popup-producto.activo { display: flex; }

.popup-inner {
  background: var(--blanco); border-radius: 20px;
  padding: 24px 20px 20px; width: min(420px, 94vw);
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.25);
  font-family: "Montserrat", Arial, sans-serif; max-height: 85vh; overflow-y: auto;
}
.popup-cerrar {
  position: absolute; top: 12px; right: 14px;
  background: var(--nude-institucional-borde); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 20px; font-weight: 800;
  color: var(--fucsia-intenso); cursor: pointer; line-height: 1;
}
.popup-titulo { font-size: 15px; font-weight: 800; color: var(--fucsia-intenso); margin-bottom: 16px; padding-right: 28px; line-height: 1.3; }
.popup-grupo-lista { display: flex; flex-direction: column; gap: 12px; }
.popup-grupo-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; background: var(--rosa-muy-claro); border-radius: 14px; border: 1px solid var(--rosa-claro); }
.popup-grupo-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.popup-codigo { font-size: 10px; font-weight: 700; color: #aaa; letter-spacing: 1px; }
.popup-nombre { font-size: 13px; font-weight: 800; color: var(--gris-texto); line-height: 1.2; }
.popup-precio { font-size: 14px; font-weight: 800; color: var(--fucsia); }
.popup-grupo-acciones { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.popup-cant-btn { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--fucsia); background: var(--blanco); color: var(--fucsia); font-size: 18px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.popup-grupo-acciones span { font-size: 15px; font-weight: 800; color: var(--gris-texto); min-width: 20px; text-align: center; }
.popup-agregar-mini { padding: 7px 12px; background: var(--fucsia); color: var(--blanco); border: none; border-radius: 999px; font-size: 12px; font-weight: 800; cursor: pointer; font-family: "Montserrat", Arial, sans-serif; white-space: nowrap; }
.popup-agregar-mini:hover { background: var(--fucsia-intenso); }

.carrito-modal { display: none; position: fixed; inset: 0; z-index: 10003; background: rgba(0,0,0,.5); align-items: flex-end; justify-content: center; }
.carrito-modal.activo { display: flex; }
.carrito-inner { background: var(--blanco); border-radius: 24px 24px 0 0; padding: 24px 20px calc(20px + env(safe-area-inset-bottom)); width: min(520px, 100vw); max-height: 85vh; overflow-y: auto; position: relative; font-family: "Montserrat", Arial, sans-serif; box-shadow: 0 -10px 40px rgba(0,0,0,.2); }
.carrito-cerrar { position: absolute; top: 14px; right: 16px; background: var(--nude-institucional-borde); border: none; border-radius: 50%; width: 32px; height: 32px; font-size: 20px; font-weight: 800; color: var(--fucsia-intenso); cursor: pointer; }
.carrito-inner h2 { font-size: 18px; font-weight: 800; color: var(--gris-texto); margin: 0 0 16px; }
.carrito-vacio { text-align: center; color: #aaa; font-size: 14px; line-height: 1.6; padding: 20px 0; }
.carrito-items { margin-bottom: 16px; }
.carrito-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--rosa-claro); }
.carrito-item-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.carrito-item-cod { font-size: 10px; font-weight: 700; color: #aaa; letter-spacing: 1px; }
.carrito-item-nom { font-size: 13px; font-weight: 700; color: var(--gris-texto); }
.carrito-item-precio { font-size: 12px; color: var(--fucsia); font-weight: 800; }
.carrito-item-acciones { display: flex; align-items: center; gap: 6px; }
.carrito-item-acciones button { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--fucsia); background: var(--blanco); color: var(--fucsia); font-size: 16px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.carrito-item-acciones span { font-size: 14px; font-weight: 800; min-width: 20px; text-align: center; }
.eliminar-item { background: none !important; border: none !important; font-size: 16px !important; cursor: pointer; color: #ccc !important; }
.carrito-totales { background: var(--rosa-muy-claro); border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; }
.carrito-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--gris-texto); margin-bottom: 6px; }
.carrito-total-row:last-child { margin-bottom: 0; }
.carrito-total-row strong { font-size: 15px; font-weight: 800; }
.carrito-total-row.destacado { color: var(--fucsia-intenso); font-weight: 800; font-size: 15px; padding-top: 8px; border-top: 1px solid var(--rosa-claro); margin-top: 6px; }
.carrito-total-row.destacado strong { font-size: 18px; }
.carrito-wsp-btn { width: 100%; padding: 15px; background: #25D366; color: var(--blanco); border: none; border-radius: 999px; font-size: 15px; font-weight: 800; cursor: pointer; font-family: "Montserrat", Arial, sans-serif; margin-bottom: 10px; }
.carrito-vaciar { width: 100%; padding: 10px; background: none; color: #aaa; border: none; font-size: 13px; font-weight: 700; cursor: pointer; font-family: "Montserrat", Arial, sans-serif; }

/* ===== OVERLAY HOTSPOT ===== */
.hs-overlay { pointer-events: none; }
.hs-pulse-ring { position: absolute; inset: 0; border-radius: 50%; background: rgba(231,54,131,.25); animation: hsDestello 2.4s ease-in-out infinite; }
@keyframes hsDestello { 0%, 100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.5); opacity: 0; } }

@media (max-width: 768px) {
  html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--rosa-muy-claro);
    touch-action: pan-y pinch-zoom;
  }

  .bm-header,
  .catalogo-hero {
    display: none;
  }

  .catalogo-section {
    height: 100svh;
    padding: 10px 0 0;
    background:
      radial-gradient(circle at top, rgba(231,54,131,.13), transparent 34%),
      linear-gradient(180deg, var(--rosa-muy-claro), var(--blanco));
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .catalogo-toolbar {
    width: calc(100% - 16px);
    max-width: none;
    margin: 0 auto 8px;
    padding: 6px 8px;
    border-radius: 999px;
    flex-shrink: 0;
  }

  .catalogo-nav-row { gap: 6px; }

  .page-counter {
    padding: 6px 8px;
    font-size: 12px;
    gap: 4px;
  }

  #inputPagina {
    width: 34px;
    font-size: 12px;
    padding: 2px 4px;
  }

  .nav-arrow,
  #prevPage::before,
  #nextPage::before {
    width: 38px; height: 38px;
    min-width: 38px; min-height: 38px;
    max-width: 38px; max-height: 38px;
  }

  #prevPage::before,
  #nextPage::before { font-size: 32px; }

  .zoom-btn {
    height: 38px;
    padding: 0 10px;
    gap: 4px;
    font-size: 11px;
  }

  .zoom-btn span { font-size: 13px; }
  .zoom-btn strong { font-size: 11px; }

  .swipe-hint { display: none; }

  .catalogo-contenedor {
    flex: 1;
    width: 100%;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
  }

  .catalogo-libro {
    aspect-ratio: 1004 / 1417; /* misma proporción que las imágenes de página */
    width: auto;
    height: 100%;
    max-width: 92vw;
    margin: 0 auto;
    touch-action: pan-y;
  }

  .page {
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(231,54,131,.22);
    background: var(--blanco);
  }

  .page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--blanco);
    display: block;
    cursor: zoom-in;
  }

  .catalogo-footer-actions {
    flex-shrink: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(10px);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 26px rgba(0,0,0,.12);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    align-items: center;
  }

  .catalogo-footer-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    height: 48px;
    padding: 0 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.12;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .video-modal-content {
    width: 95%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .video-modal-content.vertical {
    width: auto;
    height: 85vh;
    max-width: 92%;
    aspect-ratio: 9 / 16;
  }
}

@media (max-width: 390px) {
  .catalogo-nav-row {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 7px;
  }

  .nav-arrow,
  #prevPage::before,
  #nextPage::before {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
  }

  #prevPage::before,
  #nextPage::before { font-size: 38px; }

  .zoom-btn {
    height: 48px;
    padding: 0 10px;
  }

  .zoom-btn strong { font-size: 11px; }

  .swipe-textos strong { font-size: 15px; }
  .swipe-textos span { font-size: 12px; }

  .catalogo-footer-actions .btn {
    min-height: 50px;
    height: 50px;
    font-size: 11px;
  }
}

/* ==================== OVERLAY HOTSPOT ==================== */
.hs-overlay { pointer-events: none; }

.hs-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(231, 54, 131, 0.25);
  animation: hsDestello 2.4s ease-in-out infinite;
}

@keyframes hsDestello {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.5); opacity: 0; }
}

/* ==================== POPUP GRUPO ==================== */
.popup-titulo {
  font-size: 15px; font-weight: 800;
  color: var(--fucsia-intenso);
  margin-bottom: 16px;
  padding-right: 28px;
  line-height: 1.3;
}

/* ===== BADGE CONTADOR BOTÓN PEDIDO ===== */
#btnCarritoFooter { position: relative; overflow: visible; }

.carrito-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--blanco);
  color: var(--fucsia-intenso);
  border: 2px solid var(--fucsia-intenso);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(217, 31, 115, .35);
  font-family: "Montserrat", Arial, sans-serif;
}

.carrito-badge.visible { display: flex; }
