.age-gate-backdrop--amida {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(245, 240, 232, 0.05), transparent 40%),
    rgba(53, 69, 53, 0.94);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.age-gate-modal--amida {
  position: relative;
  width: min(480px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 22px;
  background: #FDFAF4;
  border: 1px solid rgba(221, 213, 196, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  color: #2A2A2A;
  font-family: "DM Sans", sans-serif;
}

.age-gate-modal__inner {
  padding: 30px 32px 28px;
}

.age-gate-modal__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  text-align: center;
}

.age-gate-modal__hex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #4A5E4A;
  color: #FDFAF4;
  font-size: 17px;
  line-height: 1;
}

.age-gate-modal__wordmark {
  color: #2A2A2A;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.age-gate-modal__eyebrow {
  margin: 0 0 10px;
  color: #C17D3C;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.age-gate-modal__title {
  margin: 0;
  color: #2A2A2A;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.age-gate-modal__intro {
  margin: 14px 0 24px;
  color: #8B7355;
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}

.age-gate-modal__divider {
  height: 1px;
  margin: 0 0 20px;
  background: #DDD5C4;
}

.age-gate-modal__sections {
  display: grid;
  gap: 12px;
}

.age-gate-modal__section {
  margin: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.age-gate-modal__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border-radius: 10px;
  background: rgba(193, 125, 60, 0.08);
  color: #8B7355;
  font-size: 15px;
  line-height: 1;
}

.age-gate-modal__section-icon--age {
  font-size: 12px;
  font-weight: 500;
}

.age-gate-modal__section-content {
  min-width: 0;
}

.age-gate-modal__section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.age-gate-modal__section-title {
  color: #2A2A2A;
  font-size: 15px;
  font-weight: 500;
}

.age-gate-modal__section-body {
  margin: 0;
  color: #8B7355;
  font-size: 12px;
  line-height: 1.55;
}

.age-gate-modal__consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid #DDD5C4;
  border-radius: 12px;
  background: rgba(139, 115, 85, 0.06);
}

.age-gate-modal__consent input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #4A5E4A;
}

.age-gate-modal__consent-copy,
.age-gate-modal__state-note {
  color: #2A2A2A;
  font-size: 12px;
  line-height: 1.5;
}

.age-gate-modal__consent--state {
  margin-top: 12px;
  background: rgba(74, 94, 74, 0.06);
}

.age-gate-modal__state-note {
  margin: 14px 0 0;
  color: #8B7355;
}

.age-gate-modal__actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.age-gate-modal__agree,
.age-gate-modal__disagree {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.age-gate-modal__agree {
  background: #4A5E4A;
  color: #F5F0E8;
  box-shadow: 0 12px 28px rgba(42, 42, 42, 0.14);
}

.age-gate-modal__agree[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.age-gate-modal__disagree {
  min-height: auto;
  background: transparent;
  color: #8B7355;
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
}

body.amida-age-gate-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .age-gate-backdrop--amida {
    padding: 16px;
  }

  .age-gate-modal__inner {
    padding: 24px 20px 22px;
  }

  .age-gate-modal__title {
    font-size: 28px;
  }

  .age-gate-modal__section {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .age-gate-modal__section-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
}
