/** Shopify CDN: Minification failed

Line 3745:1 Unexpected "7"

**/
/* FOOTER */
.footer {
  padding: 88px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--black);
  position: relative;
  z-index: 1;
}

.footer__logo {
  width: 100%;
  display: inline-grid;
}

.footer__logo.mobile {
  display: none;
}

.footer__logo svg path {
  transition: opacity var(--tBase);
}

@media (hover: hover) {
  .footer__logo:hover svg path {
    opacity: 0.4;
  }
}

.footer__top-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--margin);
}

.footer__nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__nav-menu {
  display: flex;
  gap: 8px;
}

@media(max-width:798px) {
  .footer__nav-menu {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-link,
a.footer__nav-link {
  transition: opacity var(--tBase);
}

@media (hover: hover) {
  .footer__nav-link:hover,
  a.footer__nav-link:hover {
    opacity: 0.4;
  }
}

.footer__bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 24px var(--margin) 0;
}

.footer__socials {
  display: flex;
  gap: 8px;
}
/* End of Footer */

/* Main/generic page */
.main-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 100px var(--margin) 0;
}

.page__title {
  text-align: center;
  margin-bottom: 60px;
}

.page__content {
  margin-bottom: 100px;
}

.page__featured-image {
  margin-bottom: 60px;
}

.page__featured-image .aspectholder {
  aspect-ratio: 0.8;
}

/* End of Main/generic page */

/* Policies page */
.policies {
  padding-top: 0;
  padding-bottom: 100px;
  align-items: start;
  min-height: calc(100vh - var(--headerHeight));
}

.policies__wrapper {
  display: grid;
  grid-template-columns: var(--coreGrid);
}

.policies__nav {
  position: sticky;
  top: calc(var(--headerHeight) + 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-column: span 9;
  align-items: start;
  height: min-content;
}

.policies__title {
  margin-bottom: 48px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.policies__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policies__link {
  color: var(--black);
  opacity: 0.4;
  transition: opacity var(--tMed);
}

.policies__link:hover,
.policies__link--active {
  opacity: 1;
}

.policies__content {
  padding-top: 2px;
  grid-column: span 15;
  max-width: 534px;
}
/* End of Policies page */

/* CART DRAWER + CART PAGE STYLES */
.my-cart__items {
  opacity: 1;
  transition: opacity 0.3s;
}

body.js-ajax-cart-request-in-progress .my-cart__items {
  opacity: 0.7;
}

form.js-ajax-cart-form-in-progress [type='submit'] {
  opacity: 0.7;
}

/* Drawer Container */
#shopify-section-my-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  z-index: 40;
  visibility: hidden;
  transition:
    all 0.1s 0.3s,
    background-color 0.3s;
  display: block;
}

.js-my-cart-open #shopify-section-my-cart {
  visibility: visible;
}

/* Drawer Background Overlay */
.cart-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  cursor: e-resize;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--tBase),
    visibility var(--tBase);
}

.js-my-cart-open .cart-modal__bg {
  opacity: 1;
  visibility: visible;
}

/* Drawer Panel */
.cart-modal__inner {
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 430px;
  height: 100dvh;
  transform: translateX(100%);
  background-color: var(--black);
  visibility: hidden;
  transition:
    transform var(--tBase),
    visibility var(--tBase);
}

.js-my-cart-open .cart-modal__inner {
  visibility: visible;
  transform: translateX(0);
}

/* Drawer Header */
.cart-modal__top-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 16px 14px;
  color: var(--white);
}

.cart-modal__heading {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.cart-modal__count {
  margin-left: 4px;
}

.cart-modal__close {
  color: var(--white);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 16px;
  width: 16px;
}

.cart-modal__close svg path {
  stroke: var(--white);
}

/* Drawer Form + Scroll */
.cart-modal__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow-y: auto;
}

.cart-modal__items {
  padding: 0 var(--margin) 0 0;
  margin: 0;
  list-style: none;
  flex: 1;
  overflow-y: auto;
}

/* Cart Item Layout */
.cart-modal__item {
  display: grid;
  grid-template-columns: 120px auto;
  column-gap: 16px;
  padding: 6px 0;
  position: relative;
  color: var(--white);
}

.cart-modal__item:first-of-type {
  padding-top: 0;
}

/* Image Sizing */
.cart-modal__item-media .aspectholder,
.cart-modal__item .aspectholder {
  aspect-ratio: 0.8;
  background-color: #f0f0f0;
}

.cart-modal__item img {
  object-fit: contain;
}

.cart-modal__item-errors {
  grid-column: span 2;
  font-size: 12px;
  color: var(--white);
}

/* Item Meta Layout */
.cart-modal__item-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--white);
}

.cart-modal__item-title {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
}

.cart-modal__item-variant {
  margin: 0;
  color: var(--white);
}

.cart-modal__item-price {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 700;
}

/* Item action row: qty (left) + remove (right) */
.cart-modal__item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

/* Quantity stepper */
.cart-modal__qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
}

.cart-modal__qty-btn {
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-modal__qty-btn svg path {
  stroke: var(--white);
}

input.cart-modal__qty-input {
  width: 28px;
  text-align: center;
  background: transparent;
  border: 0;
  color: var(--white);
  appearance: textfield;
  -moz-appearance: textfield;
}

.cart-modal__qty-input::-webkit-inner-spin-button,
.cart-modal__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-modal__qty-input:focus {
  outline: none;
}

/* Remove link */
a.cart-modal__item-remove,
a:link.cart-modal__item-remove {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--tBase);
}

@media (hover: hover) {
  a.cart-modal__item-remove:hover {
    color: var(--white);
  }
}

/* Drawer Footer */
.cart-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--margin);
}

.cart-modal__footer-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--white);
}

.cart-modal__footer-price p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.cart-modal__checkout.button,
.cart-modal__checkout.button:link {
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  border-radius: 999px;
  min-height: 52px;
  font-weight: 700;
}

/* Empty State */
.cart-modal__empty-container {
  padding: var(--margin);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--white);
}

.cart-modal__empty-text {
  margin-bottom: 16px;
  margin-top: 24px;
  text-align: center;
  color: var(--white);
}

/* Shipping Progress Bar */
.cart-modal__shipping-bar {
  padding: 4px var(--margin) 12px;
  color: var(--white);
}

.cart-modal__shipping-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
  overflow: hidden;
}

.cart-modal__shipping-progress-fill {
  height: 100%;
  background: var(--white);
  transition: width 0.3s ease;
}

/* CART PAGE STYLES (/cart) */

.cart {
  min-height: 80vh;
  background-color: var(--black);
  color: var(--white);
  padding: 56px 0 80px;
}

.cart__top-level {
  margin-bottom: 32px;
}

.cart__heading {
  margin: 0;
  color: var(--white);
}

.cart__count {
  margin-left: 6px;
  opacity: 0.6;
}

.cart__form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: start;
}

.cart__left {
  grid-column: span 7;
}

.cart__right {
  grid-column: 9 / span 4;
  position: sticky;
  top: 150px;
  align-self: start;
}

.cart__summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px var(--margin);
  color: var(--white);
}

.cart__empty .button {
  max-width: 320px;
}

.cart .cart-modal__items {
  padding: 0;
  overflow: visible;
}

.cart .cart-modal__item {
  padding: 6px 0;
  max-width: 430px;
}

.cart .cart-modal__item:first-of-type {
  padding-top: 0;
}
/* End of Cart styles */

/* Currency Switcher */
.currency-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}

.currency-switcher svg {
  width: 12px;
  margin-left: 4px;
  flex-shrink: 0;
}

.currency-switcher select {
  background: transparent;
  height: auto;
  padding: 0;
  text-align: right;
  max-width: 180px;
  transition: color var(--tBase);
}

@media (hover: hover) {
  .currency-switcher select:hover {
    color: var(--grey);
  }
}

.currency-selector {
  width: auto;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
}
/* End of Currency Switcher */

/* Floating-pill Header */
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 var(--margin);
  pointer-events: none;
  height: 36px;
}

.header__brand-group {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 4px;
  pointer-events: auto;
}

.header__brand-group .header__shop {
  display: none;
}

.header__cart {
  display: none !important;
}

.header__cart {
  margin-left: auto;
  pointer-events: auto;
}

.header__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px 9px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity var(--tBase);
  height: 36px;
}

/* Homepage: hide pills until the hero has scrolled past. */
.template--index .header,
.template--index .page-anchors {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tBase);
}

.template--index.past-hero .header,
.template--index.past-hero .page-anchors {
  opacity: 1;
  pointer-events: auto;
}

@media (hover: hover) {
  .header__pill:hover {
    opacity: 0.75;
  }
}

.header__brand {
  letter-spacing: 0.04em;
  background-color: var(--grey);
  color: #ffffff90 !important;
}

.header__cart-count {
  display: inline;
}

/* Page anchor nav (bottom pill) */
.page-anchors {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  max-width: calc(100% - var(--margin) * 2);
  pointer-events: auto;
}

.page-anchors__inner {
  display: flex;
  gap: 4px;
  padding: 6px;
  background: var(--grey);
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-anchors__inner::-webkit-scrollbar {
  display: none;
}

.page-anchors__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.5;
  transition:
    background var(--tBase),
    opacity var(--tBase);
}

.page-anchors__link.is-active {
  opacity: 1;
}

@media (hover: hover) {
  .page-anchors__link:hover {
    background: rgba(255, 255, 255, 0.12);
  }
}

/* End of Floating-pill Header */

/* Hero Banner */
.section__hero-banner {
  position: relative;
  height: 125vh;
  display: flex;
  align-items: flex-end;
}

.section__hero-banner__inner,
.section__hero-banner__overlay-desktop {
  width: 100%;
}

.section__hero-banner__inner {
  height: 100%;
}

.section__hero-banner__overlay {
  z-index: 2;
  position: relative;
  pointer-events: none;
  height: 100%;
  overflow: hidden;
}

.overlay_desktop__img-wrap  {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
}

.overlay_desktop__img-wrap  .overlay-img__desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay_desktop__img-wrap .overlay-img__mobile {
  max-width: 100%;
  object-fit: contain;
}

.section__hero-banner__overlay-mobile {
  display: none;
}

.section__hero-banner__text-btm {
  display: none;
}

@media(max-width:1024px) {
    .section__hero-banner {
      height: 110vh;
    }
  
    .special__section-hero-banner-content {
      height: 110vh;
    }
    
  
    .section__hero-banner .overlay_desktop__img-wrap  {
      display: none;
    }
  
    .section__hero-banner__overlay-mobile {
      display: block;
      width: 100%;
      overflow: hidden;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      img {
        height: 85%;
        width: auto;
        object-fit: contain;
      }
    }
}

@media(max-width: 749px) {

  .section__hero-banner__overlay-mobile {
    img {
      height: 82%;
    }
  }

  .section__hero-banner__inner {
    position: relative;
  }

  .section__hero-banner__text-btm {
    display: block;
    position: absolute;
    bottom: calc(10svh + 24px);
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 0 var(--margin);
    color: var(--white)
  }

  .special__section-hero-banner-content .banner__text-btm {
    display: none;
  }
}

/* End of Hero Banner */


/* Content for Hero banner - rendered in theme.liquid */
.special__section-hero-banner-content {
  isolation: isolate;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 125vh;
  overflow: hidden;
  background-color: rgb(220, 220, 220);
}

.special__section-hero-banner-content .baner__bg-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  .aspectholder {
    width: 100%;
    height: 100%;
  }
}

.special__section-hero-banner-content .banner__text-btm {
  color: var(--black);
}

.special__section-hero-banner-content .banner__text-wrap {
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 var(--margin);
  padding-top: 16px;
  padding-bottom: 24px;
}
/* End - Content for Hero banner - rendered in theme.liquid  */

/* Featured Collection */
.featured-collection {
  padding: 88px 0;
}

.featured-collection__intro {
  padding: 0 var(--margin) 56px;
}

.featured-collection__copy {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.featured-collection__label {
  margin-right: 16px;
}

.featured-collection__button-wrapper {
  display: flex;
  justify-content: center;
  padding: 48px var(--margin) 0;
}
/* End of Featured Collection */

/* Featured Collection Grid */
.featured-collection-grid {
  padding: 88px 0;
}

.featured-collection-grid__intro {
  padding: 0 var(--margin) 56px;
}

.featured-collection-grid__copy {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.featured-collection-grid__label {
  margin-right: 16px;
}

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

.featured-collection-grid__featured {
  grid-column: span 2;
  display: block;
}

.featured-collection-grid__featured .aspectholder {
  aspect-ratio: 1;
}

.featured-collection-grid__button-wrapper {
  display: flex;
  justify-content: center;
  padding: 56px var(--margin) 0;
}
/* End of Featured Collection Grid */

/* Product Card */
.pcard {
  position: relative;
  height: max-content;
}

/* temp disable product cards */

.pcard {
  pointer-events: none;
}

.pcard  .card__image:after {
  content: 'Coming Soon';
  font-size: 14px;
  color: white;
  line-height: 1;
  letter-spacing: 0.4px;
  font-weight: 400;
  background-color: rgba(83, 83, 83, 0.505);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
}


/* end temp disable product cards   */

.collection__grid .pcard--landscape {
  grid-column: span 2;
}

.collection__grid .pcard--landscape .aspectholder {
  aspect-ratio: 1.57;
}

.pcard__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.pcard__info {
  padding: 16px 16px 44px;
}

.pcard__title {
  margin: 0 0 4px;
  font-weight: 700;
}

.pcard .product-card__regular-price {
  margin: 0;
  font-weight: 700;
}

.pcard__view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: var(--white);
  color: var(--black);
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--tMed);
  pointer-events: none;
  white-space: nowrap;
}

@media (hover: hover) {
  .pcard:hover .pcard__view-btn {
    opacity: 1;
  }
}

@media (hover: hover) {
  .pcard:hover
    .card__image--has-secondary
    .product-card__secondary-media {
    opacity: 1;
    visibility: visible;
  }
}

.product-card__secondary-media {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--tBase),
    visibility var(--tBase);
}

.product-card__secondary-media .aspectholder {
  height: 100%;
  width: 100%;
}

.card__image {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}

.card__image .aspectholder {
  aspect-ratio: 0.75;
  overflow: hidden;
}

.card__image img {
  object-fit: contain;
}

.card__image-atc {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: calc(100% - 24px);
  display: flex;
}

.card__image-atc .button {
  width: 100%;
  margin: 0 auto;
  color: var(--white);
  max-width: 413px;
}

@media (hover: hover) {
  .card__image-atc .button:hover {
    background-color: var(--white);
  }
}

.card__image-badge {
  position: absolute;
  z-index: 9;
  right: 4px;
  top: 4px;
}

.card__image-badge span.caption {
  position: absolute;
  color: var(--white);
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.card__image-badge svg {
  height: 80px;
  width: 80px;
}
/* End of Product Card */

/* Facets Filters */
.filters-header {
  padding: var(--margin) var(--margin) 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters-close svg {
  width: 16px;
  height: 16px;
}

.filters-content {
  height: 100%;
}

.filters-wrapper {
  overflow: scroll;
  padding: 0 var(--margin);
}

.filters-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 116.5px);
  gap: 48px;
}

.active-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filters-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.filters-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 566px;
  height: 100vh;
  background: var(--black);
  z-index: 100;
  transform: translate(100%);
  transition: transform var(--tBase);
}

.filters-modal.active {
  transform: translateX(0);
}

.filters-modal.active ~ .filters-overlay {
  opacity: 1;
  pointer-events: auto;
}

.filter-options__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 20px 0 0;
}

.filter-options {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}

.filter-options.active {
  max-height: 1000px;
  opacity: 1;
}

.filter-options select {
  margin-top: 20px;
}

.filter-options label input[type='checkbox'] {
  display: none;
}

.filter-options .filter-checkbox-label {
  position: relative;
  padding-left: 20px;
  line-height: 13px;
  cursor: pointer;
}

.filter-options .filter-checkbox-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 1px solid var(--black);
}

.filter-options .filter-checkbox-label::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--yellow);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.filter-options .filter-checkbox-label.is-active::after {
  opacity: 1;
}

.filter-options .price-range {
  display: flex;
}

.filter-options .price-range label {
  display: flex;
  align-items: center;
  gap: 4px;
}

.filters-drawer {
  width: 100%;
}

.filter-group {
  padding: var(--margin) 0;
  border-bottom: var(--border-dark);
}

.filter-group:first-of-type {
  border-top: var(--border-dark);
}

.filter-group .icon-plus {
  width: 10px;
  height: 10px;
}

.filter-group .icon-minus {
  display: none;
  width: 11px;
  height: 11px;
}

.filter-group svg path {
  stroke: var(--black);
}

.filter-group .active .icon-minus {
  display: block;
}

.filter-group .active .icon-plus {
  display: none;
}

.filter-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
}

.filter-title.active svg .vertical-line {
  display: none;
}

.remove-filter svg {
  width: 10px;
  height: 10px;
}

.active-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filters-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filter__apply-button {
  gap: 4px;
  border-left: none;
}

.filter__apply-button,
.filters-actions .clear-all {
  border-radius: 0;
}

.filters-actions .clear-all {
  margin-bottom: 40px;
  width: max-content;
}

/* End of Facets Filters */

/* Multicolumn */
.multicolumn {
  padding: 88px 0;
  background-color: var(--black);
}

.multicolumn__intro {
  padding: 0 var(--margin) 24px;
}

.multicolumn__label {
  margin-right: 16px;
}

.multicolumn__items {
  display: grid;
  padding: 0 var(--margin);
  margin: 0 auto;
}

.multicolumn__items .swiper-wrapper {
  display: contents;
}

.multicolumn__items--1 {
  grid-template-columns: 1fr;
  max-width: 330px;
}

.multicolumn__items--2 {
  grid-template-columns: 1fr 1fr;
  max-width: 660px;
}

.multicolumn__items--3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 990px;
}

.multicolumn__item {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

a.multicolumn__item {
  transition: opacity var(--tMed);
}

a.multicolumn__item:hover {
  opacity: 0.85;
}

.multicolumn__item-media {
  background-color: var(--white);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multicolumn__item-media .aspectholder {
  aspect-ratio: 0.65;
  width: 100%;
}

.multicolumn__item-media .aspectholder > * {
  object-fit: contain;
}

.multicolumn__item-title {
  margin: 20px 16px 0;
  max-width: 298px;
}

/* End of Multicolumn */

/* Featured Content */
.featured-content {
  padding: 60px var(--margin);
}

.featured-content--margin-top {
  margin-top: 105px;
}

.featured-content__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.featured-content__items .article-card:nth-child(odd),
.featured-content__items .pcard:nth-child(odd),
.featured-content__items .collection-card:nth-child(odd) {
  grid-column: 2 / span 4;
}

.featured-content__items .article-card:nth-child(even),
.featured-content__items .pcard:nth-child(even),
.featured-content__items .collection-card:nth-child(even) {
  grid-column: 8 / span 4;
  margin-top: 50%;
}
/* End of Featured Content */

/* Collection Card */
.collection-card {
  position: relative;
}

.collection-card__image {
  position: relative;
  overflow: hidden;
}

.collection-card__image .aspectholder {
  aspect-ratio: 0.8;
}

.collection-card__info {
  text-align: center;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.collection-card__links {
  display: flex;
  gap: 16px;
}
/* End of Collection Card */

/* Article card */
.article-card__image .aspectholder {
  aspect-ratio: 0.8;
}

.article-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.article-card__title {
  text-align: center;
  margin-top: 12px;
}
/* End of Article card */

/* Image Block */
.image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.image-block.aspectholder {
  aspect-ratio: 0.83;
  max-height: calc(100vh - var(--headerHeight));
}
/* End of Image Block */

/* Image and Text */
.image-and-text {
  margin-bottom: 140px;
}

.image-and-text__container {
  display: grid;
  grid-template-columns: var(--coreGrid);
  position: relative;
  overflow: hidden;
  padding: 0 var(--margin);
}

/* Image right (default): move content to col 1 */
.image-and-text__container--image_right
  .image-and-text__content-wrapper {
  order: -1;
}

/* Image left: image fills the larger col */

.image-and-text__image-wrapper {
  width: 100%;
  min-width: 0;
  grid-column: span 10;
}

.image-and-text__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-and-text__image-wrapper .aspectholder {
  aspect-ratio: 0.77;
  width: 100%;
  max-height: calc(100vh - 190px);
}

.image-and-text__content-wrapper {
  min-width: 0;
  display: flex;
  flex-direction: column;
  grid-column: span 14;
}

.image-and-text__content-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.image-and-text__subheading {
  display: block;
  margin: 0 var(--margin) 40px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.image-and-text__title {
  max-width: 534px;
}

.image-and-text__body {
  max-width: 340px;
  margin-bottom: 0;
}
/* End of Image and Text */

/* Collection page */
.collection {
  padding: 140px var(--margin);
}

.collection__content-wrapper {
  display: flex;
  flex-direction: column;
  border-bottom: var(--border-dark);
  padding-bottom: 56px;
  margin-bottom: 20px;
}

.collection__body {
  max-width: 534px;
  margin-top: 32px;
}

.collection__filter {
  display: flex;
  justify-content: space-between;
  padding: 0 0 80px;
}

.collection__filter-number {
  flex: 1;
}

.collection__filter-collections {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.collection__filter-link,
a.collection__filter-link {
  color: var(--grey);
  transition: color var(--tBase);
}

@media (hover: hover) {
  .collection__filter-link:hover,
  a.collection__filter-link:hover {
    color: var(--black);
  }
}

.collection__filter-link.is-active,
a.collection__filter-link.is-active {
  color: var(--black);
}

.open-filters {
  transition: color var(--tBase);
}

@media (hover: hover) {
  .open-filters:hover {
    color: var(--grey);
  }
}

.collection__facets {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 140px 150px;
}

.collection__grid .card__image {
  height: calc((100vw - 340px) / 2.25);
}

.collection__grid .card__image > div,
.collection__grid .product-card__primary-media {
  height: 100%;
}

.collection__grid .card__image .aspectholder,
.collection__grid .pcard--landscape .aspectholder {
  aspect-ratio: auto;
  height: 100%;
}

.collection__featured-media {
  grid-column: span 2;
}

.collection__featured-media .aspectholder {
  aspect-ratio: 1.57;
}

.collection__featured-media img,
.collection__featured-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection__load-more-wrapper {
  padding-top: 60px;
}

.collection__load-more-wrapper .button {
  height: 48px;
  width: 131px;
  border-radius: 1px;
  border-color: var(--grey);
  color: var(--grey);
}

@media (hover: hover) {
  .collection__load-more-wrapper .button:hover {
    border-color: var(--black);
    color: var(--white);
  }
}
/* End of Collection page */

/* Search */
.search {
  padding-top: 100px;
  padding-bottom: 60px;
}

.search__nav {
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.search__input {
  margin-bottom: 12px;
  height: 100%;
}

.search__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 20px;
}

.search__load-more-wrapper {
  padding: 60px 0;
}

.search__load-more-wrapper .button {
  height: 48px;
  width: 131px;
  border-radius: 1px;
  border-color: var(--grey);
  color: var(--grey);
}

@media (hover: hover) {
  .search__load-more-wrapper .button:hover {
    border-color: var(--black);
    color: var(--white);
  }
}
/* End of Search */

/* FAQ */
.faq {
  margin: 20px var(--margin) 70px;
  border-top: 1px solid var(--line);
  padding: 20px 0 0;
  width: calc(100% - 40px);
}

.faq__title {
  margin-bottom: 48px;
}

.faq__wrapper {
  display: grid;
  grid-template-columns: var(--coreGrid);
  gap: 20px;
}

.faq__image {
  grid-column: span 6;
}

.faq__container {
  grid-column: 10 / span 15;
  width: 100%;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  text-align: left;
}

.faq__icon {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition:
    transform var(--tMed),
    opacity var(--tMed);
}

.faq__icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.faq__icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.faq__item.is-open .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--tMed);
  max-width: 534px;
}

.faq__item.is-open .faq__body {
  grid-template-rows: 1fr;
}

.faq__body-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity var(--tMed),
    transform var(--tMed) 60ms;
}

.faq__item.is-open .faq__body-inner {
  padding-bottom: 20px;
  opacity: 1;
  transform: none;
}

.faq a {
  text-decoration: underline;
}

.faq__button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

/* Links  */
.faq-links-section {
  position: sticky;
  top: 71px;
  z-index: 1;
}

.faq-links {
  background-color: var(--white);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 16px;
  padding-top: 20px;
}

.faq-links__link {
  background-color: var(--white);
  padding: 10px 12px;
  border-radius: 12px;
  transition: color var(--tBase);
}

.faq-links__link.active {
  color: var(--black);
}
/* End of FAQ */

/* ============================================================
   PRODUCT (shared — used by PDP layout)
   Loaded globally. Page-specific styles live in:
   - assets/product.css       (pdp- classes)
   ============================================================ */

.variant-pill {
  background: transparent;
  border: 1px solid var(--yellow);
  border-radius: 50px;
  padding: 11px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    background-color var(--tBase),
    border-color var(--tBase),
    color var(--tBase);
}

.variant-pill.active {
  background-color: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.variant-pill.is-out-of-stock {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
}

@media (hover: hover) {
  .variant-pill:not(.active):not(.is-out-of-stock):hover {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
  }
}

/* ---- PAGE WRAPPER ---- */
.product-section {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

/* Schema container — zero out default section padding */
.pdp-product-container {
  padding-top: 0 !important;
}

/* ---- HERO ---- */
.product-hero {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: calc(100vh - 60px);
  overflow: hidden;
}

.product-hero__carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-hero__carousel .swiper-slide {
  overflow: hidden;
}

.product-hero__carousel .aspectholder {
  width: 100%;
  height: 100%;
}

.product-hero__carousel .aspectholder img,
.product-hero__carousel .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title + price overlay — bottom left of hero */
.product-hero__info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--margin);
  z-index: 2;
}

.product-hero__title {
  margin-bottom: 16px;
}

/* Pagination dots */
.product-hero .product-hero__pagination {
  position: absolute;
  bottom: 20px;
  right: var(--margin);
  display: flex;
  gap: 6px;
  z-index: 2;
  justify-content: center;
  align-items: center;
}

.product-hero__dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--whiet);
  border-radius: 0;
  background: transparent;
  opacity: 0.4;
  transition: opacity var(--tBase);
}

.product-hero__dot--active {
  opacity: 1;
  background: var(--whiet);
}

/* ---- BOTTOM BAR (tabs + CTA) ---- */
.product-bottom-bar {
  width: 100%;
  background: var(--whiet);
  display: flex;
  align-items: stretch;
  min-height: 60px;
  position: sticky;
  top: var(--headerHeight);
  z-index: 5;
}

.product-bottom-bar__tabs {
  display: flex;
  align-items: center;
  width: 50%;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--margin);
  border-top: var(--border-dark);
  border-bottom: var(--border-dark);
}

.product-bottom-bar__tab {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  opacity: 0.4;
  transition: opacity var(--tShort);
  white-space: nowrap;
  text-decoration: none;
}

.product-bottom-bar__tab.active {
  opacity: 1;
}

@media (hover: hover) {
  .product-bottom-bar__tab:hover {
    opacity: 1;
  }
}

/* ---- INFO BLOCK (two-column layout below hero) ---- */
.product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.product-info--full-width {
  grid-template-columns: 1fr;
}

.product-info__left {
  padding: 0 var(--margin) 80px;
}

.product-info__right {
  position: relative;
}

.product-info__section {
  scroll-margin-top: calc(var(--headerHeight, 68px) + 60px);
  border-bottom: var(--border-dark);
}

.product-info__section:last-of-type {
  border-bottom: 0;
}

/* Description section gets extra top/bottom breathing room */
.product-info__section:first-child {
  padding: 56px 0;
}

.product-info__description {
  max-width: 354px;
}

/* Spec images */
.product-info__spec-block {
  margin-bottom: 32px;
  padding-top: 20px;
}

.product-info__spec-label {
  display: block;
  margin-bottom: 12px;
}

.product-info__spec-block .aspectholder {
  margin: 40px auto;
}

.product-info__spec-block .aspectholder img {
  height: auto;
  object-fit: contain;
}

/* Sticky right-column image */
.product-info__right .aspectholder {
  position: sticky;
  top: 128px;
  width: 100%;
  height: calc(100vh - 128px);
  object-fit: cover;
}

/* ---- ACCORDION ---- */
.product-info__accordion-item {
  border-bottom: var(--border-dark);
}

.product-info__accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
}

.product-info__accordion-icon {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.product-info__accordion-icon::before,
.product-info__accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition:
    transform var(--tMed),
    opacity var(--tMed);
}

.product-info__accordion-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.product-info__accordion-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.product-info__accordion-item.is-open
  .product-info__accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.product-info__accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--tMed);
}

.product-info__accordion-item.is-open .product-info__accordion-body {
  grid-template-rows: 1fr;
}

.product-info__accordion-body-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity var(--tMed),
    transform var(--tMed) 60ms;
}

.product-info__accordion-item.is-open
  .product-info__accordion-body-inner {
  padding-bottom: 24px;
  opacity: 1;
  transform: none;
}

.product-info__accordion-btn {
  display: inline-block;
  margin-top: 16px;
}

.product-info__accordion-pdfs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.product-info__accordion-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-info__accordion-pdf::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
/* End of Product (shared) */

/* Product Recommendations */
.product-recommendations {
  padding: 140px var(--margin);
}

.product-recommendations__title {
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.product-recommendations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-recommendations__card {
  position: relative;
}
/* Recommendation swiper slide widths (slidesPerView: auto) */
.product-recommendations .swiper-slide {
  width: calc(33.333% - 100px);
}

.product-recommendations .swiper-slide--landscape {
  width: calc(66.666% - 50px);
}

.product-recommendations .swiper-slide .card__image {
  height: calc((100vw - 340px) / 2.25);
}

.product-recommendations .swiper-slide .card__image > div,
.product-recommendations .swiper-slide .product-card__primary-media {
  height: 100%;
}

.product-recommendations .swiper-slide .card__image .aspectholder {
  aspect-ratio: auto;
  height: 100%;
}
/* End of Product Recommendations */

/* Breadcrumbs */
.breadcrumbs {
  padding: 120px var(--margin);
  background-color: var(--offwhite);
}

.breadcrumbs__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.breadcrumbs__link,
a.breadcrumbs__link,
a:link.breadcrumbs__link {
  transition: color var(--tBase);
}

@media (hover: hover) {
  .breadcrumbs__link:hover,
  a.breadcrumbs__link:hover,
  a:link.breadcrumbs__link:hover {
    color: var(--black);
  }
}
/* End of Breadcrumbs */

/* Blog */
.blog__header {
  padding: 120px var(--margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.blog__tags {
  text-align: center;
  margin-bottom: 20px;
}

.blog__tags-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0 var(--margin);
  margin: 0;
}

.blog__tags a {
  opacity: 0.6;
}

.blog__tags a.is-active {
  opacity: 1;
}

.blog__articles {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 120px 20px;
  padding: 0 var(--margin) 120px;
}

.blog__articles .article-card:nth-child(1),
.blog__articles .article-card:nth-child(2) {
  grid-column: span 6;
}

.blog__articles .article-card {
  grid-column: span 4;
}

.blog__load-more-wrapper {
  padding: 0 0 120px var(--margin);
}

.blog__load-more-wrapper .button {
  height: 48px;
  width: 131px;
  border-radius: 1px;
  border-color: var(--grey);
  color: var(--grey);
}
/* End of Blog */

/* Article */
.article {
  padding-bottom: 60px;
}

.article__intro-wrapper {
  padding: 120px var(--margin);
  max-width: 726px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article__image {
  padding-bottom: 60px;
}

.article__image .aspectholder {
  aspect-ratio: 1.84;
  padding: 0 var(--margin);
}

.article-related {
  padding: 60px var(--margin);
}

.article-related__title {
  margin-bottom: 20px;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card__tags {
  display: flex;
  gap: 12px;
}

.article__content {
  max-width: 726px;
  margin: 0 auto;
  padding: 60px var(--margin);
}

.article__introduction {
  padding-bottom: 30px;
}

.block-container {
  padding: 30px 0;
}
/* End of Article */

/* Video block */
.video-block iframe {
  width: 100%;
  aspect-ratio: 1.8;
}

/* Product block */
.product-block {
  max-width: 50%;
  margin: 0 auto;
}

/* Richtext */
.richtext {
  padding: 70px var(--margin);
}

.richtext__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 534px;
}

.richtext__title {
  margin-bottom: 32px;
}
/* End of Richtext */

/* Image Block */
.image-block {
  position: relative;
}

.image-block .aspectholder {
  aspect-ratio: 0.88;
}

.image-block .landscape .aspectholder {
  aspect-ratio: 1.45;
}

.image-block--two-images .aspectholder {
  aspect-ratio: 0.84;
}

.image-block--two-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* End of Image Block */

/* Contact */
.contact {
  margin: 0 var(--margin) 70px;
  border-top: 1px solid var(--line);
  padding: 20px 0 0;
  width: calc(100% - 40px);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: var(--coreGrid);
  gap: 20px;
}

.contact__content {
  grid-column: span 9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact__image {
  grid-column: span 15;
}

.contact__image .aspectholder {
  aspect-ratio: 1.2;
  max-height: calc(100vh - 187px);
  width: 100%;
}

.contact__label {
  margin-bottom: 48px;
}

.contact__heading {
  margin-bottom: 60px;
  max-width: 534px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.contact__detail-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px;
  padding: 10px 0;
}

.contact__detail-label {
  opacity: 0.4;
}

.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact_fields {
  display: grid;
  margin-bottom: 24px;
}

.contact_field {
  display: grid;
  padding: 20px 0 14px;
  border-bottom: 1px solid var(--line);
}

.contact_field label {
  opacity: 0.6;
}

.contact_field input,
.contact_field textarea {
  background: none;
  border: none;
  outline: none;
  font-family: var(--baseFontFamily);
  font-size: var(--baseFontSize);
}

.contact_field textarea {
  resize: none;
}

/* End of Contact */

/* Accounts  */
.form-container {
  padding: 0 0 40px;
  max-width: 426px;
  margin: 0 auto;
  min-height: calc(100vh - 75px);
  min-height: calc((var(--vh, 1vh) * 100) - 75px);
  display: flex;
  align-items: center;
}

.form-container .form_wrapper {
  width: 100%;
  padding: 0 16px;
}

.form__primary-button {
  margin: 0 auto;
}

.login__form,
.forgot-password-form {
  display: none;
}

.login__form.active,
.forgot-password-form.active {
  display: block;
}

.form__intro-wrapper {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.form_fields {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.form_field {
  display: grid;
  gap: 24px;
}

.form_field input,
.form_field select {
  padding: 10px 0;
  border-bottom: 1px solid var(--black);
}

.form_field input::placeholder {
  opacity: 0.5;
}

.form_alternate_login {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.form_buttons {
  display: flex;
  justify-content: space-between;
  max-width: 448px;
}

.form_message {
  margin-bottom: var(--gutter);
}

.customer-account.container {
  padding-top: 120px;
  min-height: calc(100vh - 75px);
  min-height: calc((var(--vh, 1vh) * 100) - 75px);
}

.customer-account__title {
  text-align: center;
}

.customer-account__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--black);
  padding: 10px var(--gutter);
  position: fixed;
  top: 71px;
  z-index: 1;
  left: 0;
  width: 100%;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
}

.customer-account__button-wrapper {
  display: flex;
}

.account-section.hidden {
  display: none;
}

.account-nav-link.button {
  background-color: transparent;
  color: var(--white);
}

@media (hover: hover) {
  .account-nav-link.button:hover {
    background-color: var(--white);
    color: var(--black);
  }
}

.account-nav-link.button.active {
  background-color: var(--white);
  color: var(--black);
}

.account-section__dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 100px;
}

.account__orders-table {
  width: 100%;
  text-align: left;
  margin-top: 100px;
}

.address__meta-container {
  margin-top: 100px;
}

.account__orders-table tr {
  border-bottom: 1px solid var(--black);
}

.account__orders-table tr .caption {
  padding-bottom: 12px;
}

.account__orders-table tr td {
  padding: 12px 0;
}

.account-section__order-items {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.account-section__order-item {
  width: 25%;
}

.account-section__order-item .aspectholder img {
  border-radius: 12px;
}

.account-section__order-item,
.account__order-item .aspectholder,
.account__orders-item-image {
  border-radius: var(--borderRadius);
  background-color: var(--white-peach);
}

.account-section__title {
  margin-bottom: 20px;
}

.account-section__address {
  margin-bottom: 20px;
}

.account-section__date-fulfillment svg {
  width: 12px;
  margin: 0 4px 0 6px;
}

.account-section__button-wrapper {
  display: flex;
  justify-content: center;
}

.account-section__latest-order,
.account-section__default-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.account__order-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  margin-top: 52px;
  align-items: flex-start;
}

.account__order-details {
  grid-column: span 5;
}

.account__order-summary {
  grid-column: 8 / span 6;
}

.account__order-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--black);
  padding: 12px 0;
}

.reorder-button {
  margin-top: 20px;
}

.account__order-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--black);
  padding-bottom: var(--gutter);
  margin-bottom: var(--gutter);
}

.account__order-item img {
  border-radius: 12px;
}

.account__order-item-details {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.account__order-quantity {
  margin-top: var(--gutter);
}

.account__order-quantity span {
  margin-left: 4px;
}

.account__border-bottom {
  border-bottom: 1px solid var(--black);
  padding-bottom: 8px;
  margin-bottom: var(--gutter);
}

.account__order-bottom-level {
  padding-top: var(--gutter);
}

.account__order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account__orders-item {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 24px;
  background: var(--tertiary-color);
  border-radius: var(--borderRadius);
  padding: var(--gutter);
  margin-bottom: var(--gutter);
}

.account__orders-item-summary {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.account__orders-item-images {
  grid-column: 6 / span 5;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: var(--gutter);
}

.account__orders-item-image {
  width: 20%;
}

.address__edit-default,
.address__default-container,
.address__default,
.address__form-new {
  display: none;
}

.address__default.active,
.address__edit-default.active,
.address__default-container.active,
.address__form-new.active {
  display: block;
}

.address__default-title {
  margin: 20px 0 8px;
}

.address__meta-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  text-align: center;
}

.customer__meta-left {
  grid-column: span 5;
}

.customer__meta-right {
  grid-column: 7 / span 5;
}

.address__addresses .address__form {
  border-bottom: 1px solid var(--black);
  padding-bottom: var(--gutter);
}

.address__new-address-wrapper {
  margin-top: 20px;
}

.address__new-address-button {
  margin-bottom: 20px;
}
/* End of Accounts */

/* Announcement Bar */
.announcement-bar-visible .header {
  top: 46px;
}

#shopify-section-announcement-bar {
  position: relative;
  z-index: 11;
}

.announcement-bar {
  background-color: var(--black);
  color: var(--black);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 0 var(--margin);
  transition:
    background-color var(--tBase),
    color var(--tBase),
    transform var(--tBase);
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.announcement-bar__inner svg {
  width: 12px;
}

.announcement-bar.hidden-by-default {
  display: none;
}

.announcement-bar__link {
  flex: 1;
}

.announcement-bar__currency-switcher {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.announcement-bar__currency-switcher .currency-switcher select {
  color: var(--black);
  transition: color var(--tBase);
}

.announcement-bar__currency-switcher .currency-switcher svg path {
  stroke: var(--white);
  transition: stroke var(--tBase);
}

.announcement-bar__center {
  flex: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 500px;

  /* fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 40px,
    black calc(100% - 40px),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 40px,
    black calc(100% - 40px),
    transparent
  );
}

.announcement-swiper {
  width: 100%;
  text-align: center;
}
/* End of Announcement Bar */

/* Geo Location Modal */
.geo-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.geo-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.geo-modal.active {
  display: grid;
  place-items: center;
}

.geo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.geo-modal__content {
  position: relative;
  background: var(--white);
  padding: 60px 16px;
  max-width: 478px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.geo-modal__button {
  margin-top: 12px;
}

.geo-modal__selector {
  border: 1px solid var(--black);
  padding: 14px 16px;
}

.geo-modal__selector .currency-switcher {
  justify-content: center;
}
/* End of Geo Location Modal */

/* Password page */
.main-password {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}
/* End of Password page */

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 70px;
}

.hero-slider__wrapper {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100vh;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
}

.hero-slide__image,
.hero-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__media-mobile {
  display: none;
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--black);
  z-index: 2;
}

.hero-slider__gradient {
  position: absolute;
  height: 50%;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-slide__richtext {
  max-width: 577px;
}

.hero-slide__richtext * {
  text-transform: uppercase;
}

.hero-slide__richtext em {
  text-transform: capitalize;
  font-style: italic;
  font-family: var(--headingFontFamily);
  /* font-weight: 600; */
}

/* PROGRESS */
.hero-slider__progress {
  position: absolute;
  bottom: 80px;
  left: var(--margin);
  right: var(--margin);
  display: flex;
  z-index: 1;
}

.progress-bar {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.progress-bar__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--black);
}

/* NAV */
.hero-slider__nav {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 1;
}

.hero__slider__nav-label {
  position: absolute;
  left: var(--margin);
  color: var(--black);
}

.hero-slider__btn {
  background: none;
  border: none;
  color: var(--black);
  opacity: 0.5;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero-slider__btn.is-active {
  opacity: 1;
}
/* End of Hero Slider */

/* Product Hotspot */
.hotspot-section {
  position: relative;
  max-height: 100vh;
  margin: 70px 0;
}

.hotspot-section__media {
  position: relative;
}

.hotspot-section__media img {
  width: 100%;
  max-height: 100vh;
  display: block;
}

/* TEXT */
.hotspot-section__text {
  position: absolute;
  top: 56px;
  left: var(--margin);
  color: var(--white);
  max-width: 354px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* HOTSPOTS */
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  border: 1px solid var(--white);
  color: var(--white);
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color var(--tBase),
    border-color var(--tBase);
}

@media (hover: hover) {
  .hotspot:hover {
    background-color: var(--yellow);
    border-color: var(--yellow);
  }
}

.hotspot.active {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.hotspot.text-colour--dark {
  border-color: var(--black);
  color: var(--black);
}

@media (hover: hover) {
  .hotspot.text-colour--dark:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--black);
  }
}

.hotspot__label {
  color: var(--white);
  transition: color var(--tBase);
}

.text-colour--dark .hotspot__label {
  color: var(--black);
}

@media (hover: hover) {
  .hotspot.text-colour--dark:hover .hotspot__label {
    color: var(--white);
  }
}

/* CARD */
.hotspot-card {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: var(--margin);
  right: var(--margin);
  transition:
    opacity var(--tBase),
    visibility var(--tBase);
}

.hotspot-card.active {
  opacity: 1;
  visibility: visible;
}

.hotspot-card__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hotspot-card__close svg {
  width: 16px;
  height: 16px;
}

.hotspot-card__inner {
  display: grid;
  grid-template-columns: auto 194px;
  background: var(--black);
  padding: 10px;
  gap: 12px;
  width: 440px;
}

.hotspot-card__image .aspectholder {
  aspect-ratio: 0.8;
}

.hotspot-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotspot-card__info-top {
  display: grid;
  gap: 16px;
}

.hotspot-card__number {
  border: var(--border-dark);
  padding: 4px;
  margin-bottom: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* End of Product Hotspot */

/* Featured product */
.featured-product {
  padding: 70px var(--margin);
}

.featured-product__inner {
  display: grid;
  grid-template-columns: var(--coreGrid);
  gap: var(--margin);
  align-items: center;
}

/* LEFT COLUMN */
.featured-product__content,
.featured-product__image-large {
  grid-column: span 12;
}

.featured-product__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: 100%;
}

.featured-product__image-large,
.featured-product__image-large .aspectholder {
  height: 100%;
  aspect-ratio: 0.85;
}

.featured-product__image-small {
  margin-bottom: 200px;
  grid-column: 8 / span 5;
}

.featured-product__image-small .aspectholder {
  aspect-ratio: 0.75;
}

.featured-product__image-small img {
  width: 100%;
  display: block;
}

/* TEXT */
.featured-product__text {
  grid-column: span 12;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-product__title {
  margin-bottom: 22px;
}

.featured-product__body {
  margin-bottom: 42px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 534px;
}
/* End of Featured product */

/* Scrolling Cards */
.scrolling-cards {
  --gap: 24px;
  --card-h: 520px;
  padding: 88px 0 80px;
  overflow: hidden;
}

.scrolling-cards--black {
  background-color: var(--black);
  color: var(--white);
}

.scrolling-cards--yellow {
  background-color: var(--yellow);
  color: var(--black);
}

/* Books Carousel */
.books-carousel {
  --gap: 24px;
  padding: 44px 0 88px;
  overflow: hidden;
}

.books-carousel--black {
  background-color: var(--black);
  color: var(--white);
}

.books-carousel--yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.books-carousel--yellow .books-carousel__author {
  color: rgba(17, 17, 17, 0.5);
}

.books-carousel__intro {
  padding: 0 var(--margin) 24px;
}

.books-carousel__copy p {
  display: inline;
  margin: 0;
}

.books-carousel__label {
  display: inline-block;
  margin-right: 24px;
  padding-top: 18px;
  vertical-align: top;
}

.books-carousel__viewport {
  position: relative;
  padding-left: var(--margin);
}

.books-carousel__swiper.swiper {
  overflow: visible;
}

.books-carousel__slide {
  height: auto;
}

.books-carousel__book {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

a.books-carousel__book {
  transition: opacity var(--tMed);
}

a.books-carousel__book:hover {
  opacity: 0.85;
}

.books-carousel__media {
  aspect-ratio: 271 / 368;
  height: 100%;
  background-color: var(--white);
  overflow: hidden;
  --vert-pad: 33px;
  padding-top: var(--vert-pad);
  padding-bottom: var(--vert-pad);
  display: flex;
  flex-direction: column;
}

@media(max-width: 789px){
  .books-carousel__media {
    --vert-pad: 16px;
  }
}

.books-carousel__media .aspectholder {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
}

.books-carousel__media img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.books-carousel__meta {
  margin: 0;
  padding: 12px 16px 0;
}

.books-carousel__title {
  display: inline;
}

.books-carousel__author {
  color: rgba(255, 255, 255, 0.5) !important;
}

.books-carousel__author::before {
  content: ' ';
}

.books-carousel__nav {
  position: absolute;
  top: 38%;
  right: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  border-radius: 22px;
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity var(--tMed);
}

.books-carousel__nav svg {
  width: 16px;
  height: 20px;
}

.books-carousel__nav svg .arrow {
  stroke: currentColor;
}

.books-carousel__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.scrolling-cards__intro {
  padding: 0 var(--margin) 24px;
}

.scrolling-cards__copy p {
  display: inline;
  margin: 0;
}

.scrolling-cards__label {
  margin-right: 24px;
}

.scrolling-cards__viewport {
  overflow: hidden;
  width: 100%;
  padding-left: var(--margin);
}

.scrolling-cards__track {
  display: flex;
  width: max-content;
  animation: scrolling-cards-scroll var(--duration, 60s) linear
    infinite;
  animation-duration: min(
    var(--duration, 60s),
    calc(var(--duration, 60s) * 1440px / 100vw)
  );
  will-change: transform;
}

.scrolling-cards__group {
  display: flex;
  flex-shrink: 0;
}

@keyframes scrolling-cards-scroll {
  to {
    transform: translateX(calc(-100% / var(--passes, 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .scrolling-cards__track {
    animation: none;
  }
  .scrolling-cards__viewport {
    overflow-x: auto;
  }
}

/* CARDS */
.scrolling-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: calc(var(--card-h, 480px) * var(--card-ratio, 2/3));
  color: inherit;
  text-decoration: none;
}

a.scrolling-card {
  transition: opacity var(--tMed);
}

a.scrolling-card:hover {
  opacity: 0.85;
}

.scrolling-card--size-small {
  --card-h: 407px;
}
.scrolling-card--size-medium {
  --card-h: 428px;
}
.scrolling-card--size-large {
  --card-h: 479px;
}
.scrolling-card--size-xlarge {
  --card-h: 510px;
}

.scrolling-card--ratio-portrait {
  --card-ratio: 0.86;
}
.scrolling-card--ratio-square {
  --card-ratio: 1.05;
}
.scrolling-card--ratio-landscape {
  --card-ratio: 1.28;
}
.scrolling-card--ratio-original {
  --card-ratio: 2 / 3;
}

.scrolling-card__media {
  height: var(--card-h);
  aspect-ratio: var(--card-ratio);
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.08);
}

.scrolling-card--ratio-original .scrolling-card__media {
  object-fit: contain;
}

.scrolling-card__media .aspectholder,
.scrolling-card__media img {
  width: 100%;
  height: 100%;
  display: block;
}

.scrolling-card__media img {
  object-fit: cover;
}

.scrolling-card--ratio-original .scrolling-card__media img {
  object-fit: contain;
}7

.scrolling-card__subtitle {
  margin: 12px 16px 4px;
}

.scrolling-card__title {
  margin: 0 16px;
  max-width: 478px;
}

/* End of Scrolling Cards */

/* Scrolling Cards Swiper */
.cards-swiper {
  --cards-swiper-gap: 24px;
  --cards-swiper-slide-h: 520px;
  padding: 88px 0 80px;
  overflow: hidden;
}

.cards-swiper--black {
  background-color: var(--black);
  color: var(--white);
}

.cards-swiper--yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.cards-swiper__intro {
  padding: 0 var(--margin) 24px;
}

.cards-swiper__copy p {
  display: inline;
  margin: 0;
}

.cards-swiper__slider.swiper .swiper-wrapper {
  /* This ensures the animation speed is constant */
  transition-timing-function: linear !important;
  will-change: transform;
}


.cards-swiper__label {
  display: inline-block;
  margin-right: 24px;
  vertical-align: top;
}

.cards-swiper__viewport {
  overflow: hidden;
  width: 100%;
  padding-left: var(--margin);
}

.cards-swiper__slider.swiper {
  overflow: visible;
}

.card-swiper-slide a {
    width: 100%;
    max-width: 100%;
  
}

.card-swiper-slide.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-swiper {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

a.card-swiper {
  transition: opacity var(--tMed);
}

@media (hover: hover) and (pointer: fine) {
  a.card-swiper:hover {
    opacity: 0.85;
  }
}

.card-swiper__subtitle {
  margin: 12px 16px 4px;
}

.card-swiper__title {
  margin: 0 16px;
  max-width: 478px;
}


/* End of Scrolling Cards Swiper */

/* Testimonials */
.testimonials {
  padding: 88px 0;
  overflow: hidden;
}

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

.testimonials--yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.testimonials--blue {
  background-color: var(--blue);
  color: var(--black);
}

.testimonials__intro {
  padding: 0 var(--margin) 56px;
}

.testimonials__copy {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.testimonials__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  vertical-align: top;
  margin-right: 16px;
}

.testimonials__carousel.swiper {
  overflow: visible;
}

.testimonials__slide {
  box-sizing: border-box;
  width: 62%;
  max-width: 1100px;
}

.testimonials__quote {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.testimonials__text::before {
  content: '\201C';
}

.testimonials__text::after {
  content: '\201D';
}

.testimonials__author {
  margin-left: 24px;
}
/* End of Testimonials */
