@font-face {
  font-family: 'Kiwi';
  src: url('assets/fonts/Kiwi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Grape Soda';
  src: url('assets/fonts/GrapeSoda.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Dot Gothic';
  src: url('assets/fonts/DotGothic16Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.tienda-body {
  background-color: #efdade;
  background-image: url('assets/img/fondo-rosa.jpg');
  background-repeat: repeat;
  background-size: 460px auto;
  min-height: 100vh;
  font-size: 12px;
}

.producto-body,
.producto-body * {
  font-family: 'Kiwi', 'Cormorant Garamond', serif !important;
}

.producto-body .producto-descripcion {
  font-family: 'Dot Gothic', 'Cormorant Garamond', serif !important;
}

html {
  scroll-behavior: smooth;
}

/* ===== BANNER ===== */
.banner {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px double #1a1a1a;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.75) saturate(0.9);
}

.banner-overlay {
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  animation: flotar 3s ease-in-out infinite;
}

@keyframes flotar {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-3px); }
  100% { transform: translateX(-50%) translateY(0); }
}

.banner-social {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 9px;
  z-index: 2;
}

.banner-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Kiwi', cursive;
  font-size: 12px;
  color: #ffb3d1;
  background: #fff0f6;
  border: 2px solid #ffd6ea;
  border-radius: 20px;
  padding: 7px 14px;
  cursor: pointer;
  box-shadow: 0 3px 0 #ffd6ea;
  text-decoration: none;
  transition: all 0.2s ease;
}

.banner-social-link svg { flex-shrink: 0; width: 15px; height: 15px; }

.banner-social-link:hover {
  background: #ff8fc0;
  color: #fff;
  border-color: #ff8fc0;
  box-shadow: 0 3px 0 #ffb3d1;
}

.banner-svg {
  width: 740px;
  max-width: 94vw;
  height: auto;
  overflow: visible;
}

.banner-svg-texto {
  font-family: 'Angelic War', 'Cormorant Garamond', cursive;
  font-size: 120px;
}

.banner-svg-borde {
  font-family: 'Angelic War', 'Cormorant Garamond', cursive;
  font-size: 120px;
  stroke: #1a1a1a;
  stroke-width: 4px;
  stroke-linejoin: round;
}

/* ===== MARQUESINA ===== */
.marquee-wrapper {
  width: 100%;
  background: #6e6e6e;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.7);
  font-family: 'Dot Gothic', 'Cormorant Garamond', serif;
  letter-spacing: 1px;
  font-size: 0.85rem;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
}

.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* ===== MENU MOBILE ===== */
.menu-mobile-wrapper {
  display: none;
  flex-direction: column;
  background: #fff0f6;
  border-bottom: 2px solid #1a1a1a;
}

.menu-hamburguesa {
  font-family: 'Grape Soda', 'Cormorant Garamond', cursive;
  letter-spacing: 2px;
  font-size: 1.1rem;
  color: #1a1a1a;
  background: #ffd6ea;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  padding: 10px 16px;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.menu-mobile {
  display: none;
  flex-direction: column;
  padding: 8px;
  gap: 4px;
}

.menu-mobile.abierto { display: flex; }

.menu-mobile a {
  font-family: 'Grape Soda', 'Cormorant Garamond', cursive;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #1a1a1a;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #1a1a1a;
  background: #ffd6ea;
}

.menu-mobile a:hover { background: #d6197d; color: #f2ead9; }

/* ===== LAYOUT ===== */
.tienda-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: calc(100vh - 320px);
  align-items: start;
  gap: 8px;
  padding: 8px;
}

.sidebar {
  background: #fff0f6;
  border: 2px solid #1a1a1a;
  outline: 1px solid rgba(26,26,26,0.3);
  outline-offset: 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  box-shadow: 2px 0px 8px rgba(0,0,0,0.2);
}

.buscador-box {
  display: none;
}

.contador {
  display: none;
}

.sidebar-titulo {
  font-family: 'Grape Soda', 'Cormorant Garamond', cursive;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  text-align: center;
  border-bottom: 1px solid rgba(26,26,26,0.3);
  padding-bottom: 4px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-link {
  font-family: 'Grape Soda', 'Cormorant Garamond', cursive;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #1a1a1a;
  text-decoration: none;
  padding: 6px 8px;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  display: block;
}

.sidebar-link:hover {
  border-left: 3px solid #d6197d;
  background: #ffd6ea;
  color: #1a1a1a;
  padding-left: 12px;
}

.sidebar-info {
  background: #ffd6ea;
  border: 1px solid #1a1a1a;
  padding: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-anime {
  display: flex;
  justify-content: center;
}

.anime-placeholder {
  width: 130px;
  height: 160px;
  background: #ffd6ea;
  border: 2px dashed #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mascota-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.contador {
  background: #ffd6ea;
  border: 1px solid #1a1a1a;
  padding: 6px;
  text-align: center;
}

.contador-titulo {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: #d6197d;
  margin: 0;
}

.contador-numero {
  font-family: monospace;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 3px;
}

.sidebar-redes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.red-btn {
  display: block;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: #1a1a1a;
  background: #ffd6ea;
  border: 1px solid #1a1a1a;
  padding: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.red-btn:hover { background: #d6197d; color: #f2ead9; }

.contenido {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seccion {
  background: transparent;
  border: 2px solid #1a1a1a;
  outline: 1px solid rgba(26,26,26,0.3);
  outline-offset: 2px;
  padding: 12px;
}

.seccion-titulo {
  font-family: 'Grape Soda', 'Cormorant Garamond', cursive;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(26,26,26,0.3);
}

/* ===== DESTACADOS ===== */
.destacados-viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}

.destacados-track {
  display: flex;
  width: max-content;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.destacados-track.arrastrando {
  cursor: grabbing;
}

.destacado-card {
  width: 90px;
  flex-shrink: 0;
  margin: 0 8px;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-drag: none;
}

.destacado-card-img {
  width: 90px;
  height: 110px;
  border-radius: 4px;
  border: 1px solid #1a1a1a;
}

.destacado-card-nombre {
  font-family: 'Kiwi', cursive;
  font-size: 0.6rem;
  color: #1a1a1a;
  margin: 6px 0 0;
  line-height: 1.3;
}

.destacado-card-precio {
  font-family: 'Kiwi', cursive;
  font-size: 0.6rem;
  color: #d6197d;
  margin: 2px 0 0;
}

/* ===== BIENVENIDA ===== */
.inicio-seccion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inicio-frase {
  text-align: center;
}

.inicio-svg {
  width: 100%;
  height: auto;
}

.svg-frase {
  font-family: 'Grape Soda', 'Cormorant Garamond', cursive;
  font-size: 30px;
  fill: #1a1a1a;
}

.svg-estrella1 { font-size: 22px; fill: #ff8fc0; animation: flotar2 3s ease-in-out infinite; }
.svg-estrella2 { font-size: 18px; fill: #ffb3d1; animation: flotar2 4s ease-in-out infinite 0.5s; }
.svg-estrella3 { font-size: 18px; fill: #ffd6ea; animation: flotar2 3.5s ease-in-out infinite 1s; }
.svg-burbuja1 { animation: flotar2 3s ease-in-out infinite; }
.svg-burbuja2 { animation: flotar2 4s ease-in-out infinite 0.5s; }
.svg-burbuja3 { animation: flotar2 3.5s ease-in-out infinite 1s; }

@keyframes flotar2 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* ===== SUBCATEGORÍAS ===== */
.subcategorias {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.subcategoria-bloque {
  padding-top: 6px;
}

.subcategoria-titulo {
  font-family: 'Grape Soda', 'Cormorant Garamond', cursive;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #d6197d;
  margin: 0 0 8px 0;
  padding-bottom: 4px;
  border-bottom: 1px dotted rgba(26,26,26,0.4);
}

/* ===== GRILLA DE PRODUCTOS ===== */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.productos-empty {
  grid-column: 1 / -1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #1a1a1a;
  opacity: 0.7;
  text-align: center;
  padding: 10px 0;
}

.producto-card {
  background: rgba(110, 110, 110, 0.6);
  border: 1px solid #1a1a1a;
  padding: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.producto-card:hover { border-color: #d6197d; transform: translateY(-2px); }

.card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  width: 100%;
}

.card-imagen {
  width: 100%;
  height: 140px;
  background: #ffffff;
  border: 1px solid #1a1a1a;
}

.card-nombre {
  font-family: 'Kiwi', cursive;
  font-size: 0.85rem;
  color: #1a1a1a;
  margin: 0;
}

.card-precio {
  font-family: 'Kiwi', cursive;
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
}

.card-btn {
  font-family: 'Kiwi', cursive;
  font-size: 0.75rem;
  color: #1a1a1a;
  background: #fff0f6;
  border: 1px solid #1a1a1a;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.card-btn:hover { background: #d6197d; color: #f2ead9; }

.card-btn.agotado {
  background: #6e6e6e;
  color: #999;
  cursor: not-allowed;
}

.card-btn.agotado:hover {
  background: #6e6e6e;
  color: #999;
}

.card-stock {
  font-family: 'Kiwi', cursive;
  font-size: 0.75rem;
  color: #ff8fc0;
  margin: 2px 0 0 0;
}

.ver-mas-btn {
  display: block;
  margin: 12px auto 0;
  font-family: 'Kiwi', cursive;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #1a1a1a;
  background: #ffd6ea;
  border: 1px solid #1a1a1a;
  padding: 6px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ver-mas-btn:hover { background: #d6197d; color: #f2ead9; }

/* ===== CARRITO ===== */
.carrito-icono {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: transform 0.2s ease;
}

.carrito-icono:hover { transform: scale(1.08); }

.carrito-icono-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carrito-contador {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: #d6197d;
  color: #f2ead9;
  font-family: monospace;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1a1a1a;
}

.carrito-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 998;
}

.carrito-overlay.visible { display: block; }

.carrito-panel {
  position: fixed;
  top: 0;
  right: -220px;
  width: 200px;
  height: 100vh;
  height: 100dvh;
  background-color: #1a1a1a;
  background-image: url('assets/img/carrito-fondo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-left: 2px solid #1a1a1a;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.carrito-panel.abierto { right: 0; }

.carrito-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px dashed #fff0f6;
}

.carrito-titulo {
  font-family: 'Kiwi', cursive;
  font-size: 1.1rem;
  color: #fff0f6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  margin: 0;
}

.carrito-cerrar {
  background: rgba(0,0,0,0.35);
  border: 1px solid #fff0f6;
  color: #fff0f6;
  font-size: 0.9rem;
  padding: 4px 8px;
  cursor: pointer;
}

.carrito-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.carrito-vacio {
  text-align: center;
  color: #fff0f6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  margin-top: 40px;
}

.carrito-item {
  background: rgba(255, 214, 234, 0.75);
  border: 1px solid #1a1a1a;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.carrito-item-imagen {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  border: 1px solid #1a1a1a;
}

.carrito-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.carrito-item-nombre {
  font-family: 'Kiwi', cursive;
  font-size: 0.85rem;
  color: #1a1a1a;
  margin: 0;
}

.carrito-item-precio { font-family: 'Kiwi', cursive; font-size: 0.8rem; color: #d6197d; margin: 0; }
.carrito-item-controles { display: flex; align-items: center; gap: 8px; }

.carrito-item-btn {
  background: #fff0f6;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  width: 22px;
  height: 22px;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrito-item-btn:hover { background: #d6197d; color: #f2ead9; }
.carrito-item-cantidad { font-size: 0.85rem; color: #1a1a1a; min-width: 20px; text-align: center; }
.carrito-item-eliminar { margin-left: auto; background: none; border: none; color: #d6197d; font-size: 0.8rem; cursor: pointer; }
.carrito-item-eliminar:hover { color: #1a1a1a; }

.carrito-footer {
  padding: 16px;
  border-top: 1px dashed #fff0f6;
}

.carrito-total {
  font-family: 'Kiwi', cursive;
  font-size: 0.9rem;
  color: #fff0f6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  margin: 0 0 10px 0;
  text-align: right;
}

.carrito-comprar {
  font-family: 'Kiwi', cursive;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #1a1a1a;
  background: #ff8fc0;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 100%;
}

.carrito-comprar:hover { background: #ffb3d1; }

/* ===== PÁGINA DE PRODUCTO (producto.html) ===== */
.producto-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
}

.producto-back {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #d6197d;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.producto-back:hover { opacity: 1; }

.producto-page {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 8% 80px;
  text-align: center;
}

.producto-img {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  margin-bottom: 12px;
}

.producto-miniaturas {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.producto-miniatura {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.producto-miniatura:hover {
  border-color: #ffb3d1;
}

.producto-miniatura.activa {
  border-color: #ff8fc0;
}

.producto-nombre {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.producto-precio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #d6197d;
  margin-bottom: 18px;
}

.producto-stock {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: #ff8fc0;
  margin-bottom: 18px;
}

.producto-descripcion {
  font-family: 'Dot Gothic', 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.producto-talles {
  margin-bottom: 28px;
}

.producto-talles-label {
  font-family: 'Kiwi', cursive;
  font-size: 1rem;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  text-align: center;
}

.talles-grid {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.talle-btn {
  font-family: 'Kiwi', cursive;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #ffd6ea;
  border: 2px solid #1a1a1a;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 50px;
  text-align: center;
}

.talle-btn:hover {
  background: #ffb3d1;
  transform: translateY(-2px);
}

.talle-btn.activo {
  background: #ff8fc0;
  color: #fff;
  border-color: #ff8fc0;
}

.producto-agregar {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #ff8fc0;
  border: none;
  padding: 14px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, letter-spacing 0.25s ease;
}

.producto-agregar:hover {
  background: #ffb3d1;
  letter-spacing: 4px;
}

.producto-agregar.agotado {
  background: #6e6e6e;
  color: #999;
  cursor: not-allowed;
}

.producto-agregar.agotado:hover {
  background: #6e6e6e;
  color: #999;
  letter-spacing: 3px;
}

.producto-no-encontrado {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #1a1a1a;
  text-align: center;
  padding: 60px 8%;
}

.tienda-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 50px 8% 60px;
  margin-top: 30px;
  border-top: 1px dashed #1a1a1a;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #d6197d;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}

.footer-link:hover { color: #1a1a1a; transform: translateY(-2px); }

.footer-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #6a6a6a;
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .tienda-grid { grid-template-columns: minmax(0, 1fr); }
  .sidebar { display: none; }
  .banner { height: 220px; }
  .banner-overlay { top: 12px; }
  .banner-svg { width: 100%; }
  .banner-svg-texto, .banner-svg-borde { font-size: 200px; }
  .banner-social { left: 12px; gap: 6px; }
  .banner-social-link { padding: 5px 11px; font-size: 10px; gap: 4px; border-width: 1.5px; box-shadow: 0 2px 0 #ffd6ea; }
  .banner-social-link:hover { box-shadow: 0 2px 0 #ffb3d1; }
  .banner-social-link svg { width: 12px; height: 12px; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
  .carrito-panel { width: 100%; right: -100vw; }
  .menu-mobile-wrapper { display: flex; }
}
