/** Shopify CDN: Minification failed

Line 129:14 Expected ")" to end URL token
Line 130:14 Expected ")" to end URL token
Line 138:14 Expected ")" to end URL token
Line 139:14 Expected ")" to end URL token

**/
/** Critical CSS for the theme. This file is included on every page. */

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

select {
  background-color: var(--color-background);
  color: currentcolor;
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p {
  text-wrap: pretty;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p:empty {
  display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6) + :has(+ :empty:last-child) {
  margin-block-end: 0;
}

/** Theme styles below */
body {
  font-family: var(--font-primary--family);
  background-color: var(--color-background);
  color: var(--color-foreground);
}

/** Section layout utilities */

/**
 * Setup a grid that enables both full-width and constrained layouts
 * depending on the class of the child elements.
 *
 * By default, a minimum content margin is set on the left and right
 * sides of the section and the content is centered in the viewport to
 * not exceed the maximum page width.
 *
 * When a child element is given the `full-width` class, it will span
 * the entire viewport.
 */
.shopify-section {
  /* --content-width: min(
    calc(var(--page-width) - var(--page-margin) * 2),
    calc(100% - var(--page-margin) * 2)
  ); */
  /* --content-margin: minmax(var(--page-margin), 1fr); */
  /* --content-grid: var(--content-margin) var(--content-width) var(--content-margin); */

  /* This is required to make <img> elements work as background images */
  /* position: relative;
  grid-template-columns: var(--content-grid);
  display: grid; */
  width: 100%;
}

/* Child elements, by default, are constrained to the central column of the grid. */
.shopify-section > * {
  grid-column: 2;
}

/* Child elements that use the full-width utility class span the entire viewport. */
.shopify-section > .full-width {
  grid-column: 1 / -1;
}

@font-face {
  font-family: 'HelveticaMonospacedPro';
  src: url({{ 'HelveticaMonospacedPro-It.woff2' | asset_url }}) format('woff2'),
       url({{ 'HelveticaMonospacedPro-It.woff' | asset_url }}) format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaMonospacedPro';
  src: url({{ 'HelveticaMonospacedPro-Rg.woff2' | asset_url }}) format('woff2'),
       url({{ 'HelveticaMonospacedPro-Rg.woff' | asset_url }}) format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.sans {
  font-family: var(--sans);
}

.mono {
  font-family: var(--mono);
}

.sticky {
  position: sticky;
  top: 0;
}

.block {
  display: block;
}

.center {
  text-align: center;
}

a:visited {
  color: inherit;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.upper {
  text-transform: uppercase;
}

.under {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.w-100 {
  width: 100%;
}

.corners {
  border-radius: 1rem;
}

/* Font sizes */

.f-10 {
  font-size: clamp(8px, 0.625vw, 10px);
}
.f-12 {
  font-size: clamp(10px, 0.75vw, 12px);
  line-height: clamp(12px, 0.75vw, 12px);
}
.f-16 {
  font-size: clamp(13px, 1vw, 16px);
  line-height: clamp(16px, 1.2vw, 19.2px);
}
.f-18 {
  font-size: clamp(15px, 1.125vw, 18px);
  line-height: clamp(18px, 1.40625vw, 22.5px);
}
.f-32 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: clamp(32px, 2.5vw, 40px);
}

/* Padding */
.pt-1 { padding-top: 1.5rem; }
.pr-1 { padding-right: 1.5rem; }
.pb-1 { padding-bottom: 1rem; }
.pl-1 { padding-left: 1.5rem; }

.pt-2 { padding-top: 2rem; }
.pr-2 { padding-right: 2rem; }
.pb-2 { padding-bottom: 2rem; }
.pl-2 { padding-left: 2rem; }

.pt-3 { padding-top: 3rem; }
.pr-3 { padding-right: 3rem; }
.pb-3 { padding-bottom: 3rem; }
.pl-3 { padding-left: 3rem; }

.pt-4 { padding-top: 4rem; }
.pr-4 { padding-right: 4rem; }
.pb-4 { padding-bottom: 4rem; }
.pl-4 { padding-left: 4rem; }

/* Margin */
.mt-1 { margin-top: 1rem; }
.mr-1 { margin-right: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.ml-1 { margin-left: 1rem; }

.mt-2 { margin-top: 2rem; }
.mr-2 { margin-right: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.ml-2 { margin-left: 2rem; }

.mt-3 { margin-top: 3rem; }
.mr-3 { margin-right: 3rem; }
.mb-3 { margin-bottom: 3rem; }
.ml-3 { margin-left: 3rem; }

.mt-4 { margin-top: 4rem; }
.mr-4 { margin-right: 4rem; }
.mb-4 { margin-bottom: 4rem; }
.ml-4 { margin-left: 4rem; }

/* Padding all sides */
.p-1 { padding: 1.5rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }
.p-4 { padding: 4rem; }

/* Margin all sides */
.m-1 { margin: 1rem; }
.m-2 { margin: 2rem; }
.m-3 { margin: 3rem; }
.m-4 { margin: 4rem; }

/* Padding Horizontal (left + right) */
.px-1 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-2 { padding-left: 2rem; padding-right: 2rem; }
.px-3 { padding-left: 3rem; padding-right: 3rem; }
.px-4 { padding-left: 4rem; padding-right: 4rem; }

/* Padding Vertical (top + bottom) */
.py-1 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 4rem; padding-bottom: 4rem; }

/* Margin Horizontal (left + right) */
.mx-1 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-2 { margin-left: 2rem; margin-right: 2rem; }
.mx-3 { margin-left: 3rem; margin-right: 3rem; }
.mx-4 { margin-left: 4rem; margin-right: 4rem; }

/* Margin Vertical (top + bottom) */
.my-1 { margin-top: 1rem; margin-bottom: 1rem; }
.my-2 { margin-top: 2rem; margin-bottom: 2rem; }
.my-3 { margin-top: 3rem; margin-bottom: 3rem; }
.my-4 { margin-top: 4rem; margin-bottom: 4rem; }

/* Grids */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.grid {
  box-sizing: border-box;
}

.grid-item {
  width: calc((100% - 48px) / 3);
  margin-bottom: 1.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.px-icon {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.shopify-policy__container {
  font-family: var(--sans);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.shopify-policy__container h1 {
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 1rem;
}

.mobile-show {
  display: none;
}

.hide {
  display: none;
}

.menu-icon {
  cursor: pointer;
}

.header-mobile {
  display: none;
}

.banner {
  top: 0;
  left: 0;
  background-color: black;
  color: white;
  padding: 0.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}  

.banner-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 1100px) {
  
  #cart-dropdown-mobile {
    position: static !important;
    order: 999 !important;
    width: 100% !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    border: none !important;
    transition: max-height 0.3s ease !important;
  }
  
  #cart-dropdown-mobile.is-open {
    max-height: 500px !important;
    border-top: 1px solid #000 !important;
    border-bottom: none !important;
    padding: 1rem 0 !important;
  }
  
.grid-item {
  width: 100% !important;
}
  
.grid-2, .grid-3 {
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.mobile-hide {
  display: none !important;
}

.mobile-show {
  display: block !important;
}

header {
  border-bottom: 1px solid black;
  padding-top: 1rem !important;
  padding-bottom: 0 !important;
  position: fixed !important;
  z-index: 100 !important;
  width: 100% !important;
  background-color: #ededed !important;
  height: min-content !important;
}

.shopify-section-group-header-group + div {
  padding-top: 5rem;
}

.search-form input {
width: 100% !important;
}

.header-center img {
  width: 50dvw;
  height: auto;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0 !important;
  padding-bottom: 1rem !important;
}

footer {
  margin-top: 2rem !important;
}

.footer-bottom, .bottom-left, .bottom-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-bottom {
  padding-top: 2rem !important;
}

.bottom-left, .bottom-right {
  align-items: flex-start !important;
}

.bottom-right {
  margin-top: 1rem;
}

.big-feature {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.sign-up {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.sign-up-box {
  width: 100% !important;
}

.home-blurb {
  height: 100% !important;
  padding: 3rem !important;
}

.home-hero {
  padding-bottom: 0 !important;
}

.home-three {
  padding-top: 1.5rem !important;
}

.back-logo {
  width: 8dvw !important;
  height: 8dvw !important;
}

.nav-top {
  flex-direction: column !important;
  gap: 0 !important;
  align-items: flex-start !important;
}

.nav-item {
    padding: 0.25rem 0 0.25rem 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #000;
    white-space: nowrap;
}

.nav-wrapper {
  border-bottom: 0 !important;
}

.nav-sub {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  margin-left: 1rem;
  }
  
.nav-sub a {
  padding: 0.25rem 0 0.25rem 0 !important;
}

.mobile-icons {
  display: flex !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.sort-bar {
  justify-content: flex-start !important;
}

.options-box {
  flex-direction: column !important;
  gap: 1.5rem !important;
}

.add-button {
  width: 100% !important;
}

.product.grid-2 {
  gap: 4rem !important;
}

.show {
  display: block !important;
}

.cart-page {
  max-width: 100% !important;
  margin: 1.5rem !important;
}

.cart-item {
  grid-template-columns: 1fr !important;
}

.cart-footer {
  justify-content: flex-start !important;
}

.cart-footer__summary {
  width: 100% !important;
}

.cart-item__total {
  text-align: left !important;
}
  
}