
/* .variations select[name="attribute_pa_horario"] {
  display: none !important;
}
.variations .label {
  display: none !important;
}

.horario-selector-container {
  margin: 20px 0;
}

.btn-seleccionar-horario {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-seleccionar-horario:hover {
  border-color: #007cba;
  background: #fff;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-overlay.active {
  display: flex !important;
}

.popup-content {
  background: white;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popup-header {
  padding: 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.popup-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  color: #333;
}

.horarios-lista {
  padding: 20px 25px;
}

.horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.horario-item:hover {
  background: #f8f9fa;
}

.horario-item.agotado {
  opacity: 0.5;
  cursor: not-allowed;
}

.horario-info {
  display: flex;
  flex-direction: column;
}

.horario-tiempo {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.horario-stock {
  font-size: 14px;
  color: #666;
}

.btn-reservar {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-reservar:hover {
  background: #e55a2b;
}

.btn-reservar.disabled {
  background: #ccc;
  cursor: not-allowed;
}

.woocommerce-js div.product .related.products{
 display: none;
}

@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    margin: 20px;
  }

  .horario-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
} */
