.age-gate-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-overlay);
  z-index: 9999;
}

.age-gate-modal {
  max-width: 480px;
  width: 100%;
  background: #F5EFE6;
  color: #1A1B1F;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.age-gate-heading {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
  color: #C1883E;
  margin-bottom: var(--space-3);
}

.age-gate-body {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
  color: #3C362E;
}

.age-gate-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-start;
}

.age-gate-btn {
  flex: 1;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.4rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.age-gate-btn--confirm {
  background-color: #B45E3C;
  color: #F5EFE6;
}

.age-gate-btn--confirm:hover,
.age-gate-btn--confirm:focus-visible {
  background-color: #7A3E2A;
}

.age-gate-btn--deny {
  background-color: transparent;
  border-color: rgba(26, 27, 31, 0.24);
  color: #3C362E;
}

.age-gate-btn--deny:hover,
.age-gate-btn--deny:focus-visible {
  background-color: rgba(26, 27, 31, 0.04);
}

.age-gate-note {
  margin-top: var(--space-3);
  font-size: var(--fs-xs);
  color: #6E6256;
}

@media (max-width: 480px) {
  .age-gate-modal {
    padding: var(--space-5);
  }

  .age-gate-actions {
    flex-direction: column;
  }
}
