/* Age verification popup — added on top of the supplied design, using its
   existing colour/spacing/type tokens (see assets/css/style.css). */

html.has-age-gate,
html.has-age-gate body {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-2, 16px);
}

.age-gate__scrim {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 21, 0.92);
}

.age-gate__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--c-surface, #fff);
  border-radius: 4px;
  padding: var(--s-4, 32px) var(--s-3, 24px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.age-gate__logo {
  display: block;
  margin: 0 auto var(--s-3, 24px);
  height: 44px;
  width: auto;
}

.age-gate__title {
  font-size: var(--t-24, 24px);
  font-weight: 700;
  color: var(--c-ink, #111315);
  margin-bottom: var(--s-1, 8px);
}

.age-gate__text {
  font-size: var(--t-14, 14px);
  color: var(--c-ink-2, #5E6469);
  line-height: 1.5;
  margin-bottom: var(--s-3, 24px);
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-1, 8px);
}

.age-gate__actions .btn {
  width: 100%;
}

.age-gate__denied {
  font-size: var(--t-14, 14px);
  color: var(--c-accent, #C8102E);
  font-weight: 600;
}

@media (min-width: 480px) {
  .age-gate__panel {
    padding: var(--s-5, 40px);
  }
}
