/* ── Age Compliance UI ───────────────────────────────────────────────── */

/* DOB picker in modals */
.age-dob-picker { margin: 16px 0 8px; }
.age-dob-input {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.age-dob-error {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 6px;
  text-align: center;
}

.age-dob-form { margin-top: 12px; }

/* Hard gate (phase 3) -- full-screen blocker */
.age-hard-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.age-hard-gate-panel {
  max-width: 420px;
  width: 90%;
  padding: 40px 32px;
  text-align: center;
}

.age-hard-gate-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--rose-bg);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-hard-gate-icon svg { width: 28px; height: 28px; }

.age-hard-gate-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin: 0 0 12px;
}

.age-hard-gate-body {
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 24px;
}

.age-hard-gate-btn {
  width: 100%;
  max-width: 260px;
  margin-top: 16px;
}

/* Block screen (terminal) */
.age-block-screen {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.age-block-panel {
  max-width: 400px;
  width: 90%;
  padding: 48px 32px;
  text-align: center;
}

.age-block-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-block-icon svg { width: 32px; height: 32px; }

.age-block-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin: 0 0 16px;
}

.age-block-body {
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Payment age banner */
.age-payment-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--yellow-bg);
  border: 1px solid var(--yellow-border);
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.age-payment-banner svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Disabled state for age-gated elements */
.age-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.age-disabled-card {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(0.4);
}

/* Field note (warning / locked) */
.age-field-note {
  font-size: 0.78rem;
  margin-top: 6px;
  line-height: 1.4;
}

.age-field-note--warning {
  color: var(--yellow);
}

.age-field-note--locked {
  color: var(--dim);
  font-style: italic;
}
