/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 12 2026 | 06:32:56 */
/* === Estilos para Sabores Pizza (checkbox group) === */

/* === Subir label "Sabores (2)*" arriba del grid === */
td.label.leftside {
  display: block;
  margin-bottom: 10px;
}

/* Estilo del texto del label */
td.label.leftside label,
td.label.leftside {
  font-family: 'Bungee', cursive;
  color: #ffe100;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: left;
}

/* Contenedor del grupo */
td.value.leftside {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 10px;
}

/* Cada opción */
td.value.leftside label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 !important;
}

/* Hover */
td.value.leftside label:hover {
  background: rgba(255,255,255,0.12);
}

/* Checkbox */
td.value.leftside input[type="checkbox"] {
  transform: scale(1.1);
  cursor: pointer;
}


/* Alinear sabores con el título "Sabores" */
form.cart td.value.leftside {
    padding-left: 0 !important;
}


/* Móvil: una sola columna */
@media (max-width: 600px) {
  td.value.leftside {
    grid-template-columns: 1fr;
  }
}

/* === Móvil: mover "Sabores (2)" arriba === */
@media (max-width: 600px) {

  /* La fila completa */
  tr {
    display: flex;
    flex-direction: column;
  }

  /* Label arriba */
  td.label.leftside {
    width: 100%;
    margin-bottom: 8px;
    text-align: left;
  }

  /* Checkboxes abajo */
  td.value.leftside {
    width: 100%;
  }
}

/* Caja general de reglas */
.combinaciones-box {
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid #ffcc00;
  padding: 12px 14px;
  margin: 14px 0;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}

/* Primera línea (título) */
.combinaciones-box strong,
.combinaciones-box b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffcc00;
}

/* === Checkbox estilo premium === */
td.value.leftside input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ffcc00;
  border-radius: 4px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Check activo */
td.value.leftside input[type="checkbox"]:checked {
  background: #ffcc00;
  border-color: #ffeb3b;
  box-shadow: 0 0 8px rgba(255, 235, 59, 0.6);
}

/* Check icon */
td.value.leftside input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 13px;
  font-weight: 700;
  color: #000;
}

/* Hover */
td.value.leftside label:hover input[type="checkbox"] {
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.5);
}

/* Texto un poco más vivo */
td.value.leftside label {
  color: #fff;
}

td.value.leftside input[type="checkbox"]:checked + span,
td.value.leftside label:has(input[type="checkbox"]:checked) {
  color: #ffeb3b;
}

/* === Mejorar visibilidad del checkbox (sin cambiar comportamiento) === */
td.value.leftside input[type="checkbox"] {
  width: 20px;              /* un poco más grande */
  height: 20px;
  border-width: 2.5px;      /* borde más notorio */
  background: rgba(255, 204, 0, 0.08); /* leve fondo amarillo oscuro */
  box-shadow: 0 0 4px rgba(255, 204, 0, 0.35);
}
