.bbm-age-gate {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 999999;
}

.bbm-age-gate[hidden] {
  display: none;
}

.bbm-age-gate__overlay {
  background: rgba(13, 18, 12, 0.88);
  backdrop-filter: blur(8px);
  inset: 0;
  position: absolute;
}

.bbm-age-gate__dialog {
  background: #fff;
  border: 1px solid rgba(88, 126, 76, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  max-width: 520px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  text-align: center;
  width: min(100%, 520px);
}

.bbm-age-gate__eyebrow {
  color: #5f8e3e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.bbm-age-gate__title {
  color: #4f7b38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  margin: 0.65rem 0 0;
}

.bbm-age-gate__text {
  color: #4e5d49;
  font-size: 1rem;
  line-height: 1.65;
  margin: 1rem auto 0;
  max-width: 420px;
}

.bbm-age-gate__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.bbm-age-gate__button {
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.95rem 1.25rem;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.bbm-age-gate__button:hover,
.bbm-age-gate__button:focus-visible {
  transform: translateY(-1px);
}

.bbm-age-gate__button--primary {
  background: #5f8e3e;
  border: 1px solid #5f8e3e;
  color: #fff;
}

.bbm-age-gate__button--primary:hover,
.bbm-age-gate__button--primary:focus-visible {
  background: #456d2e;
  border-color: #456d2e;
}

.bbm-age-gate__button--secondary {
  background: #fff;
  border: 1px solid rgba(88, 126, 76, 0.4);
  color: #33442b;
}

.bbm-age-gate__button--secondary:hover,
.bbm-age-gate__button--secondary:focus-visible {
  background: #f1f7ec;
  border-color: #5f8e3e;
}

.bbm-age-gate__notice {
  color: #6a7567;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 1.15rem auto 0;
  max-width: 390px;
}

.bbm-age-gate-is-open {
  overflow: hidden;
}

@media (min-width: 520px) {
  .bbm-age-gate__actions {
    grid-template-columns: 1fr 1fr;
  }
}
