/* Página Principal*/
.btn-rosa-suave {
  background: linear-gradient(135deg, #F8C8DC 0%, #F0B6D5 100%) !important;
  color: #333 !important;
  border: none !important;
}

.btn-rosa-suave:hover {
  background: linear-gradient(135deg, #F0B6D5 0%, #E8A4C1 100%) !important;
  transform: translateY(-2px);
}

.btn-rosa-vibrante {
  background: #D63384 !important;
  color: white !important;
}

.btn-rosa-vibrante:hover {
  background: #BF2C70 !important;
  /* transform: translateY(-2px); */
}

.btn-ver-mas {
  background: linear-gradient(135deg, #F8C8DC 0%, #F0B6D5 50%, #E8A4C1 100%) !important;
  color: #5a1a3a !important;
  border-radius: 25px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px rgba(248, 200, 220, 0.4) !important;
  transition: all 0.3s ease !important;
  white-space: nowrap; /* Evita duplicados */
  min-height: 48px;
}

.btn-ver-mas:hover {
  background: linear-gradient(135deg, #F0B6D5 0%, #E8A4C1 50%, #D88FB8 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 32px rgba(248, 200, 220, 0.6) !important;
  color: #4a1532 !important;
}

/* Banner Cookies */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, #F8C8DC 0%, #F0B6D5 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  padding: 25px;
  z-index: 999999;
  margin: 0 auto;
  animation: slideUp 0.5s ease-out;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cookie-banner button {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex: 0 1 auto;
    margin-left: auto;
}

#accept-all-cookies {
  background: #D63384;
  color: white;
}

#accept-all-cookies:hover {
  background: #BF2C70;
  transform: translateY(-2px);
}

#more-info-cookies {
  background: #f8f9fa;
  color: #333;
}

#more-info-cookies:hover {
  background: #e9ecef;
}

/* Versión Móvil */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 20px;
    border-radius: 15px;
  }
  
  .cookie-banner button {
    min-width: auto;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
  
/* Animaciones */
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Ocultar banner cuando ya hay consentimiento */
.cookie-banner.hidden {
  display: none !important;
}

/* Formulario contacto */
.success-message {
  display: none;
  background: #E8F5E9;
  border: 1px solid var(--success);
  color: #2E7D32;
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  animation: slideIn 0.3s ease-out;
}

.error-message {
  display: none;
  background: #FFEBEE;
  border: 1px solid var(--error);
  color: #C62828;
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-section {
    padding: 3rem;
}

/* Form Fields */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--bs-gray-500);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bs-blue);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox/Radio Group */
.checkbox-option,
.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-option input[type="checkbox"],
.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-option label,
.radio-option label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 0.95rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: var(--bs-blue);
    padding: 1rem;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
}

.submit-btn:hover {
    background: var(--bs-indigo);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Tarjetas de producto */
.product-card {
    background-color: rgba(252, 216, 232, 0.5);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}
