/**
 * ============================================================
 * ESTILOS MODERNOS: Tarjetas de Productos - VERSIÓN 3
 * Diseño mejorado con colores CMYK y animaciones
 * ============================================================
 */

/* Variables de colores CMYK */
:root {
  --cyan: #00a7e1;
  --magenta: #d72a86;
  --yellow: #f8bd23;
  --black: #0f1723;
}

/* Grid mejorado */
.producto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
  padding: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Asegurar que grid oculto permanece oculto */
.producto-grid-ocultos {
  display: none !important;
}

.producto-grid-ocultos.visible {
  display: grid !important;
}

/* RESPONSIVE: Más productos en pantallas grandes */

/* Desktop grande: 6 productos por fila */
@media (min-width: 1600px) {
  .producto-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}

/* Desktop: 5 productos por fila */
@media (min-width: 1200px) and (max-width: 1599px) {
  .producto-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

/* Tablets grandes: 4 productos por fila */
@media (min-width: 992px) and (max-width: 1199px) {
  .producto-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

/* Tablets pequeñas: 3 productos por fila */
@media (min-width: 768px) and (max-width: 991px) {
  .producto-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Móviles: 2 productos por fila */
@media (max-width: 767px) {
  .producto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 16px;
  }
}

/* Móviles pequeños: 1 producto */
@media (max-width: 576px) {
  .producto-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
}

/* ============================================================
   TARJETA MODERNA: Diseño mejorado
   ============================================================ */

.producto-card {
  position: relative; /* Para que los badges funcionen */
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 167, 225, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
  position: relative;
  cursor: pointer;
}

.producto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  z-index: 10;
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 167, 225, 0.2);
  border-color: var(--magenta);
}

.producto-card:hover::before {
  height: 4px;
}

/* Imagen mejorada - MÁS GRANDE Y ATRACTIVA */
.producto-img {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 167, 225, 0.1);
}

.producto-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(215, 42, 134, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.producto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
  z-index: 1;
  filter: brightness(1.05) contrast(1.08) saturate(1.1);
}

.producto-card:hover .producto-img img {
  transform: scale(1.03);
  filter: brightness(1.12) contrast(1.15) saturate(1.15);
}

.producto-card:hover .producto-img::after {
  opacity: 1;
}

/* Contenedor de info mejorado */
.producto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  
  gap: 7px;
  min-height: 120px;
}

/* Título destacado */
.producto-titulo {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Precio con diseño mejorado - MÁS DESTACADO */
.producto-precio {
  background: transparent;
  color: #0284c7;
  font-weight: 800;
  font-size: 1.45rem;
  margin: 4px 0;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid rgba(2,132,199,0.25);
}



/* ============================================================
   BOTÓN PREMIUM - Diseño avanzado con efectos de partículas
   ============================================================ */

.button-premium {
  --h-button: 42px;          /* antes 48px */
  --round: 0.65rem;          /* menos volumen */
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(215, 42, 134, 0.95) 0%,
      rgba(215, 42, 134, 0.1) 100%
    ),
    linear-gradient(0deg, #d72a86, #c91f7e);
  border-radius: var(--round);
  border: 1px solid rgba(215, 42, 134, 0.5);
  outline: none;
  padding: 8px 12px;
  width: 100%;
  margin-top: 2px;
  box-shadow: 0 4px 15px rgba(215, 42, 134, 0.4);
}

.button-premium::before,
.button-premium::after {
  content: "";
  position: absolute;
  inset: var(--space);
  transition: all 0.5s ease-in-out;
  border-radius: calc(var(--round) - var(--space));
  z-index: 0;

}

.button-premium::before {
  --space: 1px;
  background: linear-gradient(
    177.95deg,
    rgba(255, 255, 255, 0.19) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.button-premium::after {
  --space: 2px;
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(215, 42, 134, 0.95) 0%,
      rgba(215, 42, 134, 0.1) 100%
    ),
    linear-gradient(0deg, #d72a86, #c91f7e);
}

.button-premium:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(215, 42, 134, 0.6);
}

/* Efecto de doblez en la esquina */
.fold {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 1rem;
  width: 1rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(
    100% 75% at 55%,
    rgba(215, 42, 134, 0.8) 0%,
    rgba(215, 42, 134, 0) 100%
  );
  box-shadow: 0 0 3px black;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: var(--round);
}

.fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 150%;
  transform: rotate(45deg) translateX(0%) translateY(-18px);
  background-color: #e8e8e8;
  pointer-events: none;
}

.button-premium:hover .fold {
  margin-top: -1rem;
  margin-right: -1rem;
}

/* Partículas flotantes */
.points_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.points_wrapper .point {
  bottom: -10px;
  position: absolute;
  animation: floating-points infinite ease-in-out;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background-color: #fff;
  border-radius: 9999px;
}

@keyframes floating-points {
  0% {
    transform: translateY(0);
  }
  85% {
    opacity: 0;
  }
  100% {
    transform: translateY(-55px);
    opacity: 0;
  }
}

.points_wrapper .point:nth-child(1) {
  left: 10%;
  opacity: 1;
  animation-duration: 2.35s;
  animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(2) {
  left: 30%;
  opacity: 0.7;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}

.points_wrapper .point:nth-child(3) {
  left: 25%;
  opacity: 0.8;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(4) {
  left: 44%;
  opacity: 0.6;
  animation-duration: 2.05s;
}

.points_wrapper .point:nth-child(5) {
  left: 50%;
  opacity: 1;
  animation-duration: 1.9s;
}

.points_wrapper .point:nth-child(6) {
  left: 75%;
  opacity: 0.5;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}

.points_wrapper .point:nth-child(7) {
  left: 88%;
  opacity: 0.9;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(8) {
  left: 58%;
  opacity: 0.8;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(9) {
  left: 98%;
  opacity: 0.6;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(10) {
  left: 65%;
  opacity: 1;
  animation-duration: 2.5s;
  animation-delay: 0.2s;
}

/* Contenido del botón */
.inner {
  z-index: 2;
  gap: 6px;
  position: relative;
  width: 100%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease-in-out;
}

.inner svg.icon {
  width: 18px;
  height: 18px;
  transition: fill 0.1s linear;
}

.button-premium:focus svg.icon {
  fill: white;
}

.button-premium:hover svg.icon {
  fill: transparent;
  animation:
    dasharray 1s linear forwards,
    filled 0.1s linear forwards 0.95s;
}

@keyframes dasharray {
  from {
    stroke-dasharray: 0 0 0 0;
  }
  to {
    stroke-dasharray: 68 68 0 0;
  }
}

@keyframes filled {
  to {
    fill: white;
  }
}

/* ============================================================
   CATEGORÍAS DE PRODUCTOS
   ============================================================ */

.producto-categoria {
  display: inline-block;
  background: rgba(0, 167, 225, 0.1);
  color: var(--cyan);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ============================================================
   PROMO CARDS - Mejoradas con colores
   ============================================================ */

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.promo-card-modern {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}

.promo-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, var(--magenta), var(--yellow));
  z-index: 10;
}

.promo-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(255, 107, 107, 0.25);
}

.promo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff6b6b, #ff9999);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 15;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.promo-image {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.promo-card-modern:hover .promo-image img {
  transform: scale(1.12);
}

.promo-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.promo-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.promo-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

.promo-price {
  color: green !important;
  font-weight: 1000;
  font-size: 2rem;
  margin: 0;
}

.promo-price-original {
  color: red;
  text-decoration: line-through;
}

.promo-buttons {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.promo-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.9rem;
}

.promo-btn.primary {
  background: linear-gradient(135deg, #ff6b6b, #ff9999);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

.promo-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #1fbb58);
  color: white;
  border-radius: 10px;
}

.promo-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ============================================================
   RESPONSIVE - Tablets y Móviles
   ============================================================ */

@media (max-width: 1200px) {
  .producto-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
  }

  .promo-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .producto-img {
    height: 270px;
  }

  .producto-titulo {
    font-size: 0.95rem;
    min-height: 28px;
  }

  .producto-info {
    min-height: 110px;
  }

  .btn-ver {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

/* Tablets pequeñas */
@media (max-width: 767px) {
  .producto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .promo-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 14px;
  }

  .producto-img {
    height: 245px;
  }

  .producto-info {
    padding: 9px;
    gap: 6px;
    min-height: 110px;
  }

  .producto-titulo {
    font-size: 0.85rem;
    min-height: 24px;
  }

  .producto-precio {
    font-size: 1.1rem;
  }

  .btn-ver {
    padding: 9px 12px;
    font-size: 0.85rem;
    gap: 4px;
  }

  .btn-ver i {
    font-size: 1rem;
  }

  .promo-badge {
    top: 8px;
    right: 8px;
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .promo-image {
    height: 300px;
  }

  .promo-price {
    font-size: 1.1rem;
  }

  .promo-btn {
    padding: 10px;
    font-size: 0.85rem;
  }
}

/* Móviles pequeños */
@media (max-width: 576px) {
  .producto-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }

  .producto-card {
    border-radius: 12px;
    min-height: 380px;
  }

  .producto-img {
    height: 220px;
  }

  .producto-info {
    padding: 8px;
    gap: 5px;
    min-height: 100px;
  }

  .producto-titulo {
    font-size: 0.8rem;
    min-height: 24px;
  }

  .producto-precio {
    font-size: 1rem;
  }

  .producto-titulo {
    font-size: 0.8rem;
    min-height: 24px;
    line-height: 1.2;
  }

  .producto-precio {
    font-size: 0.95rem;
  }

  .btn-ver {
    padding: 8px 10px;
    font-size: 0.8rem;
    gap: 3px;
  }

  .btn-ver i {
    font-size: 0.9rem;
  }

  .promo-content {
    padding: 12px;
    gap: 8px;
  }

  .promo-content h3 {
    font-size: 1rem;
  }

  .promo-desc {
    font-size: 0.85rem;
  }

  .promo-price {
    font-size: 1rem;
  }

  .promo-buttons {
    gap: 6px;
  }

  .promo-btn {
    padding: 8px;
    font-size: 0.75rem;
  }

  .promo-badge {
    top: 6px;
    right: 6px;
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .promo-image {
    height: 260px;
  }
}


/* ============================================================
   PROMO CARDS - Mejoradas
   ============================================================ */

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.promo-card {
  background: white !important;
  border: none !important;
  animation: floatingPromo 3s ease-in-out infinite;
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.12) !important;
  border-radius: 12px !important;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #ff9999);
  z-index: 10;
}

.promo-card::after {
  content: '🔥';
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.2rem;
  animation: fireFlash 1s ease-in-out infinite;
  z-index: 15;
}

.promo-card:hover {
  background: white !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 28px rgba(255, 107, 107, 0.2) !important;
}

@keyframes floatingPromo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes fireFlash {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.promo-grid .producto-titulo {
  color: #ff6b6b;
  font-weight: 700;
}

.promo-grid .producto-precio {
  color: #ff6b6b;
  text-decoration: line-through;
  opacity: 0.6;
}

.promo-card .btn-ver {
  background: linear-gradient(135deg, #ff6b6b, #ff9999) !important;
}

.btn-whatsapp-promo {
  background: linear-gradient(135deg, #25d366, #1fbb58) !important;
  color: white !important;
  border: none !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin: 8px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}

.btn-whatsapp-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  color: white;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .producto-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }

  .promo-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .producto-img {
    height: 290px;
  }

  .producto-titulo {
    font-size: 0.9rem;
    min-height: 26px;
  }

  .producto-info {
    min-height: 110px;
  }

  .btn-ver {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* MEDIA QUERY: Tablets y móviles medianos */
@media (max-width: 767px) {
  .producto-img {
    height: 260px;
  }

  .producto-info {
    padding: 9px;
    min-height: 110px;
  }

  .producto-titulo {
    font-size: 0.85rem;
    min-height: 28px;
    margin-bottom: 4px;
  }

  .producto-precio {
    font-size: 0.85rem;
    margin: 2px 0 4px 0;
  }

  .btn-ver {
    padding: 7px 10px;
    font-size: 0.8rem;
    gap: 4px;
  }

  .btn-ver i {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .button-premium {
    --h-button: 36px;
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 0.6rem;
  }
}


/* MEDIA QUERY: Móviles pequeños */
@media (max-width: 576px) {
  .producto-card {
    border-radius: 10px;
  }

  .producto-img {
    height: 220px;
  }

  .producto-info {
    padding: 8px;
    min-height: 100px;
  }

  .producto-titulo {
    font-size: 0.75rem;
    min-height: 20px;
  }

  .producto-precio {
    font-size: 0.75rem;
    margin: 2px 0 4px 0;
  }

  .btn-ver {
    padding: 6px 8px;
    font-size: 0.7rem;
  }

  .btn-ver i {
    font-size: 0.85rem;
  }

  .promo-card::after {
    top: 6px;
    right: 6px;
    font-size: 1rem;
  }

  .btn-whatsapp-promo {
    padding: 7px 10px;
    font-size: 0.8rem;
    margin: 6px 0 0 0;
  }
}

@media (max-width: 576px) {
  .producto-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }

  .promo-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .producto-img {
    height: 220px;
  }

  .producto-info {
    padding: 8px;
    min-height: 100px;
  }

  .producto-titulo {
    font-size: 0.8rem;
    min-height: 26px;
  }

  .producto-precio {
    font-size: 0.8rem;
  }

  .btn-ver {
    padding: 6px 8px;
    font-size: 0.75rem;
  }

  .btn-ver i {
    font-size: 0.9rem;
  }
}
/* ============================================================ */
/* BOTÓN "VER MÁS" / "VER MENOS" */
/* ============================================================ */

.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 20px rgba(0, 167, 225, 0.25), 0 6px 16px rgba(215, 42, 134, 0.2);
}

.btn-ver-mas:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.1);
  box-shadow: 0 14px 26px rgba(0, 167, 225, 0.35), 0 8px 22px rgba(215, 42, 134, 0.3);
}

.btn-ver-mas:active {
  transform: translateY(0) scale(0.98);
}

/* Grid para productos ocultos */
.producto-grid-ocultos {
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para las opciones de luz */
.btn-light-option {
  background-color: #f0f0f0;
  border: 2px solid #ddd;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.btn-light-option:hover {
  background-color: #e0e0e0;
  border-color: #999;
}

.btn-light-option.active {
  background: linear-gradient(135deg, var(--primary-color, #007bff) 0%, var(--secondary-color, #0056b3) 100%);
  color: white;
  border-color: var(--primary-color, #007bff);
}