:root {
  --color-white: #FCF7EE;
  --color-black: #1C1C1C;
  --color-red: #F4823C;
  --color-blue: #2A7FA0;
  --color-green: #727028;
  --color-error: var(--color-red);
  --color-success: var(--color-green);
  --color-notice: var(--color-blue);
  --font-mono: 'PP Neue Montreal Mono', monospace;
  --font-sans: 'PP Neue Montreal', sans-serif;
  --font-serif: 'Ramboia', serif;
}

@font-face {
  font-family: 'PP Neue Montreal Mono';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("/fonts/font-PPNeueMontrealMono-Medium.woff2") format('woff2');
}

@font-face {
  font-family: 'PP Neue Montreal Mono';
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: url("/fonts/font-PPNeueMontrealMono-Bold.woff2") format('woff2');
}

@font-face {
  font-family: 'PP Neue Montreal';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/font-PPNeueMontreal-Book.woff2") format('woff2');
}

@font-face {
  font-family: 'Ramboia';
  font-style: normal;
  font-display: swap;
  src: url("/fonts/font-Ramboia-Bold.woff2") format('woff2');
}

html {
  font-size: 16px;
}

* {
  font-variant-ligatures: none;
}

body {
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-mono);
  font-size: clamp(0.75em, 0.25em + 1vw, 1em);
  margin: 0;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex-grow: 1;
  position: relative;
}
main > *:last-child {
  margin-bottom: 0;
}

/* Generic Elements */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-red);
}

.hidden,
.is-hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.underlined_link {
  border-bottom: 1.5px dotted;
}

/* Visibility */
@media (max-width: 879px) {
  .desktop_only {
      display: none !important;
  }
}

@media (min-width: 880px) {
  .mobile_only {
      display: none !important;
  }
}

/* Margins */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: clamp(0.75rem, 0.5rem + 1vw, 1rem) !important;
}

.mb-2 {
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2rem) !important;
}

.mb-3 {
  margin-bottom: clamp(2.25rem, 1.5rem + 3vw, 3rem) !important;
}

.mb-4 {
  margin-bottom: clamp(3rem, 2rem + 4vw, 4rem) !important;
}

.mb-5 {
  margin-bottom: clamp(3.75rem, 2.5rem + 5vw, 5rem) !important;
}

.mb-6 {
  margin-bottom: clamp(4.5rem, 3rem + 6vw, 6rem) !important;
}

.mt-1 {
  margin-top: clamp(0.75rem, 0.5rem + 1vw, 1rem) !important;
}

.mt-2 {
  margin-top: clamp(1.5rem, 1rem + 2vw, 2rem) !important;
}

.mt-3 {
  margin-top: clamp(2.25rem, 1.5rem + 3vw, 3rem) !important;
}

.mt-4 {
  margin-top: clamp(3rem, 2rem + 4vw, 4rem) !important;
}

.mt-5 {
  margin-top: clamp(3.75rem, 2.5rem + 5vw, 5rem) !important;
}

.mt-6 {
  margin-top: clamp(4.5rem, 3rem + 6vw, 6rem) !important;
}

/* Font Utilities */

.mono-xs {
  font-family: var(--font-mono);
  font-size: 0.8em;
  font-size: max(14px, 0.8em);
  line-height: 1.5em;
}

.mono-sm {
  font-family: var(--font-mono);
  font-size: max(14px, 1em);
}

.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw + 1rem, 2em);
  line-height: 1.125;
}

/* Links */
.dotted_hover a,
a.dotted_hover {
  border-bottom: 1.5px dotted transparent;
}
.dotted_hover a:hover,
a.dotted_hover:hover {
  border-bottom-color: currentColor;
}

/* Buttons */
.button_list,
.button_group {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  list-style-type: none;
}
.button_list {
  justify-content: flex-start;
}

.button_list a,
.btn, /* Shopify uses this sometimes */
.button {
  appearance: none;
  display: inline-block;
  background: transparent;
  border: 1px solid var(--color-black);
  border-radius: 3em;
  color: currentColor;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: normal;
  min-width: 180px;
  padding: 0.75em 2em;
  position: relative;
  text-align: center;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.button:disabled {
  /*background: transparent !important;*/
  cursor: inherit;
  pointer-events: none;
}

.button_list a,
.button--small {
  font-size: 0.9em;
  min-width: 120px;
  padding: 0.5em 2em;
}

input[type="radio"]:checked + .button,
.is-active .button,
.button_list a.active,
.button_list .is-active a,
.button_list a:hover,
.button.is-active,
a:hover .button,
.button:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 0;
}

.button--white {
  border-color: var(--color-white);
}

.button--white:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Age Gate */

.age_gate {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.age_gate-inner {
  align-items: center;
  background: var(--color-black);
  border-radius: 2em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  justify-content: center;
  margin: 2em;
  max-width: 600px;
  padding: 2em;
  text-align: center;
}

@media (min-width: 480px) {
  .age_gate-inner {
      padding: 2em 3em;
  }
}

.age_gate-logo img {
  height: auto;
  width: 96px;
}

@media (min-width: 480px) {
  .age_gate-logo img {
      width: 128px;
  }
}

.age_gate p {
  text-wrap: balance;
}

.age_gate .button {
  padding: 1.25em;
}
