/* ===== Age Gate Entre Copas y Vinos ===== */

#age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#age-gate-overlay.hidden {
  display: none;
}

.age-gate-modal {
  max-width: 460px;
  width: 100%;
  background: #111111;
  color: #f5f5f5;
  border-radius: 16px;
  padding: 2rem 2.2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.age-gate-logo {
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.age-gate-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.age-gate-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  opacity: 0.95;
}

.age-gate-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.age-gate-btn {
  flex: 1 1 140px;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.18s ease-in-out;
}

/* Colores ajustados a paleta vino */
.age-gate-btn--primary {
  background: #7a1b28;   /* vino tinto */
  color: #ffffff;
}

.age-gate-btn--primary:hover {
  background: #59131d;
}

.age-gate-btn--secondary {
  background: transparent;
  color: #f5f5f5;
  border-color: #f5f5f5;
}

.age-gate-btn--secondary:hover {
  background: #f5f5f5;
  color: #111111;
}

@media (max-width: 480px) {
  .age-gate-modal {
    padding: 1.5rem 1.4rem;
  }

  .age-gate-title {
    font-size: 1.4rem;
  }
}
