/** Shopify CDN: Minification failed

Line 592:18 Expected identifier but found whitespace
Line 592:20 Unexpected "{"
Line 592:33 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:cart (INDEX:3) */
.cart-page {
    background: #fff;
    border-radius: 1rem;
    max-width: 60dvw;
    margin: 2rem auto;
  }

  .cart-divider {
    border: none;
    border-top: 1px solid #000;
    margin: 0;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 180px 1fr auto auto;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
  }

  .cart-item__image img {
    width: 100%;
    display: block;
  }

  .cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .cart-item__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .quantity-selector__btn {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0;
  }

  .quantity-selector__input {
    width: 1rem;
    text-align: center;
    border: none;
    -moz-appearance: textfield;
  }

  .quantity-selector__input::-webkit-outer-spin-button,
  .quantity-selector__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }

  .cart-item__remove {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
  }

  .cart-item__remove:hover {
    text-decoration: underline;
  }

  .cart-item__total {
    text-align: right;
  }

  .cart-footer {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem 0 0;
  }

  .cart-footer__summary {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart-footer__note {
    margin: 0;
    line-height: 1.5;
  }

  .checkout-btn {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: black;
    color: white;
    border: none;
    border-radius: 4rem;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
  }

  .checkout-btn:hover {
    background: #6da45b;
    color: black;
    transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:4) */
.collection-product__media {
  position: relative;
}

.badge-new {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 1rem;
  pointer-events: none;
  box-shadow: 0 3px 12px #00000040;
  transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}

.collection-product.featured-item:hover {
background-color: var(--hover-color);
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}

.collection-product.featured-item:hover .badge-new {
transform: rotate(15deg);
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}

.collection-product.featured-item {
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}

.collection-products a {
text-decoration: none;
color: inherit;}
.collection-products .featured-item {
height: min-content;}

.facet-filters__sort {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid black;
  border-radius: 0;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  outline: none;
  box-shadow: none;
  margin: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 18px;
  color: inherit;
  cursor: pointer;
  width: min-content;
}
.facet-filters__sort::-ms-expand {
  display: none;
}
.sort-bar {
justify-content: flex-end;}
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:6) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:7) */
footer a {
text-decoration: none;
color: inherit;}
  footer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    margin-top: 2rem;
    background-color: #000000;
    color: white;
  }
  .footer-bottom {
  padding-top: 6rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  }
  .bottom-right, .bottom-left {
  align-items: flex-end;}
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:8) */
#go-checkout:hover {
background-color: #6da45b;
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);}
#cart-drawer__view:hover {
background-color: black;
color: white;}
.header-top {
padding-bottom: 0.25rem;}
.back-text {
padding-left: 0.5rem;}
  header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  header a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header a sup {
    position: absolute;
    left: 100%;
    overflow: hidden;
    max-width: var(--page-margin);
  }
  header svg {
    width: 2rem;
  }
  header .header__menu,
  header .header__icons {
    display: flex;
    gap: 1rem;
  }
  .back-logo {
    width: 3rem;
    height: 3rem;
  }
  .back {
  display: flex;
  align-items: flex-end;
  }
  .header-right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  }
  .menu-icon {
  width: 2.5rem;
  height: auto;
  }
  
  .header-items {
  width: 100%;
  }
  
  .nav-wrapper {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    position: relative;
  }
  .nav-top {
    display: flex;
    width: 100%;
    gap: 2rem;
  }
  .nav-item {
    padding: 0.5rem 0 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #000;
    white-space: nowrap;
  }
  .dropdown-row {
    
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    
    border-top: 1px solid #000;
    position: absolute;
    width: 100%;
    left: 0;
    gap: 2rem;
    border-bottom: 1px solid #000;
    background-color: #ededed;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    z-index: 10;
  }
  .dropdown-cell {
    padding: 0;
  }
  .dropdown-cell a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 0.25rem 0;
  }
  
.nav-wrapper:has(.nav-item[data-col="0"]:hover) .dropdown-row,
  .nav-wrapper:has(.nav-item[data-col="6"]:hover) .dropdown-row,
  .nav-wrapper:has(.dropdown-row:hover) .dropdown-row {
    visibility: visible;
    opacity: 1;
  }
  
  .nav-wrapper:has(.nav-item[data-col="0"]:hover) #cell-0 a,
  .nav-wrapper:has(#cell-0:hover) #cell-0 a,
  .nav-wrapper:has(.dropdown-row:hover) #cell-0 a {
    display: block;
  }
  
  #cell-0 a, #cell-6 a {
    display: none;
  }
  
  .nav-wrapper:has(.nav-item[data-col="0"]:hover) #cell-0 a,
  .nav-wrapper:has(.nav-item[data-col="0"]:hover) #cell-6 a,
  .nav-wrapper:has(.nav-item[data-col="6"]:hover) #cell-0 a,
  .nav-wrapper:has(.nav-item[data-col="6"]:hover) #cell-6 a,
  .nav-wrapper:has(.dropdown-row:hover) #cell-0 a,
  .nav-wrapper:has(.dropdown-row:hover) #cell-6 a {
    display: block;
  }

#cart-dropdown-mobile .cart-dropdown__inner {
flex-direction: column;
}

#cart-dropdown-mobile {
top: 4rem;
}

.cart-dropdown {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background-color: #ededed;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 10;
  padding: 1rem 0;
}
.cart-dropdown.is-open {
  visibility: visible;
  opacity: 1;
}
.cart-dropdown__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cart-dropdown__added {
  white-space: nowrap;
}
.cart-drawer__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
}
.cart-drawer__item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.cart-drawer__item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cart-drawer__btn {
  white-space: nowrap;
  text-align: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  border: none;
  cursor: pointer;
  border-radius: 4rem;
}
.cart-drawer__btn--outline {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  border-radius: 4rem;
}
.cart-drawer__continue {
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-decoration: underline;
  padding: 0;
}
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:9) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:home-hero (INDEX:10) */
.home-blurb {
background-color: #dffd63;
border-radius: 9999px;
padding: 0 5rem 0 5rem;
height: 60%;
text-align: center;
display: flex;
align-items: center; justify-items: center; justify-content: center;
}
/* END_SECTION:home-hero */

/* START_SECTION:home-three (INDEX:11) */
.featured-thumbnail {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.featured-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: {{ focal_point }};
}
.home-three a {
text-decoration: none;
color: inherit;}
.sign-up-box a {
text-decoration: none;
color: inherit;}
.featured a {
text-decoration: none;
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
color: inherit;}
.featured a:hover {
background-color: var(--hover-color);
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);}
.featured a:hover .arrow {
transform: translateX(1rem);
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);}
.arrow {
width: auto;
height: 1.5rem;
margin-left: 1rem;
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);}
.featured-title {
display: flex;
align-items: center;}
.featured-item {
padding:1rem;
background-color: white;
border-radius: 1rem;}
.featured-image {
margin-top: 1rem;
width: 100%;
aspect-ratio: 1 / 1;
overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.big-feature {
background-color: #56d280;
border-radius: 1rem;
}
.sign-up-box {
background-color: #579bff;
border-radius: 1rem;
width: 50%;}
.signup-button {
width: 80%;
background-color: white;
color: black;
margin: 0 auto;
border-radius: 2rem;
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);}
.signup-button:hover {
width: 80%;
background-color: black;
color: white;
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}
/* END_SECTION:home-three */

/* START_SECTION:product (INDEX:14) */
.slideshow-arrow {
width: auto;
height: 1rem;
margin-left: 0rem;}
.slideshow-button {
border: 0;
text-align: center;
cursor: pointer;}
.product-images {
  position: relative;
  transition: height 0.3s ease;
  cursor: pointer;
}

.product-image {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.product-image.hidden {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}
.product-info {
background-color: white;
border-radius: 1rem;}
.product-form form {
display: flex;
flex-direction: column;}
input[name="quantity"] {
padding: 0.25rem 0.5rem 0.25rem 0.5rem;
border: 1px solid black;
border-radius: 0;
text-align: center;
width: min-content;}
button.quant {
cursor: pointer;
padding: 0.25rem 0.5rem 0.25rem 0.5rem;
background-color: white;
border: 1px solid black;
border-radius: 0;
text-align:center;}
.quantity-selector {
gap: 0.5rem;}
.add-button {
background-color: black;
color: white;
border-radius: 4rem;
width: 60%;
cursor: pointer;
margin: 0 auto;
border: 0;}
.add-button:hover {
background-color: #6da45b;
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows for Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* END_SECTION:product */

/* START_SECTION:search (INDEX:15) */
.search-container {
min-height: 50dvh;}

.collection-product__media {
  position: relative;
}

.badge-new {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 1rem;
  pointer-events: none;
  box-shadow: 0 3px 12px #00000040;
  transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}

.collection-product.featured-item:hover {
background-color: var(--hover-color);
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}

.collection-product.featured-item:hover .badge-new {
transform: rotate(15deg);
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}

.collection-product.featured-item {
transition: all 250ms cubic-bezier(0.66, 0, 0.34, 1);
}

.collection-products a {
text-decoration: none;
color: inherit;}
.collection-products .featured-item {
height: min-content;}

.search-form input {
border: 1px solid black;
border-radius: 0;
width: 60%;
}

.search-form button {
background-color: black;
color: white;
border-radius: 4rem;
border: 0;
padding: 2rem 4rem 2rem 4rem;
width: min-content;
cursor: pointer;
}

  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:16) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:17) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:19) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */