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

#cbd-age-gate[hidden] {
  display: none !important;
}

#cbd-age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#cbd-age-gate .cbd-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 16, 0.74);
  backdrop-filter: blur(6px);
}

#cbd-age-gate .cbd-age-gate__dialog {
  position: relative;
  width: min(32rem, calc(100vw - 2rem));
  margin: 0;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  text-align: center;
}

#cbd-age-gate .cbd-age-gate__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cb6430;
}

#cbd-age-gate .cbd-age-gate__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.1;
}

#cbd-age-gate .cbd-age-gate__description,
#cbd-age-gate .cbd-age-gate__note {
  margin: 0;
  color: #4c5b56;
}

#cbd-age-gate .cbd-age-gate__note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

#cbd-age-gate .cbd-age-gate__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.5rem;
}

#cbd-age-gate .cbd-age-gate__button {
  min-width: 0;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#cbd-age-gate .cbd-age-gate__choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 0.75rem;
  cursor: pointer;
  text-align: left;
}

#cbd-age-gate .cbd-age-gate__choice-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

#cbd-age-gate .cbd-age-gate__choice-indicator {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  border: 1.5px solid rgba(28, 47, 31, 0.32);
  border-radius: 50%;
  background: #fff;
}

#cbd-age-gate .cbd-age-gate__choice-indicator::after {
  content: "";
  position: absolute;
  inset: 0.2rem;
  border-radius: 50%;
  background: #1c2f1f;
  transform: scale(0);
  transition: transform 0.2s ease;
}

#cbd-age-gate .cbd-age-gate__choice-label {
  flex: 1 1 auto;
}

#cbd-age-gate .cbd-age-gate__button:focus-visible {
  outline: 3px solid rgba(203, 100, 48, 0.35);
  outline-offset: 3px;
}

#cbd-age-gate .cbd-age-gate__choice:focus-within {
  outline: 3px solid rgba(203, 100, 48, 0.35);
  outline-offset: 3px;
}

#cbd-age-gate .cbd-age-gate__button:hover {
  transform: translateY(-1px);
}

#cbd-age-gate .cbd-age-gate__button--primary {
  background: #1c2f1f;
  color: #fff;
  box-shadow: 0 10px 20px rgba(28, 47, 31, 0.22);
}

#cbd-age-gate .cbd-age-gate__button--secondary {
  background: #fff;
  color: #1c2f1f;
  border-color: rgba(28, 47, 31, 0.16);
}

#cbd-age-gate .cbd-age-gate__choice.is-selected {
  border-color: rgba(28, 47, 31, 0.4);
  box-shadow: 0 10px 20px rgba(28, 47, 31, 0.12);
  background: #f8fbf8;
}

#cbd-age-gate .cbd-age-gate__choice.is-selected .cbd-age-gate__choice-indicator {
  border-color: #1c2f1f;
}

#cbd-age-gate .cbd-age-gate__choice.is-selected .cbd-age-gate__choice-indicator::after {
  transform: scale(1);
}

#cbd-age-gate .cbd-age-gate__actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

#cbd-age-gate .cbd-age-gate__actions .cbd-age-gate__button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  #cbd-age-gate .cbd-age-gate__button,
  #cbd-age-gate .cbd-age-gate__choice-indicator::after {
    transition: none;
  }
}

@media (max-width: 575.98px) {
  #cbd-age-gate {
    padding: 1rem;
  }

  #cbd-age-gate .cbd-age-gate__dialog {
    padding: 1.5rem 1.25rem;
  }

  #cbd-age-gate .cbd-age-gate__choices {
    gap: 0.5rem;
  }

  #cbd-age-gate .cbd-age-gate__choice {
    gap: 0.5rem;
    padding-inline: 0.9rem;
  }

  #cbd-age-gate .cbd-age-gate__choice-label {
    font-size: 0.92rem;
  }

  #cbd-age-gate .cbd-age-gate__actions .cbd-age-gate__button {
    width: 100%;
  }
}
