/** Shopify CDN: Minification failed

Line 1276:0 Expected "}" to go with "{"

**/
/* ============================================
   PESTAÃƒâ€˜AS DE PRESENTACIÃƒâ€œN
   ============================================ */
.presentation-tabs {
  border: none;
  padding: 0;
  margin: 0;
}

.presentation-tabs__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem !important; /* mÃ¡s pegados los tipos de presentaciÃ³n */
  margin-bottom: -0.5rem !important; /* MÃ¡s pegado al grid de sabores */
}

.presentation-tab {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  background: transparent; /* SIN FONDO */
  border: 2px solid rgba(255, 255, 255, 0.2); /* BORDE BLANCO TRANSPARENTE igual que las cards */
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  will-change: border-color, background-color;
}

/* Hover cuando no estÃ¡ seleccionado: borde morado */
.presentation-tab:hover:not(.presentation-tab--selected) {
  border-color: #7c3aff;
  background: rgba(124, 58, 255, 0.05);
}

/* Hover cuando si estÃ¡ seleccionado: crecer sutilmente */
.presentation-tab--selected:hover {
  transform: scale(1.02);
}

.presentation-tab--selected {
  background: rgba(124, 58, 255, 0.20); /* â† AQUÃ: LÃ­nea ~36 */
  border-bottom: 8px solid #7c3aff; /* Solo borde inferior */
  padding: 1.1875rem 0.9375rem; /* Compensar borde mÃƒÆ’Ã‚Â¡s grueso (3px vs 2px) */
  box-shadow: 0 2px 8px rgba(124, 58, 255, 0.2);
  will-change: transform;
}

.presentation-tab--bundle {
  position: relative;
}

.presentation-tab__badge {
  position: absolute;
  top: -10px;
  left: 50%; /* Centrar horizontalmente */
  transform: translateX(-50%); /* Compensar el ancho del badge */
  padding: 0.25rem 0.65rem;
  background:rgb(255, 181, 77);
  color:rgb(255, 255, 255);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.presentation-tab__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.presentation-tab__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff; /* TEXTO BLANCO por defecto */
  line-height: 1.2;
}

.presentation-tab__title strong {
  display: block;
  font-size: 1.25rem;
  color: #ffffff; /* TEXTO BLANCO por defecto */
  font-weight: 700;
  margin-bottom: 0;
}

.presentation-tab__price {
  font-size: 0.8125rem;
  color: #ffffff; /* TEXTO BLANCO por defecto */
  margin-top: 0.125rem;
  font-weight: 400;
  line-height: 1.3;
}



/* ============================================
   GRID DE SABORES
   ============================================ */
.flavor-grid {
  border: none;
  padding: 0;
  margin: 0;
}

.flavor-grid__label {
  display: none; /* OCULTAR el label "Sabor:" */
}

.flavor-grid__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0; /* Sin espacio adicional arriba */
  max-width: 550px; /* Limitar ancho para mantener jerarquÃƒÆ’Ã‚Â­a */
}

.flavor-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.5rem; /* Padding reducido */
  background: transparent; /* FONDO TRANSPARENTE */
  border: 2px solid rgba(255, 255, 255, 0.2); /* BORDE BLANCO con 20% de opacidad */
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 110px; /* Altura mÃƒÆ’Ã‚Â­nima reducida */
  will-change: transform, border-color, box-shadow;
}

.flavor-option:hover:not(.flavor-option--disabled) {
  border-color: #7c3aff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 255, 0.15);
}

.flavor-option--selected {
  border-color: #7c3aff;
  border-width: 3px;
  background: rgba(124, 58, 255, 0.35); /* PÃƒÂºrpura con 15% opacidad */
  box-shadow: 0 2px 8px rgba(124, 58, 255, 0.2);
  will-change: transform;
  padding: 0.6875rem 0.4375rem; /* Compensar borde mÃƒÆ’Ã‚Â¡s grueso */
}

/* Checkmark animado CENTRADO - Optimizado con GPU */
.flavor-option--selected::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  background: #7c3aff;
  border-radius: 50%;
  animation: checkmarkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(124, 58, 255, 0.4);
  will-change: transform, opacity;
}

/* Checkmark real usando pseudo-elemento */
.flavor-option--selected::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.5rem;
  height: 1rem;
  border: solid white;
  border-width: 0 3px 3px 0;
  animation: checkmarkDraw 0.25s 0.1s ease-out forwards;
  opacity: 0;
  z-index: 11;
  will-change: transform, opacity;
}

@keyframes checkmarkPop {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes checkmarkDraw {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
}

.flavor-option--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.flavor-option__image {
  width: 100%;
  height: 100%;
  max-width: 70px; 
  max-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative; 
}

/* NO reducir opacidad de la imagen */
.flavor-option--selected .flavor-option__image {
  opacity: 1; /* Mantener imagen visible */
}

.flavor-option__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
  position: relative; /* Imagen encima del placeholder */
  z-index: 2;
}

.flavor-option:hover:not(.flavor-option--disabled) .flavor-option__image img {
  transform: scale(1.05);
}

.flavor-option__placeholder {
  width: 100%;
  height: 100%;
  display: none; /* OCULTO en desktop */
  background: #f0f0f0; /* Color por defecto */
  font-size: 0; /* Ocultar letra por defecto */
  position: absolute; /* detrÃ¡s de la imagen */
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 4px;
}

.flavor-option__name {
  font-size: 0.75rem; /* Texto mÃ¡s pequeÃ±o */
  font-weight: 500;
  text-align: center;
  color: #ffffff; /* TEXTO BLANCO */
  line-height: 1.25;
  width: 100%;
  padding: 0 0.25rem;
  margin-top: 0.375rem;
  transition: all 0.25s ease;
}

/* Texto NEGRO y mÃ¡s grueso cuando estaba seleccionado */
.flavor-option--selected .flavor-option__name {
  font-weight: 600; /* Peso 600 para diferenciarlo */
  opacity: 1;
}

.flavor-option__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #dc2626;
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: 0.02em;
  z-index: 5;
}

/* ============================================
   RESPONSIVE (ajustes exactos)
   ============================================ */
@media (max-width: 640px) {
  
  /* OPTIMIZACIONES DE PERFORMANCE MÃ“VIL */
  .presentation-tab,
  .flavor-option {
    transition: all 0.1s ease !important; /* Transiciones mÃ¡s rÃ¡pidas en mÃ³vil */
  }
  
  /* Desactivar will-change en mÃƒÂ³vil (reduce consumo GPU) */
  .presentation-tab,
  .flavor-option,
  .flavor-option--selected::after,
  .flavor-option--selected::before {
    will-change: auto !important;
  }
  .presentation-tabs__header {
    grid-template-columns: 1fr 1fr; /* MANTENER 2 COLUMNAS en MÃ“VIL */
    gap: -0.5rem;
  }
  
  /* Layout mÃ³vil: sabores izquierda + preview derecha */
  .flavor-grid__mobile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: start;
  }

  .flavor-grid__options {
    grid-template-columns: 1fr; /* 1 columna en mÃ³vil */
    gap: 0.4rem;
    display: grid;
  }

  /* Preview slot â€” solo visible en mÃ³vil */
  .flavor-grid__preview-slot {
    height: 2.5 rem;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
  }

  .flavor-grid__preview-slot-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
  }

  .flavor-grid__preview-slot-filled {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    gap: 0.25rem;
  }

  .flavor-grid__preview-slot-img {
    width: 80%;
    height: auto;
    object-fit: contain;
    flex: 1;
  }

  .flavor-grid__preview-slot-name {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  
  .presentation-tab {
    padding: 0.875rem 0.75rem;
  }
  
  .presentation-tab--selected {
  background: rgba(124, 58, 255, 0.15) !important; /* Fondo morado */
  border: 2px solid rgba(255, 255, 255, 0.2) !important; /* Borde normal arriba/lados */
  border-bottom: 10px solid #7c3aff !important; /* Solo borde inferior morado */
  padding: 0.875rem 0.75rem !important; /* Mismo padding que desktop */
  box-shadow: 0 2px 8px rgba(124, 58, 255, 0.2) !important;
}
  
  .presentation-tab__title,
  .presentation-tab__title strong {
    font-size: 1rem;
  }
  
  .presentation-tab__price {
    font-size: 0.875rem;
  }
  
  /* FLAVOR OPTIONS MÃ“VIL: Solo franja de color + texto */
    .flavor-option {
    min-height: 2.5rem;
    padding: 0.375rem 0.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
  }
  
  .flavor-option--selected {
    padding: 0.4375rem 0.4375rem; /* Compensar borde 3px */
  }
  
  /* Franja de color en lugar de imagen completa */
  .flavor-option__image {
    width: 1rem;
    min-width: 1rem;
    height: 100%;
    min-height: 2rem;
    max-width: 1rem;
    max-height: none;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
  }

  
  /* Ocultar imagen de producto, mostrar solo color de fondo */
  .flavor-option__image img {
    display: none; /* Ocultar imagen en mÃ³vil */
  }
  
  /* Mostrar placeholder como franja de color */
  .flavor-option__placeholder {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    font-size: 0; /* Ocultar letra */
  }
  
  .flavor-option__name {
    font-size: 0.75rem;
    text-align: left;
    margin-top: 0;
    flex: 1;
  }
  
  /* Mostrar placeholder como franja de color SOLO EN MÃ“VIL */
  .flavor-option__placeholder {
    display: block;
  width: 100%;
  height: 100%; /* Ya estÃ¡ bien */
  border-radius: 4px 0 0 4px; /* Solo redondear izquierda */
  font-size: 0;
  }
  
  /* OCULTAR checkmark en mÃ³vil */
  .flavor-option--selected::after {
    display: none;
  }
  
  .flavor-option--selected::before {
    display: none;
  }
  
  /* COLORES DE SABORES - Solo en mÃ³vol */
  .flavor-option[data-flavor*="Limonada"] .flavor-option__placeholder,
  .flavor-option[data-flavor*="limonada"] .flavor-option__placeholder {
    background: #c8d96f !important; /* Verde lima */
  }
  
  .flavor-option[data-flavor*="Cacao"] .flavor-option__placeholder,
  .flavor-option[data-flavor*="cacao"] .flavor-option__placeholder {
    background: #8b4513 !important; /* chocolate */
  }
  
  .flavor-option[data-flavor*="SandÃ­a"] .flavor-option__placeholder,
  .flavor-option[data-flavor*="SandÃ­a"] .flavor-option__placeholder,
  .flavor-option[data-flavor*="Sandía-Limón"] .flavor-option__placeholder {
    background: #ff6b6b !important; /* Rojo coral */
  }
  
  .flavor-option[data-flavor*="Variety"] .flavor-option__placeholder,
  .flavor-option[data-flavor*="variety"] .flavor-option__placeholder {
    background: linear-gradient(to bottom, #c8d96f 33%, #ff6b6b 33%, #ff6b6b 66%, #8b4513 66%) !important; /* Gradiente de los 3 colores */
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .flavor-grid__mobile-layout {
    display: block;
  }
  .flavor-grid__preview-slot {
    display: none !important;
  }
  .flavor-grid__options {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1025px) {
  .flavor-grid__mobile-layout {
    display: block;
  }
  .flavor-grid__preview-slot {
    display: none !important;
  }
  .flavor-grid__options {
    grid-template-columns: repeat(4, 1fr);
    max-width: 600px; /* Limitar ancho mÃ¡ximo */
  }
}

/* Ajustes para tema oscuro */
@media (prefers-color-scheme: dark) {
  .presentation-tab {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .presentation-tab--selected {
    background: rgba(124, 58, 255, 0.15);
    border: 3px solid #7c3aff;
  }
  
  .presentation-tab__title,
  .presentation-tab__title strong,
  .presentation-tab__price {
    color: #fff; /* Ya es blanco por defecto */
  }
  
  .presentation-tab--selected .presentation-tab__title,
  .presentation-tab--selected .presentation-tab__title strong,
  .presentation-tab--selected .presentation-tab__price {
    color: #fff; /* Blanco cuando estaba seleccionado en dark mode */
  }
  
  .flavor-option {
    background: transparent;
  }
  
  .flavor-option:hover:not(.flavor-option--disabled) {
    border-color: #7c3aff;
  }
  
  .flavor-option--selected {
    background: rgba(124, 58, 255, 0.15);
    border-color: #7c3aff;
  }
  
  .flavor-option__name {
    color: #fff;
  }
}

/* Anchor para restaurar scroll al cambiar de pack (URL hash #focus-variants) */
#focus-variants {
  scroll-margin-top: 5rem; /* Offset para el header fijo del tema */
}

/* ============================================
   TOGGLE DE PRESENTACIÃ“N
   Reemplaza las presentation-tabs con un toggle
   binario izquierda/derecha. Alineado a la izquierda.
   ============================================ */

/* ============================================
   TOGGLE DE PRESENTACIÃ“N â€” PILL BICOLOR
   ============================================ */

.presentation-toggle {
  border: none;
  padding: 0;
  margin: 0;
}

/* Pill contenedor */
.presentation-toggle__pill {
  display: inline-flex;
  align-items: stretch;
  background: #1a1a1a;
  border-radius: 999px;
  padding: 3px;
  gap: 0;
}

/* Cada opciÃ³n dentro del pill */
.presentation-toggle__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* OpciÃ³n activa: fondo morado */
.presentation-toggle__option--active {
  background: #7c3aff;
  color: #ffffff;
  font-weight: 700;
  cursor: default;
}

/* Hover en opciÃ³n inactiva */
.presentation-toggle__option:not(.presentation-toggle__option--active):hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile */
@media (max-width: 640px) {
  .presentation-toggle__option {
    font-size: 0.875rem;
    padding: 0.4rem 1rem;
  }
}

/* ============================================
   PACK SWITCHER
   Paso 1: elegir entre 30 dÃ­as y 90 dÃ­as.
   La tarjeta activa (producto actual) es un div; la otra es un <a>.
   Mismo lenguaje visual que las presentation-tabs.
   ============================================ */

.pack-switcher {
  margin-bottom: 0;
}

.pack-switcher__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.625rem 0;
}

.pack-switcher__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: -0.5rem !important;
}

/* Tarjeta base â€” compartida entre <a> y <div> */
.pack-card {
  position: relative;
  display: block;
  padding: 0.4rem 0.55rem !important;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* Hover solo en la tarjeta-link (no activa) */
.pack-card:hover:not(.pack-card--active):not(.pack-card--unavailable) {
  border-color: #7c3aff;
  background: rgba(124, 58, 255, 0.05);
}

/* Tarjeta del producto actual */
.pack-card--active {
  background: rgba(124, 58, 255, 0.20);
  border-bottom: 8px solid #7c3aff;
  padding-bottom: calc(0.65rem - 6px);
  box-shadow: 0 2px 8px rgba(124, 58, 255, 0.2);
  cursor: default;
}

.pack-card--unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Badge "Mejor valor" / "PrÃ³ximamente" */
.pack-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.65rem;
  background: #00bf63;
  color: white;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pack-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;;
  padding: 10px 12px !important;
}

.pack-card__days {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.pack-card__subtitle {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.pack-card__price {
  font-size: 0.75rem;
  color: #ffffff;
  margin-top: 0.125rem;
  font-weight: 400;
}

/* ============================================
   FLAVOR OPTION â€” VARIEDAD / "ARMA TU PACK"
   La tarjeta de Variedad muestra un SVG de tres
   cÃ­rculos de colores en lugar de la imagen del producto.
   ============================================ */

.flavor-option--variedad .flavor-option__image {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flavor-option__mix-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.flavor-option__mix-icon svg {
  width: 100%;
  height: 100%;
}

/* En mÃ³vil: ocultar SVG y mostrar placeholder de colores (ya existe en el CSS) */
@media (max-width: 640px) {
  .flavor-option--variedad .flavor-option__mix-icon {
    display: none;
  }
  .flavor-option[data-flavor*="Variedad"] .flavor-option__placeholder,
  .flavor-option[data-flavor*="variedad"] .flavor-option__placeholder {
    background: linear-gradient(to bottom, #c8d96f 33%, #ff6b6b 33%, #ff6b6b 66%, #8b7355 66%) !important;
  }
}


/* ============================================
   TOGGLE DE PRESENTACIÃ“N â€” MODO NAVEGACIÃ“N
   En los productos 90 dÃ­as nuevos el toggle
   usa <a> y <span> en lugar de radios.
   Los estilos base ya aplican (mismo CSS).
   Solo se necesita que los <a> no tengan
   subrayado y que el cursor sea pointer.
   ============================================ */

.presentation-toggle--nav .presentation-toggle__label {
  text-decoration: none;
  cursor: default;
}

.presentation-toggle--nav .presentation-toggle__label[href] {
  cursor: pointer;
}

/* El switch del toggle de nav es un <a> navegable â€” cursor pointer heredado */

/* ============================================
   SLOT PICKER â€” LABEL DE SECCIÃ“N
   TÃ­tulo descriptivo antes de las cajas
   (solo en productos 90 dÃ­as nuevos).
   ============================================ */

.slot-picker__section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.01em;
}

/* ============================================
   SLOT PICKER â€” ESTADO HIDDEN (legacy)
   Reemplaza el style="display:none" inline
   para poder animarlo con CSS.
   ============================================ */

.slot-picker--hidden {
  display: none;
}

/* ============================================
   SLOT PICKER â€” MENSAJES DE ERROR/AGOTADO
   ============================================ */

.slot-picker__combo-error,
.slot-picker__combo-unavailable {
  font-size: 0.8125rem;
  text-align: center;
  margin: 0.5rem 0 0;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

.slot-picker__combo-error {
  display: none;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.12);
}

.slot-picker__combo-unavailable {
  display: none;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   SLOT PICKER
   Reemplaza el mix-builder. Aparece debajo del
   flavor-grid cuando se elige "ArmÃ¡ tu pack"
   en el producto de 90 dÃ­as.
   ============================================ */

@keyframes slotPickerFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slot-picker {
  animation: slotPickerFadeIn 0.2s ease;
}

/* â”€â”€ 3 cajas del pack â”€â”€ */
.slot-picker__slots {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  justify-content: start;
}

.slot-picker__slot {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 120px;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: default;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estado vacÃ­o */
.slot-picker__slot-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  pointer-events: none;
}

.slot-picker__slot-plus {
  font-size: 1.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

.slot-picker__slot-month {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Estado lleno (controlado por clase JS) */
.slot-picker__slot-filled {
  display: none; /* oculto por defecto */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0.375rem;
  position: relative;
  pointer-events: none;
}

/* Cuando JS aÃ±ade --filled: mostrar estado lleno, ocultar vacÃ­o */
.slot-picker__slot--filled {
  border-style: solid;
  border-color: #7c3aff;
  background: rgba(124, 58, 255, 0.15);
  cursor: pointer;
}

.slot-picker__slot--filled .slot-picker__slot-empty {
  display: none;
}

.slot-picker__slot--filled .slot-picker__slot-filled {
  display: flex;
}

/* Overlay Ã— al hacer hover en caja llena */
.slot-picker__slot--filled::after {
  content: '\00D7';
  position: absolute;
  inset: 0;
  background: rgba(180, 20, 20, 0.82);
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: 8px;
  pointer-events: none;
}

.slot-picker__slot--filled:hover::after {
  opacity: 1;
}

/* Imagen dentro del slot */
.slot-picker__slot-img {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

/* Nombre del sabor dentro del slot */
.slot-picker__slot-flavor-name {
  font-size: 0.5625rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.25rem;
}

/* Ãcono Ã— siempre visible en la esquina (Ãºtil en mobile donde no hay hover) */
.slot-picker__remove-icon {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  pointer-events: none;
  display: none; /* oculto en desktop (lo cubre el ::after hover) */
}

/* â”€â”€ Hint â”€â”€ */
.slot-picker__hint {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  margin: 0 0 0.875rem 0;
}

.slot-picker__hint strong {
  color: rgba(255, 255, 255, 0.85);
}

/* â”€â”€ Grid de tiles de sabores â”€â”€ */
.slot-picker__tiles {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 0.5rem;
  justify-content: start;
}

/* Tile individual */
.slot-picker__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.375rem 0.5rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  aspect-ratio: 1 / 1;
}

.slot-picker__tile:hover:not(:disabled):not(.slot-picker__tile--locked) {
  border-color: #7c3aff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 255, 0.2);
}

/* Pack completo: tiles bloqueados */
.slot-picker__tile--locked,
.slot-picker__tile:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Agotado */
.slot-picker__tile--unavailable {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Imagen del tile */
.slot-picker__tile-img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

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

/* Nombre del tile */
.slot-picker__tile-name {
  font-size: 0.625rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  width: 100%;
}

/* Badge "Agotado" */
.slot-picker__tile-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  padding: 0.15rem 0.35rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}

/* â”€â”€ RESPONSIVE: PACK SWITCHER â”€â”€ */
@media (max-width: 640px) {
  .pack-card {
    padding: 0.5rem 0.5rem !important;
  }

  .pack-card--active {
    padding-bottom: calc(0.875rem - 6px);
  }

  .pack-card__days {
    font-size: 1rem;
  }

  .pack-card__subtitle {
    font-size: 0.6875rem;
  }

  .pack-card__price {
    font-size: 0.875rem;
  }
}

/* â”€â”€ RESPONSIVE: SLOT PICKER MOBILE â”€â”€ */
@media (max-width: 640px) {
  /* Tiles en 2 columnas */
  @media (max-width: 640px) {
  .slot-picker__tiles {
    grid-template-columns: 1fr 1fr;
  }

  .slot-picker__tile {
    aspect-ratio: unset;
    min-height: 2.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0.375rem 0.5rem;
    gap: 0.625rem;
  }

  .slot-picker__tile-img {
    width: 1rem;
    height: 100%;
    min-height: 2rem;
    max-width: 1rem;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
  }

  .slot-picker__tile-img img {
    display: none;
  }

  /* Franja de color por sabor */
  .slot-picker__tile[data-flavor*="Limonada de Coco"] .slot-picker__tile-img,
  .slot-picker__tile[data-flavor*="Limonada de Coco"] .slot-picker__tile-img {
    background: #c8d96f;
  }

  .slot-picker__tile[data-flavor*="Cacao"] .slot-picker__tile-img,
  .slot-picker__tile[data-flavor*="cacao"] .slot-picker__tile-img {
    background: #8b4513;
  }

  .slot-picker__tile[data-flavor*="SandÃ­a-LimÃ³n"] .slot-picker__tile-img,
  .slot-picker__tile[data-flavor*="SandÃ­a-LimÃ³n"] .slot-picker__tile-img {
    background: #ff6b6b;
  }

  .slot-picker__tile-name {
    font-size: 0.75rem;
    text-align: left;
    flex: 1;
  }

  /* Slots tambiÃ©n en 2 columnas y mÃ¡s compactos */
  .slot-picker__slots {
    grid-template-columns: repeat(3, 1fr);
    justify-content: unset;
  }

  .slot-picker__slot {
    max-width: unset;
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .slot-picker__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   BOOST DE PERFORMANCE MÃ“VIL
   Agregar DESPUÃ‰S del CSS principal
   ============================================ */

@media (max-width: 640px) {
  
  /* TRANSICIONES INSTANTANEAS EN MÃ“VIL */
  .presentation-tab,
  .flavor-option,
  .presentation-tab *,
  .flavor-option * {
    transition: none !important; /* Sin transiciones */
    animation: none !important; /* Sin animaciones */
  }
  
  /* BORDERS MÃS SIMPLES */
  .presentation-tab,
  .flavor-option {
    border-width: 2px !important;
  }
  
  .presentation-tab--selected,
  .flavor-option--selected {
    border-width: 2px !important; /* Sin cambio de grosor */
  }
  
  /* DESACTIVAR WILL-CHANGE */
  * {
    will-change: auto !important;
  }
  
  /* CHECKMARK SIN ANIMACIÃ“N */
  .flavor-option--selected::after,
  .flavor-option--selected::before {
    animation: none !important;
    transition: none !important;
  }
  
  /* IMÃGENES MÃS PEQUEÃ‘AS */
  .flavor-option__image {
    max-width: 60px !important;
    max-height: 60px !important;
  }
  
  .flavor-option__image img {
    transform: none !important; /* Sin hover scale */
  }
  
}

/* ============================================
   BORDES SIMPLIFICADOS PARA MÃ“VIL
   Elimina cambios de padding/grosor
   ============================================ */

@media (max-width: 640px) {
  
  /* MISMO PADDING SIEMPRE - Sin compensaciÃ³n */
  .presentation-tab {
    padding: 0.875rem 0.75rem !important;
  }
  
  .presentation-tab--selected {
    padding: 0.875rem 0.75rem !important; /* MISMO padding */
    border-width: 2px !important; /* MISMO grosor de borde */
  }
  
  .flavor-option {
    padding: 0.625rem 0.5rem !important;
  }
  
  .flavor-option--selected {
    padding: 0.625rem 0.5rem !important; /* MISMO padding */
    border-width: 2px !important; /* MISMO grosor de borde */
  }
  
}
