/* Age restriction modal refinements for Raise And Dine */

.age-gate {
  display: flex;
}

.age-gate__modal {
  max-width: 520px;
}

.age-gate__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-4);
}

.age-gate__actions {
  justify-content: flex-end;
}

.age-gate__btn {
  min-width: 150px;
}

.age-gate__note {
  margin-top: var(--space-8);
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

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

@media (max-width: 600px) {
  .age-gate__modal {
    padding: var(--space-16);
  }

  .age-gate__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .age-gate__btn {
    width: 100%;
  }
}
