/* Věková brána – overlay */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* Okno */
.age-gate-modal {
  background: #ffffff;
  max-width: 480px;
  width: 90%;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: inherit;
}

/* Logo / název */
.age-gate-logo {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Nadpis a text */
.age-gate-modal h2 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.age-gate-modal p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Tlačítka */
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .age-gate-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.age-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Použijeme vaši brand barvu, pokud je definovaná */
.age-btn-primary {
  background: var(--ms-t, #e74143);
  color: #ffffff;
}

.age-btn-primary:hover {
  opacity: 0.9;
}

.age-btn-secondary {
  background: #f3f3f3;
  color: #333333;
}

.age-btn-secondary:hover {
  background: #e5e5e5;
}

.age-gate-modal small {
  display: block;
  font-size: 0.8rem;
  color: #777777;
}
