@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --munchiez-background: oklch(96.8% .006 145);
  --munchiez-foreground: oklch(24% .045 155);
  --munchiez-card: oklch(99% .003 145);
  --munchiez-primary: oklch(53% .115 158);
  --munchiez-primary-foreground: oklch(98% .006 145);
  --munchiez-accent: oklch(68% .129 5);
  --munchiez-accent-foreground: oklch(99% .005 340);
  --munchiez-muted-foreground: oklch(48% .025 155);
  --munchiez-border: oklch(90% .015 150);
  --munchiez-shadow-soft: 0 10px 30px -12px oklch(36% .085 158 / .25);
  --munchiez-shadow-lift: 0 18px 42px -16px oklch(36% .085 158 / .35);
}

html body.munchiez-age-gate-body {
  margin: 0 !important;
  min-height: 100vh;
  background: var(--munchiez-background) !important;
  color: var(--munchiez-foreground) !important;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif !important;
  -webkit-text-size-adjust: 100%;
}

body.munchiez-age-gate-body *,
body.munchiez-age-gate-body *::before,
body.munchiez-age-gate-body *::after {
  box-sizing: border-box;
}

.munchiez-age-gate-body h1,
.munchiez-age-gate-body h2,
.munchiez-age-gate-body h3,
.munchiez-age-gate-body p {
  margin: 0;
}

.munchiez-age-gate {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background: var(--munchiez-background);
  color: var(--munchiez-foreground);
}

.munchiez-age-gate__background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.munchiez-age-gate__grain {
  position: absolute;
  inset: 0;
  opacity: .7;
  background-image: radial-gradient(oklch(36% .085 158 / .05) 1px, transparent 1px);
  background-size: 4px 4px;
}

.munchiez-age-gate__glow {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  filter: blur(64px);
}

.munchiez-age-gate__glow--left {
  left: -6rem;
  top: 25%;
  background: oklch(53% .115 158 / .05);
}

.munchiez-age-gate__glow--right {
  right: -6rem;
  bottom: 25%;
  width: 20rem;
  height: 20rem;
  background: oklch(68% .129 5 / .10);
}

.munchiez-age-gate__dot {
  position: absolute;
  display: block;
  border-radius: 9999px;
}

.munchiez-age-gate__dot--1 {
  left: 12%;
  top: 18%;
  width: 8px;
  height: 8px;
  background: oklch(68% .129 5 / .40);
}

.munchiez-age-gate__dot--2 {
  left: 22%;
  top: 70%;
  width: 6px;
  height: 6px;
  background: oklch(53% .115 158 / .40);
}

.munchiez-age-gate__dot--3 {
  right: 16%;
  top: 26%;
  width: 10px;
  height: 10px;
  background: oklch(53% .115 158 / .30);
}

.munchiez-age-gate__dot--4 {
  right: 26%;
  bottom: 16%;
  width: 6px;
  height: 6px;
  background: oklch(68% .129 5 / .40);
}

.munchiez-age-gate__layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  min-height: 100vh;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.munchiez-age-gate__left,
.munchiez-age-gate__right {
  pointer-events: none;
}

.munchiez-age-gate__left {
  display: none;
  justify-content: center;
}

.munchiez-age-gate__left img {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  user-select: none;
  opacity: .95;
  filter: drop-shadow(0 20px 40px rgba(20, 60, 35, .12));
  animation: munchiez-float 9s ease-in-out infinite;
}

.munchiez-age-gate__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.munchiez-age-gate__logo {
  display: block;
  width: min(88vw, 22rem);
  height: auto;
  user-select: none;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) both;
}

.munchiez-age-gate__logo.is-transitioning {
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) both;
}

.munchiez-age-gate__screen {
  display: none;
  width: 100%;
}

.munchiez-age-gate__screen.is-active {
  display: block;
}

.munchiez-age-gate__screen h1,
.munchiez-age-gate__screen h2,
.munchiez-age-gate__screen h3 {
  font-family: "Alfa Slab One", Georgia, serif;
  font-weight: 400;
  letter-spacing: .01em;
}

.munchiez-age-gate__screen[data-step="intro"] h1 {
  margin-top: 2.5rem;
  font-size: 2.25rem;
  line-height: 1.05;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) 120ms both;
}

.munchiez-age-gate__screen[data-step="intro"] h1 span {
  display: block;
  margin-top: .75rem;
  color: var(--munchiez-accent);
  font-size: 1.5rem;
  line-height: 1.15;
}

.munchiez-age-gate__screen p {
  margin: 1.25rem auto 0;
  max-width: 24rem;
  color: var(--munchiez-muted-foreground);
  font-size: 1rem;
  line-height: 1.5;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) 220ms both;
}

.munchiez-age-gate__actions,
.munchiez-age-gate__navigation {
  width: 100%;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) 320ms both;
}

.munchiez-age-gate__navigation {
  margin-top: 1.5rem;
}

.munchiez-age-gate__button {
  appearance: none;
  width: 100%;
  border-radius: 9999px;
  padding: 1rem 2rem;
  border: 0;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.25rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease, color .3s ease;
}

.munchiez-age-gate__button:hover,
.munchiez-age-gate__button:focus-visible {
  transform: translateY(-.25rem) scale(1.03);
}

.munchiez-age-gate__button:focus,
.munchiez-age-gate__location-card:focus,
.munchiez-age-gate__back-link:focus {
  outline: none !important;
}

.munchiez-age-gate__button--primary {
  background: var(--munchiez-primary) !important;
  color: var(--munchiez-primary-foreground) !important;
  box-shadow: var(--munchiez-shadow-soft);
}

.munchiez-age-gate__button--primary:hover,
.munchiez-age-gate__button--primary:focus-visible {
  background: var(--munchiez-accent) !important;
  color: var(--munchiez-accent-foreground) !important;
  box-shadow: var(--munchiez-shadow-lift);
}

.munchiez-age-gate__button--secondary {
  background: transparent !important;
  color: var(--munchiez-primary) !important;
  border: 2px solid color-mix(in oklab, var(--munchiez-primary) 30%, transparent);
  box-shadow: none;
}

.munchiez-age-gate__button--secondary:hover,
.munchiez-age-gate__button--secondary:focus-visible {
  border-color: color-mix(in oklab, var(--munchiez-accent) 75%, transparent);
  color: var(--munchiez-accent) !important;
  background: color-mix(in oklab, var(--munchiez-accent) 5%, transparent) !important;
}

.munchiez-age-gate__location-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) 260ms both;
}

.munchiez-age-gate__location-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 560px) {
  .munchiez-age-gate__location-grid--two {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 821px) {
  .munchiez-age-gate__location-grid:not(.munchiez-age-gate__location-grid--two) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.munchiez-age-gate__location-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 220px;
  padding: 2rem;
  border: 1px solid var(--munchiez-border);
  border-radius: 1.5rem;
  background: var(--munchiez-card) !important;
  box-shadow: var(--munchiez-shadow-soft);
  color: var(--munchiez-foreground);
  cursor: pointer;
  text-decoration: none;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.munchiez-age-gate__location-card:hover,
.munchiez-age-gate__location-card:focus-visible {
  transform: translateY(-6px);
  border-color: color-mix(in oklab, var(--munchiez-accent) 50%, transparent);
  box-shadow: var(--munchiez-shadow-lift);
}

.munchiez-age-gate__location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--munchiez-primary) 10%, transparent);
  color: var(--munchiez-primary);
  transition: background-color .3s ease, color .3s ease;
}

.munchiez-age-gate__location-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.munchiez-age-gate__location-card:hover .munchiez-age-gate__location-icon,
.munchiez-age-gate__location-card:focus-visible .munchiez-age-gate__location-icon {
  background: color-mix(in oklab, var(--munchiez-accent) 15%, transparent);
  color: var(--munchiez-accent);
}

.munchiez-age-gate__location-card h3 {
  margin-top: 1.25rem;
  font-family: "Alfa Slab One", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.2;
  color: var(--munchiez-foreground) !important;
}

.munchiez-age-gate__location-card p {
  margin: .5rem 0 auto;
  max-width: none;
  color: color-mix(in oklab, var(--munchiez-foreground) 70%, transparent);
  font-size: .92rem;
  line-height: 1.5;
  animation: none;
}

.munchiez-age-gate__location-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  color: var(--munchiez-primary);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.munchiez-age-gate__location-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform .3s ease;
}

.munchiez-age-gate__location-card:hover .munchiez-age-gate__location-link,
.munchiez-age-gate__location-card:focus-visible .munchiez-age-gate__location-link {
  color: var(--munchiez-accent);
}

.munchiez-age-gate__location-card:hover .munchiez-age-gate__location-link svg,
.munchiez-age-gate__location-card:focus-visible .munchiez-age-gate__location-link svg {
  transform: translateX(4px);
}

.munchiez-age-gate__back-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: oklch(53% .115 158) !important;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s ease;
}

.munchiez-age-gate__back-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform .3s ease;
}

.munchiez-age-gate__back-link:hover,
.munchiez-age-gate__back-link:focus-visible {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: oklch(0.68 0.129 5) !important;
}

.munchiez-age-gate__back-link:hover svg,
.munchiez-age-gate__back-link:focus-visible svg {
  transform: translateX(-4px);
}

.munchiez-age-gate__screen[data-step="location"] h2 {
  margin-top: 2.5rem;
  font-size: 2.25rem;
  line-height: 1.15;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) 120ms both;
}

.munchiez-age-gate__screen[data-step="location"]>p {
  margin-top: 1rem;
}

.munchiez-age-gate__screen[data-step="location"] .munchiez-age-gate__location-grid {
  margin-top: 3rem;
}

.munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="location"].is-active),
.munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="new-mexico"].is-active) {
  max-width: 56rem;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="location"].is-active) .munchiez-age-gate__left,
.munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="new-mexico"].is-active) .munchiez-age-gate__left {
  position: fixed;
  left: -2rem;
  bottom: 0;
  z-index: 0;
  display: flex;
  width: 12rem;
}

.munchiez-age-gate__screen[data-step="new-mexico"] h1 {
  margin-top: 2.5rem;
  font-size: 2.25rem;
  line-height: 1.05;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) 120ms both;
}

.munchiez-age-gate__new-mexico-heading {
  margin-top: 3rem;
}

.munchiez-age-gate__screen[data-step="new-mexico"] h2 {
  margin-top: 0;
  color: var(--munchiez-accent);
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: .25em;
  text-transform: uppercase;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) 260ms both;
}

.munchiez-age-gate__new-mexico-heading p {
  margin-top: .5rem;
}

.munchiez-age-gate__screen--blocked {
  padding-top: 2.5rem;
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) both;
}

.munchiez-age-gate__screen--blocked h2 {
  font-size: 2.25rem;
  line-height: 1.05;
}

.munchiez-age-gate__screen--blocked h3 {
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) 120ms both;
}

.munchiez-age-gate__screen--blocked p {
  margin-top: 1rem;
}

.munchiez-age-gate__screen--blocked .munchiez-age-gate__button {
  width: auto;
  height: auto;
  padding: .75rem 2rem;
  margin-top: 2rem;
}

.munchiez-age-gate__screen--blocked .munchiez-age-gate__button--secondary {
  color: oklch(53% .115 158) !important;
}

.munchiez-age-gate__screen--blocked .munchiez-age-gate__button--secondary:hover,
.munchiez-age-gate__screen--blocked .munchiez-age-gate__button--secondary:focus-visible {
  border-color: oklch(0.68 0.129 5) !important;
  color: oklch(0.68 0.129 5) !important;
}

.munchiez-age-gate__right {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 10rem;
}

.munchiez-age-gate__right img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  user-select: none;
  opacity: .95;
  filter: drop-shadow(0 20px 40px rgba(20, 60, 35, .12));
  animation: munchiez-float 9s ease-in-out .8s infinite;
}

@keyframes munchiez-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes munchiez-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (min-width: 640px) {

  .munchiez-age-gate__screen[data-step="intro"] h1,
  .munchiez-age-gate__screen[data-step="new-mexico"] h1 {
    font-size: 3rem;
  }

  .munchiez-age-gate__screen[data-step="intro"] h1 span {
    font-size: 1.875rem;
  }

  .munchiez-age-gate__screen--blocked h2 {
    font-size: 3rem;
  }

  .munchiez-age-gate__actions,
  .munchiez-age-gate__navigation {
    flex-direction: row;
  }

  .munchiez-age-gate__button {
    width: auto;
  }

  .munchiez-age-gate__right {
    width: 12rem;
  }

  .munchiez-age-gate__screen[data-step="location"] h2 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {

  .munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="location"].is-active) .munchiez-age-gate__left,
  .munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="new-mexico"].is-active) .munchiez-age-gate__left {
    width: 18rem;
  }

  .munchiez-age-gate__right {
    width: 14rem;
  }
}

@media (min-width: 1024px) {
  .munchiez-age-gate__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 34rem) minmax(0, 1fr);
    gap: 1rem;
  }

  .munchiez-age-gate__left {
    display: flex;
  }

  .munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="location"].is-active) .munchiez-age-gate__left,
  .munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="new-mexico"].is-active) .munchiez-age-gate__left {
    width: 20rem;
  }

  .munchiez-age-gate__right {
    width: 18rem;
  }
}

@media (min-width: 1280px) {

  .munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="location"].is-active) .munchiez-age-gate__left,
  .munchiez-age-gate__layout:has(.munchiez-age-gate__screen[data-step="new-mexico"].is-active) .munchiez-age-gate__left {
    width: 24rem;
  }

  .munchiez-age-gate__right {
    width: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .munchiez-age-gate-body *,
  .munchiez-age-gate-body *::before,
  .munchiez-age-gate-body *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.munchiez-age-gate__logo.is-transitioning {
  animation: munchiez-rise .7s cubic-bezier(.22, 1, .36, 1) both !important;
}

/* Keep theme button rules from changing the gate's existing visual design. */
html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-block !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 9999px !important;
  padding: 1rem 2rem !important;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif !important;
  font-size: .875rem !important;
  font-weight: 700 !important;
  line-height: 1.25rem !important;
  letter-spacing: .1em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button--primary {
  border: 0 !important;
  background: var(--munchiez-primary) !important;
  color: var(--munchiez-primary-foreground) !important;
  box-shadow: var(--munchiez-shadow-soft) !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button--secondary {
  border: 2px solid color-mix(in oklab, var(--munchiez-primary) 30%, transparent) !important;
  background: transparent !important;
  color: var(--munchiez-primary) !important;
  box-shadow: none !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button--primary:hover,
html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button--primary:focus-visible {
  background: var(--munchiez-accent) !important;
  color: var(--munchiez-accent-foreground) !important;
  box-shadow: var(--munchiez-shadow-lift) !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button--secondary:hover,
html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button--secondary:focus-visible {
  border-color: color-mix(in oklab, var(--munchiez-accent) 75%, transparent) !important;
  background: color-mix(in oklab, var(--munchiez-accent) 5%, transparent) !important;
  color: var(--munchiez-accent) !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate .munchiez-age-gate__screen--blocked button.munchiez-age-gate__button {
  width: auto !important;
  margin: 2rem auto 0 !important;
  padding: .75rem 2rem !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button:hover,
html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button:focus-visible {
  transform: translateY(-.25rem) scale(1.03) !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate .munchiez-age-gate__location-card {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  min-height: 220px !important;
  margin: 0 !important;
  padding: 2rem !important;
  border: 1px solid var(--munchiez-border) !important;
  border-radius: 1.5rem !important;
  background: var(--munchiez-card) !important;
  box-shadow: var(--munchiez-shadow-soft) !important;
  color: var(--munchiez-foreground) !important;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  line-height: normal !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
  cursor: pointer !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate .munchiez-age-gate__location-card:hover,
html body.munchiez-age-gate-body .munchiez-age-gate .munchiez-age-gate__location-card:focus-visible {
  border-color: color-mix(in oklab, var(--munchiez-accent) 50%, transparent) !important;
  box-shadow: var(--munchiez-shadow-lift) !important;
  transform: translateY(-6px) !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__back-link {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 2rem 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: oklch(53% .115 158) !important;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif !important;
  font-size: .8125rem !important;
  font-weight: 700 !important;
  line-height: normal !important;
  letter-spacing: .1em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__back-link:hover,
html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__back-link:focus-visible {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: oklch(0.68 0.129 5) !important;
  transform: none !important;
}

@media (min-width: 640px) {
  html body.munchiez-age-gate-body .munchiez-age-gate button.munchiez-age-gate__button {
    width: auto !important;
  }
}