/** Shopify CDN: Minification failed

Line 505:1 Unexpected "}"
Line 16608:0 Unexpected "}"

**/


/* CSS from snippet stylesheet tags */
.recipient-form {
	  display: block;
	  position: relative;
	
	  & .field__input {
	    margin-bottom: 1.5em;
	    width: 100%;
	
	    @media only screen and (max-width: 959px) {
	      margin-bottom: 0.6em;
	    }
	
	    &.recipient-form__message {
	      margin-bottom: calc(var(--gutter) / 2);
	      height: 150px;
	    }
	  }
	
	  .recipient-form__checkbox-wrapper {
	    display: flex;
	    align-items: center;
	    margin-bottom: 2em;
	
	    @media only screen and (max-width: 959px) {
	      margin-bottom: 1.5em;
	    }
	  }
	
	  & .recipient-fields {
	    display: none;
	  }
	}
product-recommendations[data-intent='complementary'] {
	  display: block;
	  overflow: hidden;

	  & .product-recommendations__title {
	    margin-top: 40px;
	    width: 100%;
	    max-width: 72%;
	    margin-bottom: 20px;
	    text-align: left;
	  }

	  & .float-grid {
	    margin-left: 0;
	  }

	  & .grid__item,
	  & .grid-item {
	    margin-bottom: 1rem;
	    padding-left: 0;
	    padding-bottom: 8px;

	    @media only screen and (max-width: 768px) {
	      margin-left: 0 !important;
	      flex: 0 0 100%;
	    }
	  }

	  & .grid-product__image-wrap {
	    min-width: 90px;
	  }

	  & .grid__image-ratio {
	    background-color: transparent;
	  }

	  & img.image-style--circle {
	    border-radius: 50%;
	    object-fit: cover;
	    width: 85%;
	    height: 85%;
	    position: absolute;
	    top: 0;
	    right: 0;
	    left: 0;
	    bottom: 0;
	    margin: auto;
	  }

	  & .grid__item-image-wrapper .grid-product__link {
	    width: 100%;
	    display: block;
	  }

	  & .grid__item-image-wrapper,
	  & .grid-product__link,
	  & .grid-item__link {
	    display: flex;
	    align-items: center;
			justify-content: center;

	    & .grid-product__image-mask,
	    & .grid-product__image-wrap,
	    & .image-wrap {
	      width: 112px;
	      margin: 0;
	    }

	    & .grid-product__meta {
	      margin-left: 48px;
	      width: calc(100% - 112px);
	      text-align: left;
	    }
	  }

	  & .grid-product__actions {
	    top: 0;
	    right: 0;
	  }

	  & .flickity-viewport {
	    width: 100%;
	  }

	  & .flickity-previous {
	    left: auto;
	    top: -32px;
	    right: 50px;

	    @media only screen and (max-width: 768px) {
	      right: 45px;
	    }
	  }

	  & .flickity-next {
	    right: 0;
	    top: -32px;
	  }

	  & .flickity-page-dots {
	    top: -41px;
	    right: 0;
	    width: auto;
	    bottom: auto;
	  }

	  & .flickity-button:disabled {
	    display: block;
	    opacity: 0.35;
	  }
	}

	.product-recommendations__slide {
	  display: block;
	  overflow: hidden;
	  width: 100%;
	  margin: 0;
	  padding: 0;

	  @media only screen and (max-width: 768px) {
	    display: flex;
	    flex-wrap: wrap;
	  }

	  & .grid__item:last-child {
	    margin-bottom: 0;
	    padding-bottom: 0;
	  }
	}

	.product-recommendations--title-missing {
	  margin-top: 80px;
	}

	product-recommendations[data-intent='complementary'] {
	  & .grid-product__actions {
	    top: 0;
	    right: 5px;

	    @media only screen and (min-width: 769px) {
	      & .btn--icon {
	        padding: 10px;
	      }

	      & .element-icon {
	        width: 25px;
	        height: 25px;
	      }
	    }
	  }

	  & .grid-item {
	    padding: 8px;
	  }
	}

	[data-grid-style*='grey'] product-recommendations[data-intent='complementary'],
	[data-grid-style*='grey-round'] product-recommendations[data-intent='complementary'],
	[data-grid-style*='white'] product-recommendations[data-intent='complementary'],
	[data-grid-style*='white-round'] product-recommendations[data-intent='complementary'] {
	  & .grid-item__content {
	    padding: 0 8px;
	  }
	}

	[data-grid-style*='gridlines'] product-recommendations[data-intent='complementary'] {
	  @media only screen and (max-width: 768px) {
	    & .grid-product__actions {
	      top: -6px;
	      right: -6px;
	    }
	  }

	  & .product-recommendations__slide .grid-product:last-child:after {
	    border-top: 0;
	  }

	  & .product-recommendations__slide .grid-product:first-child:after {
	    border-top: solid var(--grid-thickness) color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  }

	  & .grid-product {
	    padding: 8px;
	    margin-bottom: 0;
	  }

	  & .grid-product:after {
	    padding: 0 8px;
	    box-shadow: none;
	    border: solid var(--grid-thickness) color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  }
	}
/*Inventory indicator*/
	@keyframes inventory-pulse {
	  0% {
	    opacity: 0.5;
	  }
	  100% {
	    transform: scale(2.5);
	    opacity: 0;
	  }
	}
	
	.element-icon--inventory {
	  &:before,
	  &:after {
	    width: 9px;
	    height: 9px;
	    background: #54c63a;
	    border-radius: 9px;
	    position: absolute;
	    left: 0;
	    top: 0;
	    content: '';
	    margin: 8px;
	  }
	
	  &:before {
	    animation: inventory-pulse 2s linear infinite;
	  }
	
	  .inventory--low & {
	    &:before,
	    &:after {
	      background: #f4af29;
	    }
	  }
	}
	
	.product-inventory__points {
	  list-style: none;
	  padding: 0;
	  margin: 0;
	
	  .quick-add-modal & {
	    display: none;
	  }
	}
	
	.product-inventory__point {
	  display: block;
	
	  & .element-icon {
	    position: relative;
	    width: 25px;
	    height: 25px;
	    margin-right: 10px;
	
	    [dir='rtl'] & {
	      margin-right: 0;
	      margin-left: 10px;
	    }
	  }
	}
.block-price__regular {
    [data-on-sale] & {
      display: none;
    }
  }

  .block-price__save {
    display: none;

    [data-on-sale] & {
      display: block;
    }
  }

  .block-price__sale {
    display: none;

    [data-on-sale] & {
      display: flex;
      gap: 10px;
    }
  }

  .block-price__unit-price {
    display: none;

    [data-unit-price] & {
      display: block;
    }
  }
  /* --- Make product price dark blue --- */
.block-price__regular .price,
.block-price__sale .price,
.block-price__unit-price .price,
.block-price__save {
  color: #0066FF !important; /* Dark Blue */
}
.sales-points {
	  list-style: none;
	  padding: 0;
	  margin: 0;
	
	  .quick-add-modal & {
	    display: none;
	  }
	}
	
	.sales-point {
	  display: block;
	  margin-bottom: 10px;
	
	  &:last-child {
	    margin-bottom: 0;
	  }
	
	  & .element-icon {
	    position: relative;
	    width: 25px;
	    height: 25px;
	    margin-right: 10px;
	
	    [dir='rtl'] & {
	      margin-right: 0;
	      margin-left: 10px;
	    }
	  }
	}
	
	.product-block--sales-point + .product-block--sales-point {
	  margin-top: calc(-1 * var(--layout-stack-gap));
	}
variant-sku {
    opacity: 0.65;
  }
.block-variant-picker {
  --element-button-padding-inline: var(--size-4);
  --element-button-padding-block: var(--size-2);

  display: grid;
  gap: 25px;
}

.block-variant-picker[data-picker-type='dropdown'] {
  display: block;
  gap: normal;
}

.variant-input__select {
  min-width: 100px;
}

.variant-input {
  display: inline-block;

  /*Firefox bug fix*/
  select & {
    display: block;
  }
}

.variant-wrapper + .variant-wrapper {
  margin-top: var(--size-6);
}

.no-js .variant-wrapper {
  display: none;
}

.variant-wrapper--dropdown {
  display: inline-block;
  max-width: 100%;
  margin-right: calc(var(--gutter) / 2);
  margin-bottom: 0;
}

.variant-dropdown-wrap {
  border: 0;
  padding: 0;
  position: relative;
}

.variant-dropdown-wrap label {
  font: inherit;
  position: relative;
  display: inline-block;
  font-weight: normal; /* not bold */
  font-size: 18px; /* increased font size */
  padding: 7px 15px 7px;
  margin: 0 8px 12px 0;
  background-color: var(--colorBody);
  box-shadow: 0 0 0 1px var(--colorBorder);
  border-radius: 1px;
  overflow: hidden;
}

.variant-dropdown__label,
.variant-dropdown__label[for] {
  display: block;
  margin-bottom: 10px;
  cursor: default;
  font-weight: normal; /* not bold */
  font-size: 18px; /* increased font size */
}

.variant__label-info {
  text-transform: none;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 18px; /* increased font size */
}

.variant__label {
font-weight: 700;    /* thick & bold */
  font-size: 18px;     /* same size as quantity label */
  color: black;         /* black text */

}

.variant-button-wrap {
  border: 0;
  padding: 0;
  position: relative;
}

.variant-button-wrap label {
  margin: 0 8px 12px 0;
  font-size: 18px; /* increased font size */
  font-weight: normal; /* not bold */
}

.variant-button-wrap .variant__label,
.variant-button-wrap .variant__label[for] {
  display: block;
  margin-bottom: 10px;
  cursor: default;
  font-size: 18px; /* increased font size */
  font-weight: normal; /* not bold */
}

	  .element-radio {
	    &:hover {
	      --element-swatch-shade-outer: 20%;
	    }

	    &:has(input[type='radio']:checked) {
	      /* Swatch tokens */
	      --element-swatch-shade-outer: 100%;
	    }

	    &:has(input[type='radio']:focus) {
	      /* Swatch tokens */
	      --element-swatch-shade-outer: 100%;
	      --element-swatch-shade-outer-selected: 100%;
	      /* --color-primary: var(--color-focus); */
	      --element-swatch-outline-width: 4px;
	    }

	    &:has(input[type='radio'][data-disabled]) {
	      /* Swatch tokens */
	      --element-swatch-line-disabled-width: max(var(--size-0-25), calc(var(--size-8) * 0.0625));
	      --element-swatch-color-disabled: linear-gradient(
	        to bottom right,
	        transparent calc(50% - var(--element-swatch-line-disabled-width)),
	        var(--color-secondary) calc(50% - var(--element-swatch-line-disabled-width))
	          calc(50% + var(--element-swatch-line-disabled-width)),
	        transparent calc(50% + var(--element-swatch-line-disabled-width))
	      );
	    }
	  }
	}
/* General cart item styles */
	.cart__item {
	  display: grid;
	  grid-template-areas:
	    'cartImage cartTitle .'
	    'cartImage cartQuantity cartPrice'
	    '. cartRemove cartPrice';
	  grid-template-columns: 150px auto auto;
	  grid-column-gap: 20px;
	  align-items: center;
	  margin-bottom: 20px;
	  padding-bottom: 20px;
	  border-bottom: 1px solid;
	  border-bottom-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));

	  /*Smaller image in drawer*/
	  .site-header__cart & {
	    grid-template-columns: 100px auto auto;
	    grid-column-gap: 10px;
	  }

	  @media only screen and (max-width: 959px) {
	    grid-template-areas:
	      'cartImage cartTitle cartTitle'
	      'cartImage cartQuantity cartPrice'
	      'cartImage cartRemove cartPrice';
	  }

	  &:last-of-type {
	    border-bottom: 0;
	  }
	}

	.cart__image {
	  grid-area: cartImage;
	  align-self: flex-start;

	  & a {
	    position: relative;
	    display: block;
	    width: 100%;
	    height: 100px;
	  }

	  & img {
	    position: absolute;
	    width: 100%;
	    height: 100%;
	    left: 0;
	    top: 0;
	    display: block;
	    object-fit: contain;
	  }
	}

	.cart__item-title {
	  grid-area: cartTitle;
	}

	.cart__item-quantity {
	  grid-area: cartQuantity;
	}

	.cart__item-remove {
	  grid-area: cartRemove;

	  & a {
	    display: inline-block;
	    margin-top: 10px;
	  }

	  /*Hide in drawer*/
	  .cart__drawer-form & {
	    display: none;
	  }
	}

	.cart__item-price {
	  grid-area: cartPrice;
	}

	.cart__item-name {
	  display: block;
	  font-size: calc(var(--element-text-font-size--body-md) + 1px);
	  margin-bottom: 8px;
	}

	.cart__item--variants {
	  font-size: calc(var(--element-text-font-size--body-md) - 2px);
	  margin-bottom: 10px;

	  & span {
	    font-weight: var(--element-text-font-weight--heading);
	  }
	}

	.cart__price {
	  display: block;

	  &:not(.cart__price--strikethrough) {
	    font-weight: var(--element-text-font-weight--heading);
	    font-size: calc(var(--element-text-font-size--body-md) + 2px);
	  }
	}

	.cart__price--strikethrough {
	  text-decoration: line-through;
	}

	/* Cart properties */
	.cart__item--properties {
	  font-size: calc(var(--element-text-font-size--body-md) - 2px);
	  margin-bottom: 10px;
	  line-height: 1.3;

	  & span {
	    font-weight: 700;
	  }
	}
.cart__note {
    --element-input-width: 100%;
  }

  .note-icon {
    & svg {
      position: relative;
      top: -1px;
      width: 16px;
      height: 16px;
      margin-left: 5px;
    }
  }

  .add-note {
    display: block;
    margin-bottom: 10px;
  }

  .add-note.is-active .note-icon--open {
    display: none;
  }

  .note-icon--close {
    display: none;

    .add-note.is-active & {
      display: inline;
    }
  }
/*Recommended products*/
	.cart__recommended-title {
	  margin-bottom: 20px;
	}
:root {
    --element-accordion-py: var(--size-4-5);
    --element-accordion-px: 0;
    --element-accordion-border-width: var(--size-0-25);
    --element-accordion-border-style: solid;
    --element-accordion-color-primary: var(--color-primary);
    --element-accordion-color-secondary: var(--color-secondary);
    --element-accordion-shade-border: 16%;
    --element-accordion-shade-border-hover: 100%;
    --element-accordion-transition-duration: 200ms;
    --element-accordion-transition-easing: ease-in-out;
    --element-accordion-icon-size: var(--size-4);
  }

  .element-accordion {
    /* Layout & Typography */
    --_py: var(--element-accordion-py);
    --_px: var(--element-accordion-px);
    --_border-width: var(--element-accordion-border-width);
    --_border-style: var(--element-accordion-border-style);

    /* Colors */
    --_color-primary: var(--element-accordion-color-primary);
    --_color-secondary: var(--element-accordion-color-secondary);
    --_shade-border: var(--element-accordion-shade-border);
    --_shade-border-hover: var(--element-accordion-shade-border-hover);

    /* Transition */
    --_transition-duration: var(--element-accordion-transition-duration);
    --_transition-easing: var(--element-accordion-transition-easing);

    --element-icon-size: var(--element-accordion-icon-size);

    display: block;
    padding-inline: var(--_px);
    border-width: 0;
    border-style: var(--_border-style);
    border-block-end-width: var(--_border-width);
    border-block-end-color: color-mix(in srgb, var(--_color-primary) var(--_shade-border), transparent);

    @media only screen and (max-width: 768px) {
      --_py: var(--size-3);
    }

    &:hover {
      --_shade-border: color-mix(in srgb, var(--_color-primary) var(--_shade-border-hover), transparent);
    }
  }

  details {
    &::details-content,
    .element-accordion__content {
      block-size: 0;
      opacity: 0;
      overflow-y: clip;
      interpolate-size: allow-keywords;
      transition: content-visibility var(--_transition-duration) allow-discrete,
        opacity var(--_transition-duration) var(--_transition-easing) var(--_transition-duration),
        block-size var(--_transition-duration) var(--_transition-easing),
        padding-block var(--_transition-duration) var(--_transition-easing);
    }

    &[open] {
      &::details-content,
      .element-accordion__content {
        block-size: auto;
        opacity: 1;
        overflow-y: visible;

        @starting-style {
          block-size: 0;
          opacity: 0;
          overflow-y: clip;
        }
      }
    }
  }

  summary {
    list-style-type: none;

    &::-webkit-details-marker {
      display: none;
    }
  }

  .element-accordion__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: var(--size-4);
    padding-block: var(--_py);
    overflow-wrap: break-word;
    cursor: pointer;
  }

  .element-accordion__content {
    padding-block-end: var(--_py);
    padding-inline: var(--size-0-25);
  }

  .element-accordion__toggle-open {
    display: none;

    details[open] & {
      display: inline;
    }
  }

  .element-accordion__toggle-close {
    details[open] & {
      display: none;
    }
  }
.element-badge {
    /* Layout & Typography */
    --_radius: var(--element-badge-radius, var(--chip-radius, var(--radius-xs)));
    --_px: var(--element-badge-px, var(--size-3));
    --_py: var(--element-badge-py, var(--size-1));
    --_border-width: var(--element-badge-border-width, var(--size-0-25));
    --_font-family: var(
      --element-badge-font-family,
      var(--element-text-font-family--body),
      var(--element-text-font-family-fallback--body)
    );
    --_font-size: var(--element-badge-font-size, var(--element-text-font-size--body-sm));
    --_letter-spacing: var(--element-badge-letter-spacing, var(--element-text-letter-spacing--body-sm));
    --_line-height: var(--element-badge-line-height, var(--element-text-line-height--body-sm));

    /* Colors */
    --_base-primary: var(--color-secondary);
    --_base-secondary: var(--color-primary);
    --_color-primary: var(--_base-primary);
    --_color-secondary: var(--_base-secondary);
    --_color-background: var(--_color-primary);
    --_color-text: var(--_color-secondary);
    --_color-border: var(--_color-secondary);
    --_shade-inset-box-shadow: var(--element-badge-shade-inset-box-shadow, 12%);
    --_inset-box-shadow: inset 0 0 0 var(--_border-width)
      color-mix(in srgb, var(--_color-border) var(--_shade-inset-box-shadow), transparent);

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--_radius);
    padding-inline: var(--_px);
    padding-block: var(--_py);
    font-family: var(--_font-family);
    font-size: var(--_font-size);
    letter-spacing: var(--_letter-spacing);
    background-color: var(--_color-background);
    color: var(--_color-text);
    box-shadow: var(--_inset-box-shadow);
    text-transform: uppercase;
    width: fit-content;
    white-space: nowrap;
  }

  .element-badge--inverted {
    --_color-primary: var(--_base-secondary);
    --_color-secondary: var(--_base-primary);

    & > * {
      --color-primary: currentColor;
    }
  }

  .element-badge--sale {
    --_base-primary: var(--color-sale-tag-text);
    --_base-secondary: var(--color-sale-tag);
  }
.element-breadcrumbs {
    /* Layout & Typography */
    --_font-family: var(
      --element-breadcrumbs-font-family,
      var(--element-text-font-family--body),
      var(--element-text-font-family-fallback--body)
    );
    --_font-size: var(--element-breadcrumbs-font-size, var(--element-text-font-size--body-sm));
    --_letter-spacing: var(--element-breadcrumbs-letter-spacing, var(--element-text-letter-spacing--body-sm));
    --_line-height: var(--element-breadcrumbs-line-height, var(--element-text-line-height--body-sm));
    --_divider-spacing: var(--element-breadcrumbs-divider-spacing, var(--size-1-5));
    --_divider-character: var(--element-breadcrumbs-divider-character, '/');

    /* Colors */
    --_color-primary: var(--color-primary);
    --_divider-opacity: 30%;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    color: var(--_color-primary);
    font-family: var(--_font-family);
    font-size: var(--_font-size);
    letter-spacing: var(--_letter-spacing);
    line-height: var(--_line-height);
  }

  .element-breadcrumbs li {
    display: flex;
    align-items: center;
  }

  /* Add dividers after each breadcrumb item except the last one,
    and after the last item when current page is not shown */
  .element-breadcrumbs li:not(:last-child)::after,
  .element-breadcrumbs--no-current-page li:last-child::after {
    content: var(--_divider-character);
    color: color-mix(in srgb, var(--_color-primary) var(--_divider-opacity), transparent);
    margin: 0 var(--_divider-spacing);
  }
:root {
    /* Base Layout Variables */
    --element-button-display: inline-flex;
    --element-button-width: fit-content;
    --element-button-height: auto;
    --element-button-radius: var(--radius-xs);
    --element-button-flex-direction: row;
    --element-button-gap: var(--size-2);
    --element-button-justify-content: center;
    --element-button-align-items: center;
    --element-button-white-space: nowrap;

    /* Base Spacing Variables */
    --element-button-padding-block: var(--size-3);
    --element-button-padding-inline: var(--size-5);
    --element-button-border-width: var(--size-0-25);

    /* Base Color Variables */
    --element-button-color-primary: initial;
    --element-button-color-secondary: initial;
    --element-button-shade-background: 0%;
    --element-button-shade-text: 0%;
    --element-button-shade-border: 20%;

    /* Typography Overrides */
    /* By default, the button will inherit the typography styles from element.text. Set these to other values to override. */
    /* --element-button-font-family: initial; */
    /* --element-button-font-family-fallback: initial; */
    /* --element-button-font-weight: initial; */
    /* --element-button-letter-spacing: initial; */
    /* --element-button-text-transform: initial; */
    /* --element-button-line-height: initial; */
    /* --element-button-color: initial; */

    /* Base Effect Variables */
    --element-button-box-shadow: initial;
    --element-button-transition-duration: 200ms;
    --element-button-transition-timing: ease;
    --element-button-transform: none;
    --element-button-backdrop-filter: none;
    --element-button-opacity: 1;

    /* Hover State Variables */
    --element-button-shade-background--hover: 8%;
    --element-button-shade-border--hover: 30%;

    /* Focus State Variables */
    --element-button-color-focus: var(--color-focus);
    --element-button-border-width--focus: var(--size-0-5);

    /* Active State Variables */
    --element-button-shade-background--active: 16%;
    --element-button-shade-border--active: var(--element-button-shade-border);

    /* Disabled State Variables */
    --element-button-shade-background--disabled: 12%;
    --element-button-shade-text--disabled: 70%;
    --element-button-shade-border--disabled: 12%;
  }

  /* Component Implementation */
  .element-button,
  .element-button--shopify-payment-wrapper .shopify-payment-button .shopify-payment-button__button--unbranded {
    /* Base Layout */
    --_display: var(--element-button-display);
    --_width: var(--element-button-width);
    --_height: var(--element-button-height);
    --_radius: var(--element-button-radius);
    --_flex-direction: var(--element-button-flex-direction);
    --_gap: var(--element-button-gap);
    --_justify-content: var(--element-button-justify-content);
    --_align-items: var(--element-button-align-items);
    --_white-space: var(--element-button-white-space);

    /* Base Spacing */
    --_padding-block: var(--element-button-padding-block);
    --_padding-inline: var(--element-button-padding-inline);
    --_border-width: var(--element-button-border-width);

    /* Base Colors */
    --_color-primary: var(--element-button-color-primary, var(--color-primary));
    --_color-secondary: var(--element-button-color-secondary, var(--color-secondary));
    --_color-focus: var(--element-button-color-focus, var(--color-focus, #4a9afc));
    --_color-text: var(--_color-secondary);
    --_color-background: var(--_color-primary);
    --_outline: none;
    --_border: none;
    --_shade-background: var(--element-button-shade-background);
    --_shade-text: var(--element-button-shade-text);
    --_shade-border: var(--element-button-shade-border);
    --_box-shadow: var(--element-button-box-shadow, inset 0 0 0 var(--_border-width) color-mix(in srgb, var(--_color-text) var(--_shade-border), transparent));

    /* Base Effects */
    --_transition-duration: var(--element-button-transition-duration);
    --_transition-timing: var(--element-button-transition-timing);
    --_transform: var(--element-button-transform);
    --_backdrop-filter: var(--element-button-backdrop-filter);
    --_opacity: var(--element-button-opacity);

    /* Text Styles */
    --element-text-font-family: var(--element-button-font-family);
    --element-text-font-family-fallback: var(--element-button-font-family-fallback);
    --element-text-font-weight: var(--element-button-font-weight);
    --element-text-letter-spacing: var(--element-button-letter-spacing);
    --element-text-text-transform: var(--element-button-text-transform);
    --element-text-line-height: var(--element-button-line-height);
    --element-text-color: var(--element-button-color);
    --element-text-font-size: var(--element-button-font-size);

    /* Icon Styles */
    --element-icon-size: var(--element-text-font-size--body-md);

    /* Base Styles */
    display: var(--_display);
    width: var(--_width);
    height: var(--_height);
    justify-content: var(--_justify-content);
    align-items: var(--_align-items);
    white-space: var(--_white-space);
    flex-direction: var(--_flex-direction);
    gap: var(--_gap);
    padding-block: var(--_padding-block);
    padding-inline: var(--_padding-inline);
    border-radius: var(--_radius);
    background-color: color-mix(in srgb, var(--_color-text) var(--_shade-background), var(--_color-background));
    color: color-mix(in srgb, var(--_color-background) var(--_shade-text), var(--_color-text));
    box-shadow: var(--_box-shadow);
    outline: var(--_outline);
    border: var(--_border);
    transform: var(--_transform);
    backdrop-filter: var(--_backdrop-filter);
    opacity: var(--_opacity);
    transition: all var(--_transition-duration) var(--_transition-timing);
    cursor: pointer;

    &:is(button.shopify-payment-button__button--unbranded) {
      width: 100%;
      line-height: var(--element-text-line-height--body-md);
      min-height: 32px;
    }

    &:has(> svg:only-child) {
      --_padding-inline: var(--_padding-block);
      --_display: flex;
    }

    /* Hover State */
    &:hover {
      --_shade-background: var(--element-button-shade-background--hover);
      --_shade-border: var(--element-button-shade-border--hover);
    }

    /* Focus State */
    &:focus-visible,
    input[type='radio']:focus-visible + & {
      --_border-width: var(--element-button-border-width--focus);
      --_box-shadow: inset 0 0 0 var(--_border-width) var(--_color-focus);
    }

    /* Disabled State */
    &:disabled,
    input[type='radio']:disabled + &,
    .disabled > input[type='radio'] + &,
    shopify-buy-it-now-button[disabled] > & {
      --_shade-background: var(--element-button-shade-background--disabled);
      --_shade-text: var(--element-button-shade-text--disabled);
      --_shade-border: var(--element-button-shade-border--disabled);

      &:is(:disabled),
      shopify-buy-it-now-button[disabled] > & {
        cursor: not-allowed;
      }
    }

    /* Active State */
    &:active,
    input[type='radio']:checked + & {
      --_shade-background: var(--element-button-shade-background--active);
      --_shade-border: var(--element-button-shade-border--active);
    }

    /* Variants */
    &.element-button--size-sm {
      --_padding-block: var(--size-2);
      --_padding-inline: var(--size-4);
    }

    &.element-button--size-lg {
      --_padding-block: var(--size-4);
      --_padding-inline: var(--size-6);
    }

    &.element-button--inverted {
      --_color-text: var(--_color-primary);
      --_color-background: var(--_color-secondary);
    }

    &.element-button--transparent {
      --_color-background: transparent;

      &:disabled {
        --_shade-border: var(--element-button-shade-border--disabled);
        --_shade-background: 0%;
      }

      &:disabled:active {
        --_border-width: var(--element-button-border-width);
        --_shade-border: var(--element-button-shade-border--disabled);
      }
    }

    &:is(.shopify-payment-button__button--unbranded):hover:not([disabled]) {
      background-color: color-mix(in srgb, var(--_color-secondary) var(--_shade-background), var(--_color-primary));
      color: color-mix(in srgb, var(--_color-background) var(--_shade-text), var(--_color-text));
    }
  }

  .element-button--shopify-payment-wrapper {
    --_radius: var(--element-button-radius);
    --_padding-block: var(--element-button-padding-block);
    --_line-height: var(--element-button-line-height, var(--element-text-line-height--body));
    --_font-size: var(--element-button-font-size, var(--element-text-font-size--body-md));

    --shopify-accelerated-checkout-button-border-radius: var(--_radius);
    --shopify-accelerated-checkout-button-block-size: calc((2 * var(--_padding-block)) + (var(--_line-height) * var(--_font-size)));

    font-family: var(--element-button-font-family, var(--element-text-font-family));
  }
.element-checkbox {
    /* Layout & Typography */
    --_size: var(--element-checkbox-size, var(--size-5));
    --_icon-size: var(--element-checkbox-icon-size, var(--size-3-5));
    --_radius: var(--element-checkbox-radius, 1px);
    --_gap: var(--element-checkbox-gap, var(--size-2));
    --_outline-width: var(--element-checkbox-outline-width, 1px);
    --_outline-width-active: var(--element-checkbox-outline-width-active, 2px);
    --_font-family: var(
      --element-checkbox-font-family,
      var(--element-text-font-family--body),
      var(--element-text-font-family-fallback--body)
    );
    --_font-size: var(--element-checkbox-font-size, var(--element-text-font-size--body-md));
    --_letter-spacing: var(--element-checkbox-letter-spacing, var(--element-text-letter-spacing--body));
    --_line-height: var(--element-checkbox-line-height, var(--element-text-line-height--body));
    --_font-weight: var(--element-checkbox-font-weight, normal);

    /* Colors */
    --_color-primary: var(--color-primary);
    --_color-secondary: var(--color-secondary);
    --_color-active: var(--color-focus);
    --_color-shadow: var(
      --element-checkbox-shadow-color,
      color-mix(in srgb, var(--root-color-primary) var(--_outline-shade), var(--root-color-secondary))
    );
    --_color-background: var(--root-color-secondary);
    --_color-text: var(--_color-primary);
    --_outline-shade: var(--element-checkbox-outline-shade, 12%);
    --_shadow-inset: var(--element-checkbox-shadow-inset, inset);
    --_shadow-h-offset: var(--element-checkbox-shadow-horizontal-offset, 0);
    --_shadow-v-offset: var(--element-checkbox-shadow-vertical-offset, 0);
    --_shadow-blur: var(--element-checkbox-shadow-blur-radius, 0);
    --_shadow-spread: var(--element-checkbox-shadow-spread-radius, var(--_outline-width));
    --_icon-opacity: var(--element-checkbox-icon-opacity, 0);

    @media (max-width: 768px) {
      --_size: var(--element-checkbox-size, var(--size-4));
      --_icon-size: var(--element-checkbox-icon-size, var(--size-3));
    }

    position: relative;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--_gap);
    color: var(--_color-text);
    font-family: var(--_font-family);
    font-size: var(--_font-size);
    letter-spacing: var(--_letter-spacing);
    line-height: var(--_line-height);
    font-weight: var(--_font-weight);
    cursor: pointer;

    input[type='checkbox'] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    &:hover {
      --_color-background: color-mix(in srgb, var(--_color-primary) 4%, var(--_color-secondary));
    }

    &:hover:has(input[type='checkbox']:checked) {
      --_color-shadow: color-mix(in srgb, var(--_color-secondary) 12%, var(--_color-primary));
      --_color-background: color-mix(in srgb, var(--_color-secondary) 4%, var(--_color-primary));
    }

    &:has(input[type='checkbox']:checked) {
      --_icon-opacity: 1;
      --_color-background: var(--_color-primary);
      --_color-shadow: var(--_color-primary);
    }

    &:has(input[type='checkbox']:focus-visible) {
      --_color-shadow: var(--_color-active);
      --_outline-width: var(--_outline-width-active);
    }

    &:not(.element-checkbox--with-icon):has(input[type='checkbox']:focus-visible) {
      outline: 3px solid var(--color-focus);
    }

    &:has(input[type='checkbox']:disabled) {
      --_color-background: color-mix(in srgb, var(--_color-primary) 8%, var(--_color-secondary));
      --_color-shadow: color-mix(in srgb, var(--_color-primary) 8%, var(--_color-secondary));
    }
  }

  .element-checkbox__icon {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: var(--_size);
    height: var(--_size);
    border-radius: var(--_radius);
    box-shadow: var(--_shadow-inset) var(--_shadow-h-offset) var(--_shadow-v-offset) var(--_shadow-blur)
      var(--_shadow-spread) var(--_color-shadow);
    background-color: var(--_color-background);

    .element-icon {
      width: var(--_icon-size);
      height: var(--_icon-size);
      color: var(--_color-secondary);
      opacity: var(--_icon-opacity);
    }
  }
:root {
    --element-chip-radius: var(--radius-xs);
    --element-chip-px: var(--size-3);
    --element-chip-py: var(--size-1);
    --element-chip-gap: var(--size-1);
    --element-chip-border-width: var(--size-0-25);

    --element-chip-font-size: var(--element-text-font-size--body-sm);
    --element-chip-letter-spacing: var(--element-text-letter-spacing--body);
    --element-chip-line-height: var(--element-text-line-height--body);

    --element-chip-color-primary: var(--color-primary);
    --element-chip-color-secondary: var(--color-secondary);
    --element-chip-color-text: var(--element-chip-color-primary);
    --element-chip-color-background: var(--element-chip-color-secondary);
    --element-chip-color-border: var(--element-chip-color-primary);
    --element-chip-color-focus-outline: transparent;

    --element-chip-shade-inset-box-shadow: 12%;

    --element-chip-inset-box-shadow: initial;
  }

  .element-chip {
    /* Layout & Typography */
    --_radius: var(--element-chip-radius);
    --_px: var(--element-chip-px);
    --_py: var(--element-chip-py);
    --_gap: var(--element-chip-gap);
    --_border-width: var(--element-chip-border-width);
    --_font-family: var(
      --element-chip-font-family,
      var(--element-text-font-family--body),
      var(--element-text-font-family-fallback--body)
    );
    --_font-size: var(--element-chip-font-size);
    --_letter-spacing: var(--element-chip-letter-spacing);
    --_line-height: var(--element-chip-line-height);

    /* Colors */
    --_color-primary: var(--element-chip-color-primary);
    --_color-secondary: var(--element-chip-color-secondary);
    --_color-text: var(--element-chip-color-text);
    --_color-background: var(--element-chip-color-background);
    --_color-border: var(--element-chip-color-border);
    --_color-focus-outline: var(--element-chip-color-focus-outline);
    --_color-caption: color-mix(in srgb, var(--_color-text) var(--_shade-caption), transparent);
    --_shade-active: 100%;
    --_shade-hover: 4%;
    --_shade-caption: 30%;
    --_shade-inset-box-shadow: var(--element-chip-shade-inset-box-shadow);
    --_inset-box-shadow: var(
      --element-chip-inset-box-shadow,
      inset 0 0 0 var(--_border-width)
        color-mix(in srgb, var(--_color-border) var(--_shade-inset-box-shadow), transparent)
    );

    --element-icon-size: var(--size-4);
    --swatch-size: var(--size-4);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--_gap);
    border-radius: var(--_radius);
    padding-inline: var(--_px);
    padding-block: var(--_py);
    text-align: center;
    font-family: var(--_font-family);
    font-size: var(--_font-size);
    letter-spacing: var(--_letter-spacing);
    line-height: var(--_line-height);
    background-color: var(--_color-background);
    color: var(--_color-text);
    box-shadow: var(--_inset-box-shadow);
    outline: 3px solid var(--_color-focus-outline);
    outline-offset: 0;
    cursor: pointer;
    text-decoration: none;

    &:hover {
      --_color-background: color-mix(in srgb, var(--_color-primary) var(--_shade-hover), var(--_color-secondary));
    }

    &:focus-visible {
      --_color-focus-outline: var(--color-focus);
      --_inset-box-shadow: transparent;
    }

    &:focus:not(:focus-visible),
    &:active {
      --_color-focus-outline: transparent;
      --_inset-box-shadow: inset 0 0 0 var(--_border-width)
        color-mix(in srgb, var(--_color-border) var(--_shade-inset-box-shadow), transparent);
    }

    & > * {
      pointer-events: none;
    }
  }

  .element-chip--active {
    --_color-text: var(--_color-secondary);
    --_color-background: color-mix(in srgb, var(--_color-primary) var(--_shade-active), transparent);
    --_shade-caption: 70%;

    &:hover {
      --_shade-active: 4%;
      --_color-background: color-mix(in srgb, var(--_color-secondary) var(--_shade-active), var(--_color-primary));
    }
  }

  .element-chip__caption {
    color: var(--_color-caption);
  }

  .element-chip__close-icon {
    --element-icon-size: var(--size-2-5);
    display: flex;
  }
.element-divider {
    /* Layout & Typography */
    --_width: var(--element-divider-width, 100%);
    --_margin: var(--element-divider-margin, 0);
    --_border-width: var(--element-divider-border-width, var(--size-0-25));

    /* Colors */
    --_color-primary: var(--color-primary);
    --_color-secondary: var(--color-secondary);
    --_shade-border: var(--element-divider-border-shade, var(--shade-12));
    --_border-color: var(
      --element-divider-border-color,
      color-mix(in srgb, var(--_color-primary) var(--_shade-border), var(--_color-secondary))
    );

    width: var(--_width);
    margin: var(--_margin) auto;
    border: 0;
    border-top: var(--_border-width) solid var(--_border-color);
  }

  .element-divider--small {
    --_margin: var(--size-4);
  }

  .element-divider--medium {
    --_margin: var(--size-7-5);
  }

  .element-divider--large {
    --_margin: var(--size-7-5);

    @media (min-width: 769px) {
      --_margin: calc(var(--size-7-5) * 1.5);
    }
  }
:root {
    --element-icon-size: 20px;
    --element-icon-width: initial;
    --element-icon-height: initial;
    --element-icon-stroke-width: 2px;
    --element-icon-stroke-linejoin: miter;
    --element-icon-color: inherit;
    --element-icon-opacity: 1;
  }

  .element-icon {
    /* Layout & Typography */
    --_size: var(--element-icon-size);
    --_width: var(--element-icon-width, var(--_size));
    --_height: var(--element-icon-height, var(--_size));
    --_stroke-width: var(--element-icon-stroke-width);
    --_stroke-linejoin: var(--element-icon-stroke-linejoin);

    /* Colors */
    --_color: var(--element-icon-color);
    --_opacity: var(--element-icon-opacity);

    display: inline-block;
    vertical-align: middle;
    width: var(--_width);
    height: var(--_height);
    color: var(--_color);
    opacity: var(--_opacity);

    &.element-icon--line {
      stroke-width: var(--_stroke-width);
      stroke-linejoin: var(--_stroke-linejoin);
    }
  }
.parallax-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .parallax-image {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        transition: transform 0.05s linear;
    }
:root {
    /* Base Layout Variables */
    --element-input-width: auto;
    --element-input-height: auto;
    --element-input-radius: var(--radius-xs);
    --element-input-padding-inline: var(--size-3);
    --element-input-padding-block: var(--size-3);

    --element-input-font-family: var(--element-text-font-family--body), var(--element-text-font-family-fallback--body);
    --element-input-font-size: var(--element-text-font-size--body-md);
    --element-input-line-height: var(--element-text-line-height--body);
    --element-input-letter-spacing: var(--element-text-letter-spacing--body-md);

    /* Base Outline Variables */
    --element-input-box-shadow-horizontal-offset: 0;
    --element-input-box-shadow-vertical-offset: 0;
    --element-input-box-shadow-blur-radius: 0;
    --element-input-box-shadow-spread-radius: 1px;

    /* Base Colors Variables */
    --element-input-color-primary: initial;
    --element-input-color-secondary: initial;
    --element-input-box-shadow-shade: 12%;
    --element-input-background-shade: 0%;
    --element-input-text-shade: 70%;
    --element-input-text-shade-placeholder: 50%;

    /* Active State Variables */
    --element-input-box-shadow-spread-radius--active: 2px;
    --element-input-box-shadow-shade--active: var(--element-input-box-shadow-shade);
    --element-input-background-shade--active: var(--element-input-background-shade);
    --element-input-text-shade--active: 100%;
    --element-input-box-shadow-color--active: var(--color-focus, #4a9afc);

    /* Focus State Variables */
    --element-input-box-shadow-spread-radius--focus: 2px;
    --element-input-box-shadow-shade--focus: var(--element-input-box-shadow-shade);
    --element-input-background-shade--focus: var(--element-input-background-shade);
    --element-input-text-shade--focus: var(--element-input-text-shade);
    --element-input-box-shadow-color--focus: var(--color-focus, #4a9afc);

    /* Hover State Variables */
    --element-input-box-shadow-spread-radius--hover: 2px;
    --element-input-box-shadow-shade--hover: var(--element-input-box-shadow-shade);
    --element-input-background-shade--hover: 4%;
    --element-input-text-shade--hover: 100%;

    /* Disabled State Variables */
    --element-input-box-shadow-spread-radius--disabled: 2px;
    --element-input-box-shadow-shade--disabled: 8%;
    --element-input-background-shade--disabled: 8%;
    --element-input-text-shade--disabled: 20%;

    /* Error State Variables */
    --element-input-box-shadow-spread-radius--error: 2px;
    --element-input-box-shadow-shade--error: 8%;
    --element-input-background-shade--error: initial;
    --element-input-text-shade--error: 100%;
    --element-input-box-shadow-color--error: var(--color-error, #ff0000);
  }

  .element-input {
    /* Base Layout*/
    --_width: var(--element-input-width);
    --_height: var(--element-input-height);
    --_radius: var(--element-input-radius);
    --_padding-inline: var(--element-input-padding-inline);
    --_padding-block: var(--element-input-padding-block);

    /* Base Typography */
    --_font-family: var(--element-input-font-family);
    --_font-size: var(--element-input-font-size);
    --_line-height: var(--element-input-line-height);
    --_letter-spacing: var(--element-input-letter-spacing);

    /* Base Colors */
    --_color-primary: var(--element-input-color-primary, var(--root-color-primary, #000));
    --_color-secondary: var(--element-input-color-secondary, var(--root-color-secondary, #fff));
    --_color-error: var(--element-input-color-error);
    --_color-active: var(--element-input-color-active);
    --_shade-box-shadow: var(--element-input-box-shadow-shade);
    --_shade-background: var(--element-input-background-shade);
    --_shade-text: var(--element-input-text-shade);
    --_shade-text-placeholder: var(--element-input-text-shade-placeholder);

    --_color-background: color-mix(in srgb, var(--_color-primary) var(--_shade-background), var(--_color-secondary));
    --_color-text: color-mix(in srgb, var(--_color-primary) var(--_shade-text), var(--_color-secondary));
    --_color-text-placeholder: color-mix(
      in srgb,
      var(--_color-primary) var(--_shade-text-placeholder),
      var(--_color-secondary)
    );
    --_color-box-shadow: color-mix(in srgb, var(--_color-primary) var(--_shade-box-shadow), var(--_color-secondary));

    /* Base Outline */
    --_box-shadow-horizontal-offset: var(--element-input-box-shadow-horizontal-offset);
    --_box-shadow-vertical-offset: var(--element-input-box-shadow-vertical-offset);
    --_box-shadow-blur-radius: var(--element-input-box-shadow-blur-radius);
    --_box-shadow-spread-radius: var(--element-input-box-shadow-spread-radius);
    --_box-shadow: inset var(--_box-shadow-horizontal-offset) var(--_box-shadow-vertical-offset)
      var(--_box-shadow-blur-radius) var(--_box-shadow-spread-radius) var(--_color-box-shadow);

    display: flex;
    align-items: center;
    position: relative;
    border: none;
    outline: none;
    padding-inline: var(--_padding-inline);
    padding-block: var(--_padding-block);
    width: var(--_width);
    height: var(--_height);
    border-radius: var(--_radius);
    box-shadow: var(--_box-shadow);
    background-color: var(--_color-background);
    color: var(--_color-text);
    font-family: var(--_font-family);
    font-size: var(--_font-size);
    line-height: var(--_line-height);
    letter-spacing: var(--_letter-spacing);

    &::placeholder {
      color: var(--_color-text-placeholder);
    }

    &:hover:not(:disabled) {
      --_box-shadow-spread-radius: var(--element-input-box-shadow-spread-radius--hover);
      --_shade-box-shadow: var(--element-input-box-shadow-shade--hover);
      --_shade-background: var(--element-input-background-shade--hover);
      --_shade-text: var(--element-input-text-shade--hover);
    }

    &:active {
      --_box-shadow-spread-radius: var(--element-input-box-shadow-spread-radius--active);
      --_shade-box-shadow: var(--element-input-box-shadow-shade--active);
      --_shade-background: var(--element-input-background-shade--active);
      --_shade-text: var(--element-input-text-shade--active);
      --_color-box-shadow: var(--element-input-box-shadow-color--active);
    }

    &:focus {
      --_box-shadow-spread-radius: var(--element-input-box-shadow-spread-radius--focus);
      --_shade-box-shadow: var(--element-input-box-shadow-shade--focus);
      --_shade-background: var(--element-input-background-shade--focus);
      --_shade-text: var(--element-input-text-shade--focus);
      --_color-box-shadow: var(--element-input-box-shadow-color--focus);
    }

    &:disabled {
      --_box-shadow-spread-radius: var(--element-input-box-shadow-spread-radius--disabled);
      --_shade-box-shadow: var(--element-input-box-shadow-shade--disabled);
      --_shade-background: var(--element-input-background-shade--disabled);
      --_shade-text: var(--element-input-text-shade--disabled);
      cursor: not-allowed;
    }

    &[aria-invalid='true'] {
      --_box-shadow-spread-radius: var(--element-input-box-shadow-spread-radius--error);
      --_shade-box-shadow: var(--element-input-box-shadow-shade--error);
      --_shade-background: var(--element-input-background-shade--error);
      --_shade-text: var(--element-input-text-shade--error);
      --_color-box-shadow: var(--element-input-box-shadow-color--error);
    }

    & ~ button {
      --element-button-height: 100%;
    }
  }

  .element-input--inverted {
    --_color-secondary: var(--element-input-color-primary, var(--color-primary, #000));
    --_color-primary: var(--element-input-color-secondary, var(--color-secondary, #fff));
  }

  .element-input--transparent {
    --_color-primary: var(--element-input-color-primary, var(--color-primary, #000));
    --_color-secondary: transparent;
  }

  .element-input--inverted.element-input--transparent {
    --_color-primary: var(--element-input-color-secondary, var(--rootcolor-secondary, #fff));
    --_color-secondary: transparent;
  }

  .element-input--inline {
    --_radius: var(--radius-none);
    --_box-shadow: inset 0 calc(var(--_box-shadow-spread-radius) * -1) 0 0 var(--_color-box-shadow);
  }

  .element-input--full {
    --_width: 100%;
  }

  /* Date input specific styles */
  .element-input[type="date"] {
    text-align: left;
    padding-right: var(--size-8); /* Space for calendar icon */
  }

  .element-input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: var(--_padding-inline);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: var(--size-4);
    height: var(--size-4);
  }

  .element-input[type="date"]::-webkit-datetime-edit {
    width: 100%;
  }

  .element-input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    width: 100%;
  }
.element-map {
    display: block;
    height: 100%;
    position: relative;
    border-radius: var(--roundness);
  }

  .element-map--none,
  .element-map--square {
    aspect-ratio: 1;
  }

  .element-map--portrait {
    aspect-ratio: 2 / 3;
  }

  .element-map--landscape {
    aspect-ratio: 16 / 9;
  }

  /* TODO: should be added as a object-cover utility class */
  .element-map__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .element-map__onboarding {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 0;
  }
.element-marquee {
    display: block;
    width: 100%;
    overflow: hidden;
    --marquee-gap: 0px;
  }

  .element-marquee__wrapper {
    display: flex;
    gap: var(--marquee-gap);
    width: fit-content;
    white-space: nowrap;
  }

  .element-marquee__content {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
  }

  .element-marquee__items {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
    align-items: center;
  }

  @media (prefers-reduced-motion: no-preference) {
    .element-marquee[data-loaded] .element-marquee__wrapper {
      --marquee-start: calc(-50% - (var(--marquee-gap) / 2));
      --marquee-end: 0px;
      animation: marquee-motion var(--marquee-speed, 10s) linear infinite;
    }

    .element-marquee[data-direction='reverse'][data-loaded] .element-marquee__wrapper {
      --marquee-start: 0px;
      --marquee-end: calc(-50% - (var(--marquee-gap) / 2));
    }
  }

  @keyframes marquee-motion {
    from {
      transform: translate3d(var(--marquee-start), 0, 0);
    }

    to {
      transform: translate3d(var(--marquee-end), 0, 0);
    }
  }
.element-pagination {
    /* Layout */
    --_font-family: var(
      --element-pagination-font-family,
      var(--element-text-font-family--body),
      var(--element-text-font-family-fallback--body)
    );
    --_font-size: var(--element-pagination-font-size, var(--element-text-font-size--body-sm));
    --_letter-spacing: var(--element-pagination-letter-spacing, var(--element-text-letter-spacing--body));
    --_line-height: var(--element-pagination-line-height, var(--element-text-line-height--body));

    /* Colors */
    --_color-primary: var(--color-primary);
    --_shade-active: 40%;
    --_shade-hover: 70%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--size-2);
    color: var(--_color-primary);
    font-family: var(--_font-family);
    font-size: var(--_font-size);
    letter-spacing: var(--_letter-spacing);
    line-height: var(--_line-height);
    width: 100%;
  }

  .element-pagination-page {
    padding: var(--size-2) var(--size-3);

    &:not(.element-pagination-page--current):hover {
      color: color-mix(in srgb, var(--_color-primary) var(--_shade-hover), transparent);
    }
  }

  .element-pagination-page--current {
    color: color-mix(in srgb, var(--_color-primary) var(--_shade-active), transparent);
  }
.element-placeholder {
    fill: #999;
    background-color: #e1e1e1;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    padding: 30px 0;
  }

  .element-placeholder--no-padding {
    padding: 0;
  }
.element-price {
    /* Force all prices to use dark blue color */
    color: #0066FF !important; /* Dark blue */
    font-size: 18px !important; /* Reduced font size */
    font-weight: 600 !important; /* Slightly bold */

    sup {
      top: -0.4em;      /* Adjust superscript position slightly */
      font-size: 60%;   /* Smaller superscript */
    }
  }
.element-quantity-selector {
    --element-input-color-primary: var(--color-primary, #000);
    --element-input-color-secondary: var(--color-secondary, #fff);

    width: fit-content;
    display: inline-block;
    position: relative;
    overflow: visible;
    pointer-events: auto;

    &.is-loading {
      opacity: 0.5;
      pointer-events: none;
    }
  }

  .element-quantity-selector__input {
    --element-input-radius: var(--element-button-radius);
    --element-input-padding-inline: calc(
      var(--element-input-line-height) * var(--element-input-font-size) + 2 * var(--element-input-padding-block)
    );
    --element-input-width: max(calc(var(--digit-count, 1ch) + 2 * var(--size-1)), 32px);
    box-sizing: content-box;
    text-align: center;
  }

  .element-quantity-selector__button {
    --element-button-border-width: 0;
    --element-button-color-primary: var(--element-input-color-primary, var(--root-color-primary, #000));
    --element-button-color-secondary: var(--element-input-color-secondary, var(--root-color-secondary, #fff));

    position: absolute;
    top: 0;
    height: 100%;
    aspect-ratio: 1;
    border: 1px solid transparent;
    background-clip: padding-box;
    z-index: 1;

    &:has(+ .element-quantity-selector__input:focus),
    .element-quantity-selector__input:focus + & {
      border-width: var(--element-input-box-shadow-spread-radius--hover);
    }

    &:is(.element-quantity-selector__button--minus) {
      border-radius: var(--element-button-radius) 0 0 var(--element-button-radius);
      left: 0;
    }

    &:is(.element-quantity-selector__button--plus) {
      border-radius: 0 var(--element-button-radius) var(--element-button-radius) 0;
      right: 0;
    }
  }
:root {
    --element-radio-size: var(--size-5);
    --element-radio-dot-size: var(--size-2-5);
    --element-radio-dot-opacity: 0;
    --element-radio-radius: 50%;
    --element-radio-gap: var(--size-2);
    --element-radio-border-width: 1px;
    --element-radio-border-width--focus: 2px;

    --element-radio-color-primary: initial;
    --element-radio-color-secondary: initial;
    --element-radio-color-focus: var(--color-focus);
    --element-radio-shade-background: 0%;
    --element-radio-shade-background--hover: 4%;
    --element-radio-shade-background--checked: 100%;
    --element-radio-shade-background--disabled: 8%;
    --element-radio-shade-border: 12%;
    --element-radio-shade-border--disabled: 8%;
  }

  .element-radio {
    /* Layout & Typography */
    --_size: var(--element-radio-size);
    --_dot-size: var(--element-radio-dot-size);
    --_dot-opacity: var(--element-radio-dot-opacity);
    --_radius: var(--element-radio-radius);
    --_gap: var(--element-radio-gap);
    --_border-width: var(--element-radio-border-width);

    /* Colors */
    --_color-primary: var(--element-radio-color-primary, var(--color-primary));
    --_color-secondary: var(--element-radio-color-secondary, var(--color-secondary));
    --_color-focus: var(--element-radio-color-focus, var(--color-focus, #4a9afc));
    --_shade-background: var(--element-radio-shade-background);
    --_shade-border: var(--element-radio-shade-border);

    --_box-shadow: 0 0 0 var(--_border-width) color-mix(in srgb, var(--_color-primary) var(--_shade-border), var(--_color-secondary));

    @media (max-width: 768px) {
      --_size: var(--radio-size, var(--size-4));
      --_dot-size: var(--radio-dot-size, var(--size-2));
    }

    position: relative;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--_gap);
    cursor: pointer;

    input[type='radio'] {
      position: absolute;
      opacity: 0;
      inset: 0;
      cursor: pointer;
    }

    &:hover {
      --_shade-background: var(--element-radio-shade-background--hover);
    }

    &:has(input[type='radio']:checked) {
      --_dot-opacity: 1;
      --_shade-background: var(--element-radio-shade-background--checked);
    }

    &:has(input[type='radio']:focus-visible) {
      --_border-width: var(--element-radio-border-width--focus);
      --_box-shadow: 0 0 0 var(--_border-width) var(--_color-focus);
    }

    &:has(input[type='radio']:disabled) {
      --_shade-background: var(--element-radio-shade-background--disabled);
      --_shade-border: var(--element-radio-shade-border--disabled);
      cursor: not-allowed;
    }
  }

  .element-radio__icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--_size);
    height: var(--_size);
    border-radius: var(--_radius);
    box-shadow: var(--_box-shadow);
    background-color: color-mix(in srgb, var(--_color-primary) var(--_shade-background), var(--_color-secondary));

    &::before {
      content: '';
      width: var(--_dot-size);
      height: var(--_dot-size);
      background-color: var(--_color-secondary);
      border-radius: 50%;
      opacity: var(--_dot-opacity);
    }
  }
element-select {
    display: inline-block;
    position: relative;
  }

  /* Ensure the custom element inherits the wrapper styles */
  element-select.element-select__wrapper {
    position: relative;
    display: inline-block;
  }

  element-select.element-select__wrapper select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    /* Ensure the select is focusable and visible to screen readers */
    pointer-events: auto;
  }

  /* Focus state for the wrapper */
  element-select.element-select__wrapper--focused .element-button {
    --_box-shadow: 0 0 0 var(--element-input-box-shadow-spread-radius--focus) color-mix(in srgb, var(--color-primary) var(--element-input-box-shadow-shade--focus), transparent);
  }

  element-select select:focus-visible + .element-button {
    --_border-width: var(--element-input-box-shadow-spread-radius--focus);
    --_box-shadow: inset 0 0 0 var(--_border-width) var(--_color-focus);
  }

  /* Ensure the button takes full width */
  element-select .element-button {
    width: 100%;
    justify-content: space-between;
  }
.element-swatch {
    /* Layout */
    --_size-small: var(--element-swatch-size-small, var(--size-4));
    --_size-large: var(--element-swatch-size-large, var(--size-8));
    --_size-mobile-ratio: var(--element-swatch-size-mobile-ratio, 0.875); /* 3.5/4 for small, 6/8 for large (0.75) */
    --_size: var(--_size-small);
    --_radius: var(--element-swatch-radius, var(--radius-full));
    --_border-width: var(--element-swatch-border-width, var(--size-0-25));
    --_outline-width: var(--element-swatch-outline-width, 3px);
    --_line-disabled-width: var(
      --element-swatch-line-disabled-width,
      max(var(--size-0-25), calc(var(--_size) * 0.0625))
    );

    /* Colors */
    --_color-primary: var(--color-primary, #000);
    --_color-secondary: var(--color-secondary, #fff);
    --_color-background: var(--element-swatch-color-background, var(--_color-primary));
    --_color-background-image: var(--element-swatch-color-background-image, none);
    --_color-border: var(--element-swatch-color-border, var(--_color-primary));
    --_color-disabled: var(--element-swatch-color-disabled, none);
    --_color-focus: var(--element-swatch-color-focus, var(--color-focus, #4a9afc));
    --_shade-inset: var(--element-swatch-shade-inset, 16%);
    --_shade-outer: var(--element-swatch-shade-outer, 0%);
    --_shade-outer-hover: var(--element-swatch-shade-outer-hover, 20%);
    --_shade-outer-selected: var(--element-swatch-shade-outer-selected, 100%);

    display: inline-block;
    background: var(--_color-disabled), var(--_color-background-image) center / cover, var(--_color-background);
    width: var(--_size);
    height: var(--_size);
    border-radius: var(--_radius);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--_color-secondary) 100%, transparent),
      0 0 0 var(--_outline-width) color-mix(in srgb, var(--_color-primary) var(--_shade-outer), transparent),
      inset 0 0 0 var(--_border-width) color-mix(in srgb, var(--_color-border) var(--_shade-inset), transparent);
    outline: 0;

    @media only screen and (max-width: 768px) {
      --_size: calc(var(--_size-small) * var(--_size-mobile-ratio));
    }

    label:hover &,
    &:hover {
      --_outline-width: 4px;
      --_shade-outer: var(--_shade-outer-hover);
    }

    &:focus,
    input:checked ~ &,
    .element-swatch--selected {
      --_shade-outer: var(--_shade-outer-selected);
    } 

    /* Focus State */
    &:focus-visible,
    input[type='radio']:focus-visible ~ & {
      --_color-primary: var(--_color-focus);
      --_outline-width: 4px;
    }
  }

  .element-swatch--large {
    --_size: var(--_size-large);

    @media only screen and (max-width: 768px) {
      --_size: calc(var(--_size-large) * var(--_size-mobile-ratio));
    }
  }

  .element-swatch--disabled,
  .disabled > input[type='radio'] ~ &,
  input:disabled + & {
    --_color-disabled: linear-gradient(
      to bottom right,
      transparent calc(50% - var(--_line-disabled-width)),
      var(--color-secondary) calc(50% - var(--_line-disabled-width)) calc(50% + var(--_line-disabled-width)),
      transparent calc(50% + var(--_line-disabled-width))
    );
  }
/* Public Body Variables */
  :root {
    /* Body Font Styles */
    --element-text-font-family--body: 'Arial';
    --element-text-font-family-fallback--body: 'sans-serif';
    --element-text-font-weight--body: var(--font-weight-400);
    --element-text-letter-spacing--body: var(--letter-space-md);
    --element-text-text-transform--body: none;
    
    /* Body Color */
    --element-text-color--body: initial;
    
    /* Body Font Sizes */
    --element-text-font-size--body: initial;
    --element-text-font-size--body-xs: var(--text-size-3);
    --element-text-font-size--body-sm: var(--text-size-3-5);
    --element-text-font-size--body-md: var(--text-size-4);
    --element-text-font-size--body-lg: var(--text-size-4-5);
    
    /* Body Line Heights */
    --element-text-line-height--body: var(--line-height-md);
    --element-text-line-height--body-xs: initial;
    --element-text-line-height--body-sm: initial;
    --element-text-line-height--body-md: initial;
    --element-text-line-height--body-lg: initial;
  }

  .element-text:is([class*="element-text--body"]) {
    /* Body Font Styles */
    --_font-family--body: var(--_font-family, var(--element-text-font-family--body));
    --_font-family-fallback--body: var(--_font-family-fallback, var(--element-text-font-family-fallback--body));
    --_font-weight--body: var(--_font-weight, var(--element-text-font-weight--body));
    --_letter-spacing--body: var(--_letter-spacing, var(--element-text-letter-spacing--body));
    --_text-transform--body: var(--_text-transform, var(--element-text-text-transform--body));

    /* Body Color */
    --_color--body: var(--_color, var(--element-text-color--body, currentColor));

    /* Body Font Sizes */
    --_font-size--body: var(--_font-size, var(--element-text-font-size--body));
    --_font-size--body-xs: var(--_font-size--body, var(--element-text-font-size--body-xs));
    --_font-size--body-sm: var(--_font-size--body, var(--element-text-font-size--body-sm));
    --_font-size--body-md: var(--_font-size--body, var(--element-text-font-size--body-md));
    --_font-size--body-lg: var(--_font-size--body, var(--element-text-font-size--body-lg));

    /* Body Line Heights */
    --_line-height--body: var(--_line-height, var(--element-text-line-height--body));
    --_line-height--body-xs: var(--element-text-line-height--body-xs, var(--_line-height--body));
    --_line-height--body-sm: var(--element-text-line-height--body-sm, var(--_line-height--body));
    --_line-height--body-md: var(--element-text-line-height--body-md, var(--_line-height--body));
    --_line-height--body-lg: var(--element-text-line-height--body-lg, var(--_line-height--body));

    font-family: var(--_font-family--body), var(--_font-family-fallback--body);
    font-weight: var(--_font-weight--body);
    letter-spacing: var(--_letter-spacing--body);
    text-transform: var(--_text-transform--body);
    color: var(--_color--body);

    &:where(.element-text--body-xs) {
      --_font-size: var(--_font-size--body-xs); 
      line-height: var(--_line-height--body-xs);
    }

    &:where(.element-text--body-sm) {
      font-size: var(--_font-size--body-sm);
      line-height: var(--_line-height--body-sm);
    }

    &:where(.element-text--body-md) {
      font-size: var(--_font-size--body-md);
      line-height: var(--_line-height--body-md);
    } 

    &:where(.element-text--body-lg) {
      font-size: var(--_font-size--body-lg);
      line-height: var(--_line-height--body-lg);
    }
  }
/* Public Heading Variables */
  :root {
    /* Heading Font Styles */
    --element-text-font-family--heading: 'Arial';
    --element-text-font-family-fallback--heading: 'sans-serif';
    --element-text-font-weight--heading: var(--font-weight-700);
    --element-text-letter-spacing--heading: var(--letter-space-md);
    --element-text-text-transform--heading: none;
    
    /* Heading Color */
    --element-text-color--heading: initial;
    
    /* Heading Font Sizes */
    --element-text-font-size--heading: initial;
    --element-text-font-size--heading-2xl: var(--text-size-12);
    --element-text-font-size--heading-xl: var(--text-size-8);
    --element-text-font-size--heading-lg: var(--text-size-6);
    --element-text-font-size--heading-md: var(--text-size-5);
    --element-text-font-size--heading-sm: var(--text-size-4-5);
    --element-text-font-size--heading-xs: var(--text-size-4);
    --element-text-font-size--heading-2xs: var(--text-size-3-5);
    
    /* Heading Line Heights */
    --element-text-line-height--heading: var(--line-height-md);
    --element-text-line-height--heading-2xl: initial;
    --element-text-line-height--heading-xl: initial;
    --element-text-line-height--heading-lg: initial;
    --element-text-line-height--heading-md: initial;
    --element-text-line-height--heading-sm: initial;
    --element-text-line-height--heading-xs: initial;
    --element-text-line-height--heading-2xs: initial;
  } 

  .element-text:is([class*="element-text--heading"]) {
    /* Heading Font Styles */
    --_font-family--heading: var(--_font-family, var(--element-text-font-family--heading));
    --_font-family-fallback--heading: var(--_font-family-fallback, var(--element-text-font-family-fallback--heading));
    --_font-weight--heading: var(--_font-weight, var(--element-text-font-weight--heading));
    --_letter-spacing--heading: var(--_letter-spacing, var(--element-text-letter-spacing--heading));
    --_text-transform--heading: var(--_text-transform, var(--element-text-text-transform--heading));

    /* Heading Color */
    --_color--heading: var(--_color, var(--element-text-color--heading, currentColor));

    /* Heading Font Sizes */
    --_font-size--heading: var(--_font-size, var(--element-text-font-size--heading));
    --_font-size--heading-2xl: var(--_font-size--heading, var(--element-text-font-size--heading-2xl));
    --_font-size--heading-xl: var(--_font-size--heading, var(--element-text-font-size--heading-xl));
    --_font-size--heading-lg: var(--_font-size--heading, var(--element-text-font-size--heading-lg));
    --_font-size--heading-md: var(--_font-size--heading, var(--element-text-font-size--heading-md));
    --_font-size--heading-sm: var(--_font-size--heading, var(--element-text-font-size--heading-sm));
    --_font-size--heading-xs: var(--_font-size--heading, var(--element-text-font-size--heading-xs));

    /* Heading Line Heights */
    --_line-height--heading: var(--_line-height, var(--element-text-line-height--heading));
    --_line-height--heading-2xl: var(--element-text-line-height--heading-2xl, var(--_line-height--heading));
    --_line-height--heading-xl: var(--element-text-line-height--heading-xl, var(--_line-height--heading));
    --_line-height--heading-lg: var(--element-text-line-height--heading-lg, var(--_line-height--heading));
    --_line-height--heading-md: var(--element-text-line-height--heading-md, var(--_line-height--heading));
    --_line-height--heading-sm: var(--element-text-line-height--heading-sm, var(--_line-height--heading));
    --_line-height--heading-xs: var(--element-text-line-height--heading-xs, var(--_line-height--heading));

    font-family:var(--_font-family--heading), var(--_font-family-fallback--heading);
    font-weight: var(--_font-weight--heading);
    letter-spacing: var(--_letter-spacing--heading);
    text-transform: var(--_text-transform--heading);
    color: var(--_color--heading);

    &:where(.element-text--heading-2xs) {
      font-size: var(--_font-size--heading-2xs);
      line-height: var(--_line-height--heading-2xs);
    }
  
    &:where(.element-text--heading-xs) {
      font-size: var(--_font-size--heading-xs);
      line-height: var(--_line-height--heading-xs);
    }

    &:where(.element-text--heading-sm) {
      font-size: var(--_font-size--heading-sm);
      line-height: var(--_line-height--heading-sm);
    }

    &:where(.element-text--heading-md) {
      font-size: var(--_font-size--heading-md);
      line-height: var(--_line-height--heading-md);
    }

    &:where(.element-text--heading-lg) {
      font-size: var(--_font-size--heading-lg);
      line-height: var(--_line-height--heading-lg);
    }

    &:where(.element-text--heading-xl) {
      font-size: var(--_font-size--heading-xl);
      line-height: var(--_line-height--heading-xl);
    }

    &:where(.element-text--heading-2xl) {
      font-size: var(--_font-size--heading-2xl);
      line-height: var(--_line-height--heading-2xl);
    }
  }
/* Public RTE Variables */
  :root {
    /* Body Font Stack */
    --element-text-font-family--rte-body: var(--element-text-font-family--body);
    --element-text-font-family-fallback--rte-body: var(--element-text-font-family-fallback--body);
    --element-text-font-weight--rte-body: var(--element-text-font-weight--body);
    --element-text-letter-spacing--rte-body: var(--element-text-letter-spacing--body);
    --element-text-line-height--rte-body: var(--element-text-line-height--body);
    --element-text-text-transform--rte-body: var(--element-text-text-transform--body);

    /* Body Font Sizes */
    --element-text-font-size--rte-body: var(--element-text-font-size--body-md);
    --element-text-line-height--rte-body: var(--element-text-line-height--body);

    /* Heading Font Stack */
    --element-text-font-family--rte-heading: var(--element-text-font-family--heading);
    --element-text-font-family-fallback--rte-heading: var(--element-text-font-family-fallback--heading);
    --element-text-font-weight--rte-heading: var(--element-text-font-weight--heading);
    --element-text-letter-spacing--rte-heading: var(--element-text-letter-spacing--heading);
    --element-text-text-transform--rte-heading: var(--element-text-text-transform--heading);

    /* Heading Font Sizes */
    --element-text-font-size--rte-heading-h1: var(--element-text-font-size--heading-xl);
    --element-text-line-height--rte-heading-h1: var(--element-text-line-height--heading-xl);
    --element-text-font-size--rte-heading-h2: var(--element-text-font-size--heading-lg);
    --element-text-line-height--rte-heading-h2: var(--element-text-line-height--heading-lg);
    --element-text-font-size--rte-heading-h3: var(--element-text-font-size--heading-md);
    --element-text-line-height--rte-heading-h3: var(--element-text-line-height--heading-md);
    --element-text-font-size--rte-heading-h4: var(--element-text-font-size--heading-sm);
    --element-text-line-height--rte-heading-h4: var(--element-text-line-height--heading-sm);
    --element-text-font-size--rte-heading-h5: var(--element-text-font-size--heading-xs);
    --element-text-line-height--rte-heading-h5: var(--element-text-line-height--heading-xs);
    --element-text-font-size--rte-heading-h6: var(--element-text-font-size--heading-xs);
  }

  .element-text.element-text--rte {
    /* Body Font Stack */
    --_font-family--rte-body: var(--element-text-font-family--rte-body);
    --_font-family-fallback--rte-body: var(--element-text-font-family-fallback--rte-body);
    --_font-weight--rte-body: var(--element-text-font-weight--rte-body);
    --_letter-spacing--rte-body: var(--element-text-letter-spacing--rte-body);
    --_text-transform--rte-body: var(--element-text-text-transform--rte-body);

    /* Body Font Sizes */
    --_line-height--rte-body: var(--element-text-line-height--rte-body);
    --_font-size--rte-body: var(--element-text-font-size--rte-body);

    /* Heading Font Stack */
    --_font-family--rte-heading: var(--element-text-font-family--rte-heading);
    --_font-family-fallback--rte-heading: var(--element-text-font-family-fallback--rte-heading);
    --_font-weight--rte-heading: var(--element-text-font-weight--rte-heading);
    --_letter-spacing--rte-heading: var(--element-text-letter-spacing--rte-heading);
    --_text-transform--rte-heading: var(--element-text-text-transform--rte-heading);

    /* Heading Font Sizes */
    --_font-size--rte-heading-h1: var(--element-text-font-size--rte-heading-h1);
    --_line-height--rte-heading-h1: var(--element-text-line-height--rte-heading-h1);
    --_font-size--rte-heading-h2: var(--element-text-font-size--rte-heading-h2);
    --_line-height--rte-heading-h2: var(--element-text-line-height--rte-heading-h2);
    --_font-size--rte-heading-h3: var(--element-text-font-size--rte-heading-h3);
    --_line-height--rte-heading-h3: var(--element-text-line-height--rte-heading-h3);
    --_font-size--rte-heading-h4: var(--element-text-font-size--rte-heading-h4);
    --_line-height--rte-heading-h4: var(--element-text-line-height--rte-heading-h4);
    --_font-size--rte-heading-h5: var(--element-text-font-size--rte-heading-h5);
    --_line-height--rte-heading-h5: var(--element-text-line-height--rte-heading-h5);
    --_font-size--rte-heading-h6: var(--element-text-font-size--rte-heading-h6);
    --_line-height--rte-heading-h6: var(--element-text-line-height--rte-heading-h6);

    font-size: var(--_font-size--rte-body);
    font-family: var(--_font-family--rte-body), var(--_font-family-fallback--rte-body);
    font-weight: var(--_font-weight--rte-body);
    letter-spacing: var(--_letter-spacing--rte-body);
    text-transform: var(--_text-transform--rte-body);
    line-height: var(--_line-height--rte-body);

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--_font-family--rte-heading), var(--_font-family-fallback--rte-heading);
      font-weight: var(--_font-weight--rte-heading);
      letter-spacing: var(--_letter-spacing--rte-heading);
      text-transform: var(--_text-transform--rte-heading);
      margin: 0 0 var(--size-4);

      @media only screen and (min-width: 769px) {
        margin: 0 0 var(--size-5);
      }
    }

    h6 {
      font-size: var(--_font-size--rte-heading-h6);
      line-height: var(--_line-height--rte-heading-h6);
    }

    h5 {
      font-size: var(--_font-size--rte-heading-h5);
      line-height: var(--_line-height--rte-heading-h5);
    }

    h4 {
      font-size: var(--_font-size--rte-heading-h4);
      line-height: var(--_line-height--rte-heading-h4);
    }

    h3 {
      font-size: var(--_font-size--rte-heading-h3);
      line-height: var(--_line-height--rte-heading-h3);
    }

    h2 {
      font-size: var(--_font-size--rte-heading-h2);
      line-height: var(--_line-height--rte-heading-h2);
    }

    h1 {
      font-size: var(--_font-size--rte-heading-h1);
      line-height: var(--_line-height--rte-heading-h1);
    }

    a {
      text-decoration: underline;
    }

    p {
      margin-bottom: var(--size-8);

      &:last-child {
        margin-bottom: 0;
      }
    }

    & table {
      @media only screen and (max-width: 768px) {
        & td,
        & th {
          padding: 6px 8px;
        }
      }
    }

    .table-wrapper {
      max-width: 100%;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    .video-wrapper {
      position: relative;
      overflow: hidden;
      max-width: 100%;
      padding-bottom: 56.25%;

      & iframe,
      & video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    }
  }
:root {
    --element-text-font-family: initial;
    --element-text-font-family-fallback: initial;
    --element-text-font-weight: initial;
    --element-text-letter-spacing: initial;
    --element-text-text-transform: initial;
    --element-text-line-height: initial;
    --element-text-color: initial;
    --element-text-font-size: initial;
  }

  .element-text {
    /* Base Typography Variables */
    --_font-family: var(--element-text-font-family);
    --_font-family-fallback: var(--element-text-font-family-fallback);
    --_font-weight: var(--element-text-font-weight);
    --_letter-spacing: var(--element-text-letter-spacing);
    --_text-transform: var(--element-text-text-transform);
    --_line-height: var(--element-text-line-height);
    --_color: var(--element-text-color, currentColor);
    --_font-size: var(--element-text-font-size);

    font-family: var(--_font-family), var(--_font-family-fallback);
    font-weight: var(--_font-weight);
    letter-spacing: var(--_letter-spacing);
    text-transform: var(--_text-transform);
    line-height: var(--_line-height);
    color: var(--_color);
    font-size: var(--_font-size);
    margin: 0;
    -webkit-font-smoothing: antialiased;

    &.element-text--price {
      sup {
        top: -0.5em;
        font-size: 60%;
      }
    }

    &.element-text--align-start {
      text-align: start;
    }

    &.element-text--align-center {
      text-align: center;
    }

    &.element-text--align-end {
      text-align: end;
    }

    &.element-text--align-justify {
      text-align: justify;
    }

    &.element-text--break-word {
      word-break: break-word;
    }

    &.element-text--truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    &.element-text--visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    &.element-text--line-through {
      text-decoration: line-through;
    }

    &.element-text--line-through.element-text--price-superscript {
      text-decoration: none;

      span {
        text-decoration: line-through;
      }
      
      sup {
        text-decoration: line-through;
        position: relative;
        top: -0.5em;
        font-size: 60%;
      }
    }

    &.element-text--underline {
      text-decoration: underline;
    }

    &.element-text--uppercase {
      text-transform: uppercase;
    }

    &.element-text--lowercase {
      text-transform: lowercase;
    }

    &.element-text--capitalize {
      text-transform: capitalize;
    }
  }
video-media {
    --default-aspect-ratio: 16 / 9;

    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: var(--aspect-ratio, var(--default-aspect-ratio));
  }

  video-media > :is(video, iframe, img, svg) {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }

  video-media > img,
  video-media > svg,
  video-media > video:not(:fullscreen) {
    object-fit: cover;
    object-position: center;
  }

  .element-video[data-background='true'] > video-media,
  .element-video[data-background='true'] > .element-placeholder {
    position: absolute;
    height: 100%;
    width: 100%;
  }

  .element-video.aspect-ratio--square {
    --aspect-ratio: 1 / 1;
    aspect-ratio: 1 / 1;
  }

  .element-video.aspect-ratio--portrait {
    --aspect-ratio: 9 / 16;
    aspect-ratio: 9 / 16;
  }

  .element-video.aspect-ratio--landscape,
  .element-video.aspect-ratio--16-9 {
    --aspect-ratio: 16 / 9;
    aspect-ratio: 16 / 9;
  }

  video-media:not([loaded]) > :is(video, iframe),
  video-media[loaded] > img,
  video-media[loaded] > svg {
    visibility: hidden;
    opacity: 0;
  }
.newsletter__input-group {
    --_shopify-challenge-px: 0;
    --_shopify-challenge-py: var(--size-32);
    --_button-text-display: block;
    --_button-icon-display: none;

    --element-button-radius: 0 var(--element-input-radius) var(--element-input-radius) 0;

    margin: 0 auto;
    max-width: 400px;
    gap: var(--input-button-gap);

    [dir='rtl'] & {
      --element-button-radius: var(--element-input-radius) 0 0 var(--element-input-radius);
    }

    @media only screen and (max-width: 768px) {
      --_shopify-challenge-py: var(--size-7-5);
      --_shopify-challenge-px: var(--size-5-5);
      --_button-text-display: none;
      --_button-icon-display: block;
    }

    &:last-of-type {
      margin-bottom: 0;
    }

    .element-button {
      span {
        display: var(--_button-text-display);
      }

      .element-icon {
        --element-icon-size: var(--size-5);
        display: var(--_button-icon-display);
      }
    }
  }

  .shopify-challenge__container {
    padding: var(--_shopify-challenge-py) var(--_shopify-challenge-px);
  }

  .input-group {
    display: flex;

    .element-input {
      border-start-end-radius: 0;
      border-end-end-radius: 0;
    }
  }
.multi-selectors {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-wrap: wrap;
	}
	
	.multi-selectors__item {
	  margin: 0 20px;
	
	  .toolbar & {
	    margin-right: 0;
	    margin-bottom: 0;
	  }
	
	  .toolbar:has(.toolbar__scrolling-text) & {
	    margin-left: 0;
	  }
	}
	
	.multi-selectors--footer {
	  justify-content: flex-start;
	
	  & .multi-selectors__item {
	    margin-bottom: 20px;
	    margin-left: 0;
	  }
	}
	
	.currency-flag {
	  position: relative;
	  display: inline-block;
	  width: 22px;
	  height: 22px;
	  object-fit: cover;
	  vertical-align: middle;
	  overflow: hidden;
	  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3) inset;
	  border-radius: 50%;
	  background-clip: padding-box; /* Fix for android devices */
	}
	
	@media only screen and (max-width: 768px) {
	  [data-disclosure-currency] .disclosure-list {
	    left: 50%;
	    transform: translateX(-50%);
	    max-width: 90vw;
	  }
	
	  [data-disclosure-currency] .disclosure-list--single-true {
	    left: 0;
	    transform: none;
	  }
	}
	
	:root {
	  --max-height-disclosure: 60vh;
	  --min-height-disclosure: 92px;
	}
	
	.disclosure {
	  position: relative;
	}
	
	.disclosure__toggle {
	  white-space: nowrap;
	}
	
	.disclosure-list {
	  background-color: var(--root-color-secondary);
	  color: var(--root-color-primary);
	  bottom: 100%;
	  padding: 10px 0;
	  margin: 0;
	  position: absolute;
	  display: none;
	  min-height: var(--min-height-disclosure);
	  max-height: var(--max-height-disclosure);
	  overflow-y: auto;
	  border-radius: 0;
	  box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
	  z-index: 1;
	
	  & a,
	  & .disclosure-list__item a {
	    color: currentColor;
	  }
	}
	
	.disclosure-list--down {
	  bottom: auto;
	  top: 100%;
	}
	
	.disclosure-list--left {
	  right: 0;
	}
	
	.disclosure-list--visible {
	  display: block;
	}
	
	.disclosure-list__item {
	  white-space: nowrap;
	  padding: 5px 15px 4px;
	  text-align: left;
	}
	
	.disclosure-list__option {
	  &:focus,
	  &:hover {
	    & .disclosure-list__label {
	      text-decoration: underline;
	    }
	  }
	}
	
	.disclosure-list__item--current {
	  & .disclosure-list__label {
	    text-decoration: underline;
	  }
	}
	
	.disclosure-list__label {
	  display: inline-block;
	  vertical-align: middle;
	  text-underline-offset: 0.2rem;
	
	  [data-disclosure-currency] & {
	    padding-left: 10px;
	  }
	
	  & span {
	    border-bottom: 2px solid transparent;
	
	    .is-active & {
	      border-bottom: 2px solid currentColor;
	    }
	  }
	}
predictive-search {
	  --element-button-color-primary: #000000;
	  --element-button-box-shadow: transparent;
	  --element-button-icon-size: 28px;
	  --element-input-height: 100%;
	  --element-input-width: 100%;
	  --element-icon-color: #000000;
	  --element-icon-opacity: 1;
	
	  display: flex;
	  align-items: center;
	  position: relative;
	  width: 100%;
	  max-width: 1600px;
	  margin: 0 auto;
	
	  &.is-active {
	    flex: 99;
	  }
	
	  &.is-active .predictive__screen {
	    display: block;
	    z-index: 3;
	  }
	
	  &.is-active .element-button--close-search {
	    display: flex;
	  }
	}
	
	.site-header__search-island {
	  display: block;
	  width: 100%;
	}
	
	.site-header__search-results {
	  position: absolute;
	  top: 100%;
	  transform: translateY(var(--header-padding-bottom));
	  left: 0;
	  right: 0;
	  background-color: var(--root-color-secondary);
	  color: var(--root-color-primary);
	  max-height: 70vh;
	  max-height: calc(90vh - 100%);
	  overflow: auto;
	  transition: transform 0.3s cubic-bezier(0.18, 0.77, 0.58, 1);
	
	  .header-wrapper--compressed & {
	    transform: translateY(0);
	  }
	}
	
	.site-header__search-results-wrapper {
	  padding: 15px 0;
	}
	
	@media only screen and (min-width: 769px) {
	  .site-header__search-results {
	    max-height: calc(100vh - 100% - 33px); /*search bar + toolbar*/
	  }
	
	  .site-header__search-results-wrapper {
	    padding: 30px 0;
	  }
	}
	
	.predictive__label {
	  margin-top: 20px;
	  border-bottom: 1px solid;
	  border-bottom-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  padding-bottom: 5px;
	  margin-bottom: 20px;
	}
	
	:root {
	  /*Layout for article/images*/
	  --predictive-gap: 10px;
	}
	
	.predictive-result__layout {
	  display: flex;
	  flex-wrap: wrap;
	  padding: var(--predictive-gap);
	  margin-left: calc(var(--predictive-gap) * -1);
	  margin-right: calc(var(--predictive-gap) * -1);
	
	  & > div {
	    margin: 0 var(--predictive-gap) var(--gutter);
	
	    &:last-child {
	      margin-bottom: 0;
	    }
	  }
	
	  & [data-type-products] {
	    flex: 1 1 60%;
	    margin-bottom: 0;
	
	    & img {
	      object-fit: contain;
	    }
	
	    & .predictive-image-fill-space--true img {
	      object-fit: cover;
	    }
	  }
	
	  & [data-type-collections],
	  & [data-type-pages] {
	    flex: 1 1 200px;
	  }
	
	  & [data-type-articles] {
	    flex: 1 1 60%;
	
	    & .grid-item__meta {
	      margin-left: 10px;
	    }
	  }
	}
	
	.predictive__image-wrap {
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	
	  & img {
	    object-position: 50% 0;
	  }
	}
	
	.predictive-results__footer {
	  padding: 0 0 30px;
	}
	
	.predictive-overflow-hidden {
	  overflow: hidden;
	
	  @media only screen and (max-width: 768px) {
	    overflow: auto;
	  }
	}
	
	.predictive__screen {
	  position: fixed;
	  width: 100vw;
	  height: 100vh;
	  top: 0;
	  left: 0;
	  background: color-mix(in srgb, var(--color-secondary) var(--shade-60), transparent);
	  display: none;
	}
	
	predictive-search form {
	  display: flex;
	  flex-wrap: wrap;
	  z-index: 4;
	  position: relative;
	  width: 100%;
	}
	
	.search__input-wrap {
	  position: relative;
	  flex: 5;
	  transition: flex 0.3s ease-in-out;
	}
	
	.search__input {
	  background-color: #F3FDFE !important;
	  border: 1px solid #000000 !important;
	  border-radius: 50px;
	  padding-right: 45px !important;
	}
	
	.element-button--search {
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  right: 0;
	  color: #000000 !important;
	
	  [dir='rtl'] & {
	    right: auto;
	    left: 0;
	  }
	  
	  & svg {
	    fill: #000000 !important;
	  }
	}
	
	.element-button--close-search.element-button {
	  display: none;
	  flex: 30px 0 0;
	}
	
	.search__results {
	  background: var(--root-color-secondary);
	  color: var(--root-color-primary);
	  position: absolute;
	  width: 100%;
	  min-width: 400px;
	  top: 100%;
	  padding: 0;
	  display: none;
	  margin-top: 10px;
	  container-type: inline-size;
	  max-height: 80vh;
	  overflow-y: auto;
	  word-break: break-all;
	
	  @media only screen and (max-width: 768px) {
	    width: calc(100% + var(--page-width-padding, 17px) * 2);
	    margin-left: calc(var(--page-width-padding, 17px) * -1);
	    margin-right: calc(var(--page-width-padding, 17px) * -1);
	    max-height: 75vh;
	
	    .template-search .page-content & {
	      max-height: 50vh;
	    }
	  }
	}
.product-form__submit-button--pulsing {
    animation: product-form-pulse 1.5s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.6;
  }
  
  @keyframes product-form-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }
product-form-messages {
    display: inline;
  }

  product-form-messages.hide {
    display: none;
  }
html {
	  touch-action: manipulation;
	}
	
	html[dir='rtl'] {
	  direction: rtl;
	}
	
	html, body {
	  color: var(--root-color-primary);
	  background-color: var(--root-color-secondary);
	}
	
	@media only screen and (max-width: 768px) {
	  @media (hover: none) and (pointer: coarse) {
	    .lock-scroll {
	      overflow: hidden !important;
	      touch-action: none;
	      -webkit-overflow-scrolling: auto;
	    }
	  }
	}
	
	.page-width {
	  max-width: var(--page-width);
	  margin: 0 auto;
	}
	
	.page-width,
	.page-full {
	  padding: 0 var(--page-width-padding);
	}
	
	.page-width--narrow {
	  max-width: var(--page-narrow);
	}
	
	.page-width--tiny {
	  max-width: 450px;
	}
	
	@media only screen and (max-width: 768px) {
	  .page-width--flush-small {
	    padding: 0;
	  }
	}
	
	.page-content,
	.shopify-policy__container,
	.shopify-email-marketing-confirmation__container {
	  padding-top: var(--page-top-padding);
	  padding-bottom: var(--page-top-padding);
	}
	
	.shopify-email-marketing-confirmation__container {
	  text-align: center;
	}
	
	hr,
	.hr--small,
	.hr--medium,
	.hr--large {
	  height: 1px;
	  border: 0;
	  border-top: 1px solid;
	  border-top-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	}
	
	.hr--small {
	  margin: 15px auto;
	}
	
	.hr--medium {
	  margin: 30px auto;
	}
	
	.hr--large {
	  margin: var(--gutter) auto;
	
	  @media only screen and (min-width: 769px) {
	    margin: calc(var(--gutter) * 1.5) auto;
	  }
	
	  .page-blocks + &,
	  .page-blocks + [data-section-type='recently-viewed'] & {
	    margin-top: 0;
	  }
	}
	
	.hr--clear {
	  border: 0;
	}
	
	/*============================================================================
	  Responsive tables, defined with .table--responsive on table element.
	==============================================================================*/
	.table--responsive {
	  @media only screen and (max-width: 768px) {
	    & thead {
	      display: none;
	    }
	
	    & tr {
	      display: block;
	    }
	
	    & tr,
	    & td {
	      float: left;
	      clear: both;
	      width: 100%;
	    }
	
	    & th,
	    & td {
	      display: block;
	      text-align: right;
	      padding: 15px;
	    }
	
	    & td:before {
	      content: attr(data-label);
	      float: left;
	      font-size: 12px;
	      padding-right: 10px;
	    }
	  }
	}
	
	@media only screen and (max-width: 768px) {
	  .table--small-hide {
	    display: none !important;
	  }
	
	  .table__section + .table__section {
	    position: relative;
	    margin-top: 10px;
	    padding-top: 15px;
	
	    &:after {
	      content: '';
	      display: block;
	      position: absolute;
	      top: 0;
	      left: 15px;
	      right: 15px;
	      border-bottom: 1px solid;
	      border-bottom-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	    }
	  }
	}
	
	details summary::-webkit-details-marker {
	  display: none;
	}
html {
	  font-size: var(--root-font-size);
	}
	
	body,
	.body-font-stack {
	  font-family: var(--element-text-font-family--body), var(--element-text-font-family-fallback--body);
	  font-weight: var(--element-text-font-weight--body);
	  letter-spacing: var(--element-text-letter-spacing--body);
	  text-transform: var(--element-text-text-transform--body);
	  line-height: var(--element-text-line-height--body);
	  -webkit-font-smoothing: antialiased;
	
	  &:not(.body-font-stack) {
	    font-size: var(--element-text-font-size--body-md);
	  }
	}
	
	small {
	  font-size: var(--element-text-font-size--body-sm)
	}
	
	.accent-font-stack {
	  font-family: var(--element-text-font-family--accent), var(--element-text-font-family-fallback--accent);
	  font-weight: var(--element-text-font-weight--accent);
	  letter-spacing: var(--element-text-letter-spacing--accent);
	  text-transform: var(--element-text-text-transform--accent);
	  line-height: var(--element-text-line-height--accent);
	  font-size: var(--element-text-font-size--accent);
	}
	
	.h0, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	    margin: 0 0 var(--size-4);
	}
	
	@media only screen and (min-width: 769px) {
	  .h0, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	      margin: 0 0 var(--size-5);
	  }
	}
	
	.heading-font-stack,
	:where(h1, h2, h3, h4, h5, h6),
	:is(.heading-2xl, .heading-xl, .heading-lg, .heading-md, .heading-sm, .heading-xs),
	:is(.heading-h0, .h0, .heading-h1, .h1, .heading-h2, .h2, .heading-h3, .h3, .heading-h4, .h4, .heading-h5, .h5) {
	  font-family: var(--element-text-font-family--heading), var(--element-text-font-family-fallback--heading);
	  font-weight: var(--element-text-font-weight--heading);
	  letter-spacing: var(--element-text-letter-spacing--heading);
	  text-transform: var(--element-text-text-transform--heading); 
	
	  &:not(.heading-font-stack) {
	    display: block;
	
	    & a {
	      text-decoration: none;
	      font-weight: inherit;
	    }
	  }
	
	  /* Use higher specificity for class styles so they can override element styles */
	  &:is(.heading-2xl),
	  &:is(.heading-h0, .h0) {
	    font-size: var(--element-text-font-size--heading-2xl);
	    line-height: var(--element-text-line-height--heading-2xl);
	  }
	
	  &:where(h1),
	  &:is(.heading-xl),
	  &:is(.heading-h1, .h1) {
	    font-size: var(--element-text-font-size--heading-xl);
	    line-height: var(--element-text-line-height--heading-xl);
	  }
	
	  &:where(h2),
	  &:is(.heading-lg),
	  &:is(.heading-h2, .h2) {
	    font-size: var(--element-text-font-size--heading-lg);
	    line-height: var(--element-text-line-height--heading-lg);
	  }
	
	  &:where(h3),
	  &:is(.heading-md),
	  &:is(.heading-h3, .h3) {
	    font-size: var(--element-text-font-size--heading-md);
	    line-height: var(--element-text-line-height--heading-md);
	  }
	
	  &:where(h4),
	  &:is(.heading-sm),
	  &:is(.heading-h4, .h4) {
	    font-size: var(--element-text-font-size--heading-sm);
	    line-height: var(--element-text-line-height--heading-sm);
	  }
	
	  &:where(h5),
	  &:is(.heading-xs),
	  &:is(.heading-h5, .h5) {
	    font-size: var(--element-text-font-size--heading-xs);
	    line-height: var(--element-text-line-height--heading-xs);
	  }

		&:where(h6),
	  &:is(.heading-2xs),
	  &:is(.heading-h6, .h6) {
	    font-size: var(--element-text-font-size--heading-2xs);
	    line-height: var(--element-text-line-height--heading-2xs);
	  }
	}
	
	.slideshow-slide {
	  --element-text-font-size--heading-2xl: var(--text-size-scale-n{{ 11 |  plus: block.heading_modifier }});
	}
	
	
	p {
	  margin: 0 0 calc(var(--gutter) / 2) 0;
	}
	
	p:last-child {
	  margin-bottom: 0;
	}
	
	blockquote,
	.rte blockquote {
	  margin: 0;
	  padding: calc(var(--gutter) / 2) var(--gutter) 40px;
	
	  & p {
	    margin-bottom: 0;
	
	    & + cite {
	      margin-top: calc(var(--gutter) / 2);
	    }
	  }
	
	  & cite {
	    display: block;
	  }
	}
	
	code,
	pre {
	  background-color: #faf7f5;
	  font-family: Consolas, monospace;
	  font-size: 1em;
	  border: 0 none;
	  padding: 0 2px;
	  color: #51ab62;
	}
	
	pre {
	  overflow: auto;
	  padding: calc(var(--gutter) / 2);
	  margin: 0 0 var(--gutter);
	}
	
	.text-label a {
	  text-decoration: underline;
	  text-underline-offset: 2px;
	}
	
	.label-info {
	  display: block;
	  margin-bottom: 10px;
	}
	
	.accent-subtitle {
	  letter-spacing: 0.07em;
	  margin: 0 0 20px;
	}
	
	/*Standardize text spacing sometimes*/
	.text-spacing,
	.text-spacing.rte:last-child {
	  margin-bottom: 15px;
	
	  @media only screen and (min-width: 769px) {
	    margin-bottom: 25px;
	  }
	}
	
	.enlarge-text {
	  font-size: calc(var(--element-text-font-size--body-md) + 2px);
	
	  @media only screen and (min-width: 769px) {
	    font-size: calc(var(--element-text-font-size--body-md) + 4px);
	  }
	}
	
	@media only screen and (min-width: 769px) {
	  .table--small-text {
	    font-size: calc(var(--element-text-font-size--body-md) * 0.85);
	  }
	}
	
	.index-section--footer {
	  & h3 {
	    font-size: 1.5em;
	  }
	}
	
	/*================ RTL overrides ================*/
	html[dir='rtl'] {
	  & .text-left {
	    text-align: right !important;
	  }
	
	  & .text-right {
	    text-align: left !important;
	  }
	}
	
	/*Icon + text element that prevents awkward line wrapping*/
	.icon-and-text {
	  display: flex;
	  flex-wrap: nowrap;
	  align-items: center;
	
	  & .element-icon {
	    flex: 0 0 auto;
	  }
	}
	
	/* Text Highlights */
	
	.text-highlight {
	  & em {
	    font-style: normal;
	  }
	
	  &.heading-2xl a,
	  &.heading-xl a,
	  &.heading-lg a,
	  &.heading-md a,
	  &.heading-sm a,
	  &.heading-xs a {
	    text-decoration: underline;
	    text-underline-offset: 2px;
	  }
	}
	
	.text-highlight--outline {
	  & em {
	    -webkit-text-stroke-width: 1px;
	    -webkit-text-stroke-color: inherit;
	    -webkit-text-fill-color: var(--root-color-secondary);
	
	    .color-scheme-1 & {
	      -webkit-text-fill-color: var(--color-scheme-1-secondary);
	    }
	
	    .color-scheme-2 & {
	      -webkit-text-fill-color: var(--color-scheme-2-secondary);
	    }
	
	    .color-scheme-3 & {
	      -webkit-text-fill-color: var(--color-scheme-3-secondary);
	    }
	  }
	}
	
	.text-highlight--regular {
	  & em {
	    font-style: italic;
	  }
	}
	
	.text-highlight--serif {
	  & em {
	    font-family: serif;
	    font-style: italic;
	  }
	}
	
	.text-highlight--handwrite {
	  & em {
	    font-family: cursive;
	    font-style: italic;
	  }
	}
	
	.text-highlight--accent-color {
	  & em {
	    color: var(--color-sale-tag);
	  }
	}
.flickity-enabled {
	  position: relative;
	}
	
	.flickity-enabled:focus {
	  outline: none;
	}
	
	.flickity-viewport {
	  overflow: hidden;
	  position: relative;
	  transition: height 0.35s;
	  height: 100%;
	}
	
	.flickity-slider {
	  position: absolute;
	  width: 100%;
	  height: 100%;
	}
	
	.flickity-enabled.is-draggable {
	  user-select: none;
	}
	
	.flickity-enabled.is-draggable .flickity-viewport {
	  cursor: move;
	  cursor: grab;
	
	  &.is-pointer-down {
	    cursor: grabbing;
	  }
	}
	
	.flickity-enabled.is-draggable[data-arrows='true'] .flickity-viewport {
	  cursor: default;
	
	  &.is-pointer-down {
	    cursor: default;
	  }
	}
	
	.flickity-button {
	  position: absolute;
	  border: none;
	  color: var(--color-button-primary-text);
	  background: var(--color-button-primary);
	  border-radius: 50%;
	
	  .hero & {
	    color: var(--root-color-primary);
	    background-color: var(--root-color-secondary);
	    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	  }
	}
	
	.flickity-button:hover {
	  cursor: pointer;
	  opacity: 1;
	}
	
	.flickity-button:disabled {
	  display: none;
	  cursor: auto;
	  pointer-events: none;
	}
	
	.flickity-prev-next-button {
	  top: 50%;
	  width: 40px;
	  height: 40px;
	  transform: translateY(-50%);
	
	  /*Smaller arrows on mobile*/
	  @media only screen and (max-width: 768px) {
	    width: 33px;
	    height: 33px;
	  }
	}
	
	.flickity-prev-next-button:hover {
	  transform: translateY(-50%) scale(1.12);
	}
	.flickity-prev-next-button:active {
	  transform: translateY(-50%) scale(1);
	  transition: transform 0.05s ease-out;
	}
	
	.flickity-previous {
	  left: 10px;
	}
	.flickity-next {
	  right: 10px;
	}
	.flickity-rtl .flickity-previous {
	  left: auto;
	  right: 10px;
	}
	.flickity-rtl .flickity-next {
	  right: auto;
	  left: 10px;
	}
	
	.flickity-button-icon {
	  position: absolute;
	  left: 35%;
	  top: 35%;
	  width: 30%;
	  height: 30%;
	  fill: currentColor;
	}
	
	.flickity-page-dots {
	  position: absolute;
	  width: 100%;
	  bottom: -25px;
	  padding: 0;
	  margin: 0;
	  list-style: none;
	  text-align: center;
	  line-height: 1;
	  color: currentColor;
	  z-index: 2;
	
	  .hero & {
	    bottom: 20px;
	    color: #fff;
	  }
	}
	
	.flickity-rtl .flickity-page-dots {
	  direction: rtl;
	}
	
	.flickity-page-dots .dot {
	  display: inline-block;
	  vertical-align: middle;
	  width: 6px;
	  height: 6px;
	  margin: 0 5px;
	  border-radius: 100%;
	  cursor: pointer;
	  background-color: currentColor;
	  opacity: 0.2;
	
	  &:hover {
	    opacity: 0.6;
	  }
	}
	
	.flickity-page-dots .dot.is-selected {
	  opacity: 1;
	  background-color: currentColor;
	  width: 9px;
	  height: 9px;
	}
	
	.flickity-enabled.is-fade .flickity-slider > * {
	  pointer-events: none;
	  z-index: 0;
	}
	
	.flickity-enabled.is-fade .flickity-slider > .is-selected {
	  pointer-events: auto;
	  z-index: 1;
	}
	
	/*
	  Hero specific styles for flickity dots/arrows
	 */
	.hero[data-arrows='true'] {
	  overflow: visible;
	
	  & .flickity-prev-next-button {
	    top: auto;
	    bottom: -20px;
	    transform: none;
	    z-index: 2;
	  }
	
	  & .flickity-prev-next-button:hover {
	    transform: scale(1.12);
	  }
	  & .flickity-prev-next-button:active {
	    transform: scale(1);
	  }
	
	  & .flickity-previous {
	    left: auto;
	    right: 90px;
	  }
	  & .flickity-next {
	    right: 40px;
	  }
	  &.flickity-rtl .flickity-previous {
	    right: auto;
	    left: 90px;
	  }
	  &.flickity-rtl .flickity-next {
	    right: auto;
	    left: 40px;
	  }
	
	  @media only screen and (max-width: 768px) {
	    & .flickity-prev-next-button {
	      bottom: -16px;
	    }
	    & .flickity-previous {
	      right: 60px;
	    }
	    & .flickity-next {
	      right: 20px;
	    }
	    &.flickity-rtl .flickity-previous {
	      left: 60px;
	    }
	    &.flickity-rtl .flickity-next {
	      left: 20px;
	    }
	  }
	}
	
	/*Change dots to bars*/
	[data-bars='true'] {
	  &.hero .flickity-page-dots {
	    bottom: 0;
	    height: 6px;
	    line-height: 6px;
	    z-index: 2;
	  }
	
	  & .flickity-page-dots .dot {
	    position: relative;
	    border-radius: 0;
	    width: 120px;
	    height: 6px;
	    border: 0;
	    opacity: 1;
	    vertical-align: top;
	    background: none;
	    overflow: hidden;
	
	    @media only screen and (max-width: 768px) {
	      width: 45px;
	    }
	
	    &:before,
	    &:after {
	      content: '';
	      display: block;
	      position: absolute;
	      left: 0;
	      height: 100%;
	      width: 100%;
	    }
	
	    &:before {
	      opacity: 0.1;
	      background-color: #000;
	    }
	
	    &:hover:before {
	      opacity: 0.2;
	    }
	
	    &:after {
	      transform: translateX(-100%);
	      transition: none;
	      background-color: currentColor;
	    }
	
	    &.is-selected:after {
	      animation: slideshowBars 0s linear forwards;
	    }
	  }
	}
/*
	  A place for CSS rules that probably should be part of a component but require
	  duplicated code to be abstracted to a new component or general refactoring.
	*/

  /*Animate hamburger icon when nav open*/
  .mobile-nav-trigger,
  .site-nav__compress-menu {
    & path {
      transition: all 0.3s cubic-bezier(0.18, 0.77, 0.58, 1);
    }

    &[aria-expanded='true'],
    &.is-active {
      & path:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 20% 30%;
      }
      & path:nth-child(2) {
        opacity: 0;
      }
      & path:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 15% 66%;
      }
    }
  }

  /*
	  -------------------------------------
	  Shared PDP Styles
	  -------------------------------------
	*/

  @media only screen and (min-width: 769px) {
    .product-single__sticky {
      position: sticky;
      top: 20px;
    }

    .modal--quick-shop .product-single__sticky {
      top: 0;
    }

    /* Scrollable description column for stacked image layout */
    .product-grid__container:has(.small--hide [data-media-gallery-layout='stacked']) .product--description.product-single__sticky {
      max-height: 100vh;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .product-full-width {
      margin-top: 40px;
    }
  }

  @media only screen and (max-width: 768px) {
    .grid--product-images-right {
      display: flex;
      flex-wrap: wrap;

      & .grid__item:first-child {
        order: 2;
      }
    }

    /* Custom full-width layout for product tabs on mobile */
    .product-full-width .page-width--narrow {
      max-width: none;
    }
  }

  .page-content--product {
    padding-top: 40px;
    padding-bottom: 0;

    @media only screen and (max-width: 768px) {
      padding: 0;
    }

    /* Prevent jittery sizing while loading in quick view */
    .modal--quick-shop & {
      width: var(--page-width);
      max-width: 100%;
    }
  }

  .product-single__meta {
    padding-top: 65px;
    padding-left: 45px;

    @media only screen and (max-width: 768px) {
      padding-top: 0;
      padding-left: 0;
      margin-top: calc(var(--gutter) / 2);
      margin-bottom: calc(var(--gutter) / 2);
    }

    .grid--product-images-right & {
      padding-left: 0;
      padding-right: 45px;

      @media only screen and (max-width: 768px) {
        padding-right: 0;
      }
    }

    & .rte {
      text-align: left;

      html[dir='rtl'] & {
        text-align: right;
      }
    }

    & > *:first-child {
      padding-top: 0;
    }
  }

  /*Hide selectable elements when slide is not active*/
  .flickity-enabled {
    .product-main-slide:not(.is-selected) {
      & button,
      & video,
      & iframe,
      & model-viewer {
        display: none;
      }
    }
  }

  .product-main-slide {
    display: none;
    width: 100%;
    overflow: hidden;
    margin-block-start: 0;
    @media only screen and (max-width: 768px) {
      /* Set initial width to prevent layout shifts */
      .grid--product-images--partial & {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /*Hide all but first slide to prevent page reflows prior to init*/
    &:first-child {
      display: block;
    }

    @media only screen and (max-width: 768px) {
      border: 1px solid;
      border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
    }

    [data-media-gallery-layout='stacked'] & {
      display: block;
      margin: 0 auto 8px;
    }

    .flickity-slider & {
      display: block;

      /*show a bit of the next image*/
      @media only screen and (max-width: 768px) {
        .grid--product-images--partial & {
          width: 75%;
          margin-right: 10px;
        }
      }
    }
  }

  /*Used anywhere unit price is visible*/
  .product__unit-price {
    font-size: calc(var(--element-text-font-size--body-md) - 3px);
    opacity: 0.65;
    flex: 100%;
  }

  /*Product page mobile*/

  .product--images {
    @media only screen and (max-width: 768px) {
      order: 1;
    }
  }

  .product--description {
    @media only screen and (max-width: 768px) {
      order: 3;
    }
  }

  /*
	  -------------------------------------
	  Sections
	  -------------------------------------
	*/

  .index-section {
    margin: var(--index-section-padding) 0;

    /*Required so box-shadow on .main-content doesn't appear
	  when first section has no background*/
    &:not(.index-section--sub-product):first-child {
      margin-top: 0;
      padding-top: var(--index-section-padding);
    }
  }

  .index-section + .index-section,
  .index-section + .index-section--hidden {
    margin-top: 0;
  }

  .page-width .index-section .page-width {
    padding-left: 0;
    padding-right: 0;
  }

  .index-section--flush {
    margin: 0;
  }

  .section--divider {
    border-top: 1px solid;
    border-top-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
    padding-top: var(--index-section-padding);
  }

  /*Hide footer sections on /challenge page*/
  .template-challange .index-section--footer {
    display: none;
  }

  .theme-block {
    margin-bottom: 30px;

    &:last-child {
      margin-bottom: 0;
    }
  }

  /*
	  -------------------------------------
	  Article Tags + Elements
	  -------------------------------------
	*/

  /*Date, comments, author*/
  .article__sub-meta {
    opacity: 0.65;
    font-size: calc(var(--element-text-font-size--body-md) - 2px);

    & > span {
      position: relative;
      display: inline-block;
      margin-bottom: 2px;
      margin-right: 10px;

      [dir='rtl'] & {
        margin-right: 0;
        margin-left: 10px;
      }

      &:not(:last-child):after {
        content: '\b7';
        display: inline-block;
        margin-left: 10px;

        [dir='rtl'] & {
          margin-left: 0;
          margin-right: 10px;
        }
      }
    }

    .section-header & {
      margin-top: 20px;
    }
  }

  .article__sub-meta-tags {
    display: inline-block;
  }

  .article__sub-meta-date {
    text-transform: uppercase;
  }

  .article__title {
    font-weight: var(--element-text-font-weight--heading);
  }

  /*
	  -------------------------------------
	  Color Swatches
	  -------------------------------------
	*/
  [data-color-swatch],
  .color-swatch {
    position: relative;
    display: block;
    text-indent: -9999px;
    overflow: hidden;
    margin: 0 4px 4px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.5em;
    border: 3px solid;
    border-color: var(--root-color-secondary);
    border-radius: var(--element-swatch-radius, 0);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
    transition: box-shadow 0.1s ease;
    width: var(--swatch-size, var(--size-10));
    height: var(--swatch-size, var(--size-10));

    &.is-active {
      box-shadow: 0 0 0 1px var(--root-color-primary);
    }
  }
/*
	  -------------------------------------
	  Modals
	  -------------------------------------
	*/
	
	/* TODO: Refactor to components */
	
	.modal {
	  display: none;
	  bottom: 0;
	  left: 0;
	  opacity: 1;
	  overflow: hidden;
	  position: fixed;
	  right: 0;
	  top: 0;
	  z-index: var(--z-index-modal);
	  color: #fff;
	  align-items: center;
	  justify-content: center;
	
	  &.modal--quick-shop {
	    align-items: flex-start;
	  }
	
	  & a:not(.btn),
	  & a:not(.btn):hover {
	    color: inherit;
	  }
	
	  .modal-open & {
	    & .modal__inner {
	      animation: modal-open 0.3s forwards;
	    }
	
	    &:before {
	      content: '';
	      position: fixed;
	      top: 0;
	      left: 0;
	      width: 100%;
	      height: 100%;
	      background-color: color-mix(in srgb, var(--color-secondary) var(--shade-60), transparent);
	      animation: overlay-on 0.3s forwards;
	      cursor: pointer;
	    }
	  }
	
	  .modal-closing & {
	    & .modal__inner {
	      animation: modal-closing 0.15s forwards;
	    }
	
	    &:before {
	      content: '';
	      position: fixed;
	      top: 0;
	      left: 0;
	      width: 100%;
	      height: 100%;
	      background-color: color-mix(in srgb, var(--color-secondary) var(--shade-60), transparent);
	      animation: overlay-off 0.15s forwards;
	    }
	  }
	
	  .modal-open--solid &:before {
	    background-color: color-mix(in srgb, var(--color-secondary) var(--shade-60), transparent);
	  }
	}
	
	.modal--is-closing {
	  display: flex !important; /*override .is-transitioning styles*/
	  overflow: hidden;
	}
	
	.modal--is-active {
	  display: flex !important; /*override .is-transitioning styles*/
	  overflow: hidden;
	}
	
	/*Class on body element when modal open.
	Only medium-up because iOS jumps to top otherwise*/
	@media only screen and (min-width: 769px) {
	  .modal-open {
	    overflow: hidden;
	    /*Reserves space for the scrollbar, even when hidden, to maintain a consistent layout.*/
	    scrollbar-gutter: stable;
	  }
	}
	
	.modal__inner {
	  transform-style: preserve-3d;
	  flex: 0 1 auto;
	  margin: calc(var(--gutter) / 2);
	  max-width: calc(100% - 30px);
	  display: flex;
	  align-items: center;
	  box-shadow: 0 12px 25px rgb(0 0 0 / 15%);
	  border-radius: var(--roundness);
	
	  @media only screen and (min-width: 769px) {
	    margin: 40px;
	    max-width: calc(100% - 80px);
	  }
	
	  .modal--square & {
	    border-radius: var(--roundness);
	  }
	
	  & .scheme-image {
	    border-radius: calc(var(--roundness) + 2px);
	  }
	}
	
	/*No max height on product images*/
	.modal__inner {
	  & .image-wrap img {
	    max-height: none;
	  }
	}
	
	.modal__centered {
	  position: relative;
	  flex: 0 1 auto;
	  min-width: 1px; /*ie10 thing*/
	  max-width: 100%;
	}
	
	.modal__centered-content {
	  .modal--square & {
	    max-height: 80vh;
	    padding: 30px;
	    min-width: 200px;
	    min-height: 200px;
	    border-radius: var(--roundness);
	    overflow: auto;
	    -webkit-overflow-scrolling: touch;
	
	    @media only screen and (min-width: 769px) {
	      padding: calc(var(--gutter) * 1.5);
	      max-height: 90vh;
	      max-width: 1200px;
	    }
	  }
	}
	
	.modal--square .modal__centered-content--padded {
	  padding: 60px;
	}
	
	.modal__close {
	  --element-button-radius: var(--radius-full);
	
	  position: absolute;
	  top: 0;
	  right: 0;
	  transform: translate(25%, -25%);
	  z-index: 2;
	
	  .modal--is-closing & {
	    display: none;
	  }
	}
	
	/*Ajax page adjustments*/
	.modal {
	  & .page-content,
	  & .page-width {
	    padding: 0;
	  }
	}
	
	@media only screen and (max-width: 768px) {
	  .modal--mobile-friendly {
	    top: auto;
	    bottom: 20px;
	    overflow: auto;
	
	    &.modal--square .modal__centered-content {
	      padding: 30px;
	    }
	
	    &.modal--is-active {
	      overflow: visible;
	    }
	
	    .modal-open & {
	      &:before {
	        display: none;
	      }
	    }
	
	    & .modal__inner {
	      margin: 0;
	    }
	
	    & .heading-xl {
	      padding-right: 25px;
	    }
	
	    & input {
	      font-size: 16px !important;
	    }
	
	    & .text-close {
	      display: none;
	    }
	  }
	}
	
	/*Always sits on modal overlay (light), so hardcode black*/
	.modal__footer-text {
	  padding: calc(var(--gutter) / 2) var(--gutter);
	  text-align: center;
	
	  & a {
	    color: currentColor;
	    text-decoration: underline;
	    text-underline-offset: 2px;
	  }
	}
.rte {
	  display: block;
	  margin-bottom: calc(var(--gutter) / 4);

	  @media only screen and (min-width: 769px) {
	    margin-bottom: calc(var(--gutter) / 2);
	  }

	  &:last-child {
	    margin-bottom: 0;
	  }

	  & + .rte {
	    margin-top: var(--gutter);
	  }

	  & p,
	  & ul,
	  & ol,
	  & table {
	    margin-bottom: 15px;

	    @media only screen and (min-width: 769px) {
	      margin-bottom: 25px;
	    }

	    &:last-child {
	      margin-bottom: 0;
	    }
	  }

	  & ul {
	    & ul {
	      margin-bottom: 0;
	    }
	  }

	  /*Add some top margin to headers from the rich text editor*/
	  & h1,
	  & h2,
	  & h3,
	  & h4,
	  & h5,
	  & h6 {
	    margin-top: 60px;
	    margin-bottom: 25px;
	  }

	  & h1,
	  & h2,
	  & h3,
	  & h4,
	  & h5,
	  & h6 {
	    &:first-child {
	      margin-top: 0;
	    }

	    & a {
	      text-decoration: underline;
	    }
	  }

	  /*In case merchants paste meta tags into their content by accident*/
	  & meta:first-child {
	    & + h1,
	    & + h2,
	    & + h3,
	    & + h4,
	    & + h5,
	    & + h6 {
	      margin-top: 0;
	    }
	  }

	  /*Mimic a paragraph tag because they're not always created*/
	  & > div {
	    margin-bottom: calc(var(--gutter) / 2);

	    &:last-child {
	      margin-bottom: 0;
	    }
	  }

	  ul {
	    list-style: disc inside;
	  }

	  ol {
	    list-style: decimal inside;
	  }

	  & li {
	    margin-bottom: 0;
	  }

	  & table {
	    table-layout: fixed;
	  }
	}

	.rte--block {
	  margin-bottom: 8px;
	  @media only screen and (min-width: 769px) {
	    margin-bottom: 12px;
	  }
	}

	.rte-setting {
	  & > p:last-child {
	    margin-bottom: 0;
	  }
	}

	.rte,
	.rte-setting {
	  & a:not(.element-button) {
	    text-decoration: underline;
	  }

	  & img {
	    height: auto;
	  }

	  & a:not(.rte__image):not(.element-button) {
	    text-decoration: underline;
	    text-underline-offset: 2px;
	  }

	  & a.rte__image:after {
	    content: none;
	  }
	}

	.text-center .rte,
	.text-center.rte,
	.text-right .rte,
	.text-right.rte {
	  & ul,
	  & ol {
	    list-style-position: inside;
	    margin-left: 0;
	  }
	}

	.rte--nomargin {
	  margin-bottom: 0;
	}
.cart__discounts {
    margin-top: -10px;
    margin-bottom: 10px;
  }

  /* Cart page layout */
  @media only screen and (min-width: 769px) {
    .cart__page {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
    }

    .cart__page-col:first-child {
      flex: 1 1 65%;
      padding-right: 100px;
    }

    .cart__page-col:last-child {
      --z-index-overlay: -1;
      flex: 0 1 35%;
      align-self: flex-start;
      position: sticky;
      top: 130px;
      padding: 30px;

      &:after {
        background-color: var(--root-color-primary);
        opacity: 0.03;
      }
    }
  }

  @media only screen and (min-width: 769px) {
    .medium-up--overlay::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: var(--z-index-overlay, auto);
    }
  }

  .cart__item-sub {
    flex: 1 1 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart__item-row {
    margin-bottom: 20px;

    &:last-child {
      margin-bottom: 0;
    }
  }

  .cart__item-row.cart-recommendations {
    margin-bottom: 20px;
  }

  .cart__item-row--footer {
    padding: 0 60px;
  }

  .cart__checkout,
  .cart__continue {
    width: 100%;
  }

  /* Cart drawer popover */
  .site-header__cart-wrapper {
    position: relative;
  }

  .site-header__cart {
    right: 0;

    @media only screen and (min-width: 769px) {
      max-width: 450px;
    }
  }

  .cart__checkout-wrapper {
    --element-button-width: 100%;

    & .additional-checkout-buttons,
    & .cart__continue {
      margin-top: 12px;
    }
  }

  .site-header__cart .additional-checkout-buttons {
    margin: 10px 0;

    & [data-shopify-buttoncontainer] {
      justify-content: center;

      & > * {
        height: auto !important;
      }
    }
  }

  /*Match additional cart button styles to theme*/
  .additional-checkout-buttons div[role='button'] {
    border-radius: var(--element-button-radius) !important;
  }

  .cart__discount {
    color: var(--color-text-savings);
  }

  .cart__item--subtotal {
    font-weight: var(--element-text-font-weight--heading);
    font-size: calc(var(--element-text-font-size--body-md) + 2px);
  }

  .cart__terms {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /*PayPal button has unhelpful z-index*/
  iframe.zoid-component-frame {
    z-index: 1 !important;
  }

  /*Override header drawer general styles for cart drawer*/
  .site-header__cart {
    padding: 0;
    overflow: hidden;
  }
/*
	  -------------------------------------
	  Slideshow
	  -------------------------------------
	*/
	
	/* TODO: Refactor to components */
	
	.slideshow-wrapper {
	  position: relative;
	}
	
	/*Pause button (focusable by keyboard only)*/
	.slideshow__pause:focus {
	  clip: auto;
	  width: auto;
	  height: auto;
	  margin: 0;
	  color: var(--color-button-primary-text);
	  background-color: var(--color-button-primary);
	  padding: 10px;
	  z-index: 10000;
	  transition: none;
	
	  .video-is-playing & {
	    display: none;
	  }
	}
	
	.slideshow__pause-stop {
	  display: block;
	
	  .is-paused & {
	    display: none;
	  }
	}
	
	.slideshow__pause-play {
	  display: none;
	
	  .is-paused & {
	    display: block;
	  }
	}
	
	.slideshow__slide {
	  display: none;
	  width: 100%;
	  height: 100%;
	  position: relative;
	  overflow: hidden;
	
	  &:first-child {
	    display: block;
	  }
	
	  .flickity-slider & {
	    display: block;
	  }
	
	  .hero--padded & {
	    border-radius: var(--roundness);
	    overflow: hidden;
	  }
	}
	
	/*
	  -------------------------------------
	  Hero Elements
	  -------------------------------------
	*/
	
	:root {
	  --z-index-hero-image: 1;
	  --z-index-hero-video: 2;
	  --z-index-hero-image-overlay: 3;
	  --z-index-hero-text: 4;
	  --slideshow-image-animation-amount: 200px;
	  --slideshow-image-animation-speed: 0.5s;
	}
	
	.hero--padded {
	  margin-top: var(--page-width-padding);
	  margin-bottom: var(--page-width-padding);
	
	  /*Required so box-shadow on .main-content doesn't appear
	  when this is the first section*/
	  .index-section--hero:first-child & {
	    margin-top: 0;
	    padding-top: var(--page-width-padding);
	  }
	}
	
	.hero {
	  display: block;
	  position: relative;
	  overflow: hidden;
	  background-color: color-mix(in srgb, var(--color-secondary) var(--shade-12), var(--color-primary));
	  color: #fff;
	
	  &.loaded {
	    background-color: transparent;
	    transition: background-color 0.2s ease 0.3s;
	  }
	
	  .hero--padded & {
	    border-radius: var(--roundness);
	    & .hero__media {
	      overflow: hidden;
	      border-radius: var(--roundness);
	    }
	  }
	}
	
	.hero__image-wrapper {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 100%;
	}
	
	.hero__image {
	  position: relative;
	  width: 100%;
	  height: 100%;
	  z-index: var(--z-index-hero-image);
	  object-fit: cover;
	}
	
	.hero__slide-link {
	  display: block;
	  position: absolute;
	  height: 100%;
	  width: 100%;
	  z-index: calc(var(--z-index-hero-text) + 1);
	
	  &:hover {
	    & ~ .hero__text-wrap .btn:not(.btn--secondary):not(.btn--inverse) {
	      background: var(--color-button-primary-light);
	      transition-delay: 0.25s;
	    }
	  }
	}
	
	.hero__text-wrap {
	  position: relative;
	  height: 100%;
	
	  .video-interactable & {
	    pointer-events: none;
	  }
	
	  & .page-width {
	    display: table;
	    width: 100%;
	    height: 100%;
	  }
	}
	
	.hero__text-content {
	  position: relative;
	  padding: calc(var(--gutter) / 2) 0;
	  z-index: var(--z-index-hero-text);
	  @media only screen and (min-width: 769px) {
	    padding: calc(var(--gutter) * 1.5) 0;
	  }
	
	  [data-dots='true'] & {
	    padding-bottom: 40px;
	  }
	}
	
	.hero__text-shadow {
	  --z-index-overlay: -1;
	  position: relative;
	  display: inline-block;
	  text-shadow: 0 3px 7px rgb(0, 0, 0, 0.15);
	
	  &:after {
	    background: radial-gradient(rgba(0, 0, 0, 0.3) 0%, transparent 60%);
	    margin: -100px -200px -100px -200px;
	  }
	
	  .horizontal-left & {
	    max-width: 500px;
	  }
	
	  .horizontal-right & {
	    max-width: 500px;
	    text-align: left;
	  }
	
	  @media only screen and (max-width: 768px) {
	    .horizontal-left & {
	      max-width: 85%;
	    }
	
	    .horizontal-right & {
	      max-width: 85%;
	    }
	  }
	}
	
	.hero__top-subtitle,
	.hero__title,
	.hero__subtitle {
	  margin-bottom: 10px;
	
	  @media only screen and (min-width: 769px) {
	    margin-bottom: 15px;
	  }
	}
	
	.hero__top-subtitle {
	  letter-spacing: 0.07em;
	  font-size: 1.1em;
	}
	
	.hero__title {
	  display: block;
	
	  & p {
	    margin-bottom: 0;
	  }
	}
	
	.hero__subtext {
	  margin-top: 20px;
	}
	
	.hero__subtitle {
	  display: block;
	  vertical-align: middle;
	
	  @media only screen and (min-width: 769px) {
	    font-size: 1.3em;
	  }
	}
	
	.hero__link {
	  position: relative;
	  display: block;
	
	  .video-interactable & {
	    pointer-events: auto;
	  }
	
	  & .btn {
	    margin: 4px 15px 15px 0;
	
	    @media only screen and (max-width: 768px) {
	      margin: 4px 10px 6px 0;
	
	      .small--text-center & {
	        margin: 4px 10px 6px;
	      }
	    }
	  }
	
	  /*Play icon in button*/
	  & .btn .element-icon-play {
	    position: relative;
	    top: -2px;
	    margin-right: 5px;
	  }
	
	  & .btn--inverse {
	    color: currentColor;
	    border-color: currentColor;
	  }
	}
	
	/*Text alignment*/
	.hero__text-content {
	  display: table-cell;
	
	  & .hero__link {
	    margin-top: calc(var(--gutter) / 4);
	
	    @media only screen and (min-width: 769px) {
	      margin-top: calc(var(--gutter) / 2);
	    }
	  }
	
	  &.horizontal-left {
	    text-align: left;
	  }
	
	  &.horizontal-center {
	    text-align: center;
	  }
	
	  &.horizontal-right {
	    text-align: right;
	  }
	
	  &.vertical-center {
	    vertical-align: middle;
	  }
	
	  &.vertical-bottom {
	    vertical-align: bottom;
	  }
	}
	
	/*Top padding adjustment to account for overlaid header*/
	.overlaid-header .index-section--hero:first-child .hero__text-content.vertical-center {
	  padding-top: 50px;
	  @media only screen and (min-width: 769px) {
	    padding-top: 90px;
	  }
	}
	
	.hero[data-natural] {
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	}
	
	/*Hero and slideshow shared starting animation*/
	.hero .slideshow__slide {
	  /*Default positioning pre-animation*/
	  & .hero__animation-contents {
	    opacity: 0;
	    transform: translateY(10px);
	    transition: none;
	
	    .no-js & {
	      opacity: 1;
	    }
	
	    @media only screen and (max-width: 768px) {
	      transform: translateY(7px);
	    }
	  }
	
	  & .hero__text-shadow:after {
	    opacity: 0;
	  }
	
	  /*Override lazyload style*/
	  &:not(.animate-out) .hero__image {
	    opacity: 0;
	    transition: none;
	  }
	
	  & .hero__link .element-button {
	    opacity: 0;
	    transition: none;
	
	    .no-js & {
	      opacity: 1;
	    }
	  }
	
	  /*Disable animations when not active or fading out*/
	  & .hero__image-wrapper,
	  & .hero__text-wrap {
	    transform: scale(1.15);
	    opacity: 0;
	    transition: none;
	  }
	
	  & .hero__sidebyside {
	    opacity: 0;
	    transition: none;
	
	    .no-js & {
	      opacity: 1;
	    }
	  }
	
	  & .hero__sidebyside-image .hero__image {
	    opacity: 0;
	    transform: scale(1.15);
	    transition: none;
	
	    .no-js & {
	      opacity: 1;
	    }
	  }
	}
	
	/*Hero and slideshow shared active animation */
	.hero.loaded .slideshow__slide.is-selected {
	  & .hero__animation-contents {
	    opacity: 1;
	    transform: translateY(0px);
	    transition:
	      opacity 0.4s ease,
	      transform 0.6s cubic-bezier(0.26, 0.54, 0.32, 1);
	  }
	
	  & .hero__link .element-button {
	    opacity: 1;
	    transition: opacity 1s ease;
	  }
	
	  & .hero__text-shadow:after {
	    opacity: 1;
	    transition: all 0.4s ease 0.2s;
	  }
	
	  & .hero__title .hero__animation-contents {
	    transition-delay: 0.2s;
	  }
	
	  & .hero__subtitle .hero__animation-contents {
	    transition-delay: 0.4s;
	  }
	
	  & .hero__link .element-button {
	    transition-delay: 0.6s;
	  }
	
	  & .hero__link .element-button:nth-child(2) {
	    transition-delay: 0.8s;
	  }
	
	  & .hero__link .element-button:not(:first-child) {
	    margin-inline-start: var(--size-2-5);
	  }
	
	  & .hero__media,
	  & .hero__image,
	  & .hero__image--svg {
	    opacity: 1;
	    transition: none;
	  }
	
	  & .hero__image-wrapper,
	  & .hero__text-wrap {
	    opacity: 1;
	    transform: scale(1);
	    transition:
	      transform 1s cubic-bezier(0.18, 0.63, 0.25, 1),
	      opacity 0.7s ease;
	  }
	
	  & .hero__sidebyside {
	    opacity: 1;
	    transition: opacity calc(var(--slideshow-image-animation-speed) + 0.2s) ease;
	  }
	
	  & .hero__sidebyside-image .hero__image {
	    opacity: 1;
	    transform: scale(1);
	    animation: none;
	    transition: transform calc(var(--slideshow-image-animation-speed) + 0.2s) cubic-bezier(0.13, 0.55, 0.25, 1);
	  }
	}
	
	/*Slideshow fading out animation*/
	.hero .slideshow__slide.animate-out {
	  & .hero__animation-contents {
	    opacity: 0;
	    transition: none;
	  }
	
	  & .hero__image-wrapper,
	  & .hero__text-wrap {
	    opacity: 0;
	    transform: scale(1);
	    transition:
	      transform var(--slideshow-image-animation-speed) ease-in 0.05s,
	      opacity var(--slideshow-image-animation-speed) ease-in 0.05s;
	  }
	}
:root {
	  --animate-duration: 1s;
	}
	
	[data-animate] {
	  opacity: 0;
	  transition-property: opacity, transform;
	  transition-duration: var(--animate-duration), var(--animate-duration);
	  transition-timing-function: ease-in-out, ease-in-out;
	}
	
	.no-js [data-animate] {
	  opacity: 1;
	}
	
	[data-animate] {
	  opacity: 0;
	}
	[ready] [data-animate] {
	  opacity: 1;
	}
	
	[data-animate='fadein'] {
	  opacity: 0;
	}
	[ready] [data-animate='fadein'] {
	  opacity: 1;
	}
	
	[data-animate='fadeup'] {
	  transform: translateY(5rem);
	}
	[ready] [data-animate='fadeup'] {
	  transform: translateY(0);
	}
	
	[data-animate='fadedown'] {
	  transform: translateY(-5rem);
	}
	[ready] [data-animate='fadedown'] {
	  transform: translateY(0);
	}
	
	[data-animate='fadeleft'] {
	  transform: translateX(-5rem);
	}
	[ready] [data-animate='fadeleft'] {
	  transform: translateX(0);
	}
	
	[data-animate='faderight'] {
	  transform: translateX(5rem);
	}
	[ready] [data-animate='faderight'] {
	  transform: translateX(0);
	}
	
	[data-animate='zoomin'] {
	  transform: scale(0.8);
	}
	[ready] [data-animate='zoomin'] {
	  transform: scale(1);
	}
	
	[data-animate='zoomout'] {
	  transform: scale(1.2);
	}
	[ready] [data-animate='zoomout'] {
	  transform: scale(1);
	}
	
	[data-animate='rise-up'] {
	  opacity: 0;
	
	  [ready] [data-animate='rise-up'] {
	    animation: rise-up 0.8s cubic-bezier(0.26, 0.54, 0.32, 1) forwards;
	  }
	}
	
	.image-wrap {
	  overflow: hidden;
	}
	
	.image-wrap img:not([role='presentation']) {
	  display: block;
	}
	
	.unload:before,
	.unload:after {
	  content: '';
	  position: absolute;
	  width: 100px;
	  height: 3px;
	  background: var(--root-color-secondary);
	  left: 50%;
	  top: 30%;
	  margin: -1px 0 0 -50px;
	  z-index: var(--z-index-loader);
	  opacity: 0;
	
	  .no-js & {
	    display: none;
	  }
	}
	
	.unload:before {
	  background: var(--root-color-primary);
	  opacity: 1;
	}
	
	.unload:after {
	  opacity: 0;
	  animation: preloading 0.5s ease 0.3s infinite;
	}
	
	.loading {
	  animation: placeholder-shimmer 1.3s linear 0.5s infinite;
	  background-size: 300% 100%;
	  background-image: linear-gradient(
	    100deg,
	    color-mix(in srgb, var(--color-secondary) var(--shade-12), var(--color-primary)) 40%,
	    color-mix(in srgb, var(--color-secondary) var(--shade-30), var(--color-primary)) 63%,
	    color-mix(in srgb, var(--color-secondary) var(--shade-12), var(--color-primary)) 79%
	  );
	
	  &.loaded {
	    animation: none;
	    background-image: none;
	  }
	}
	
	.loading--delayed:before {
	  animation-delay: 0.8s !important;
	  animation-duration: 1s !important;
	}
	
	.loading--delayed:after {
	  animation-delay: 1.3s !important;
	}
button {
	  overflow: visible;
	  color: currentColor;
	}
	
	button[disabled] {
	  cursor: default;
	}
	
	.btn,
	.rte .btn {
	  line-height: 1.42;
	  text-decoration: none;
	  text-align: center;
	  white-space: normal;
	
	  font-size: calc(var(--element-text-font-size--body-md) + 2px);
	  font-weight: var(--element-text-font-weight--heading);
	
	  display: inline-block;
	  padding: var(--element-button-padding);
	  margin: 0;
	  width: auto;
	  min-width: 90px;
	  vertical-align: middle;
	  cursor: pointer;
	  border: 1px solid transparent;
	  user-select: none;
	  -webkit-appearance: none;
	  -moz-appearance: none;
	  border-radius: var(--element-button-radius);
	  color: var(--color-button-primary-text);
	  background: var(--color-button-primary);
	
	  &:hover {
	    color: var(--color-button-primary-text);
	    background-color: var(--color-button-primary);
	  }
	
	  &[disabled],
	  &.disabled {
	    cursor: default;
	    color: var(--disabled-grey-text);
	    background-color: var(--disabled-grey);
	
	    &:hover {
	      color: var(--disabled-grey-text);
	      background-color: var(--disabled-grey);
	    }
	  }
	}
	
	.btn--secondary,
	.block-buy-buttons[data-show-dynamic-checkout] .btn,
	.rte .btn--secondary {
	  border: 1px solid;
	  border-color: var(--root-color-primary);
	  color: var(--root-color-primary);
	  background-color: var(--root-color-secondary);
	
	  &:hover {
	    background-color: var(--root-color-secondary);
	    color: var(--root-color-primary);
	  }
	
	  &[disabled],
	  &.disabled {
	    cursor: default;
	    color: var(--disabled-grey-text);
	    background-color: var(--disabled-grey);
	    border-color: var(--disabled-border);
	  }
	}
	
	.btn--circle {
	  padding: 8px;
	  border-radius: 50%;
	  min-width: 0;
	  line-height: 1;
	
	  & .element-icon {
	    width: 18px;
	    height: 18px;
	  }
	
	  &:before,
	  &:after {
	    content: none;
	    background: none;
	    width: auto; /*for photoswipe close button*/
	  }
	
	  &.btn--large .element-icon {
	    width: 30px;
	    height: 30px;
	  }
	
	  &.btn--large {
	    padding: 15px;
	  }
	
	  &.btn--loading {
	    text-indent: unset;
	
	    @media only screen and (max-width: 768px) {
	      &:before {
	        width: 18px;
	        height: 18px;
	        margin-left: -9px;
	        margin-top: -9px;
	        border-width: 2px;
	      }
	    }
	
	    & svg {
	      opacity: 0;
	    }
	  }
	}
	
	.btn--icon {
	  min-width: 0;
	  padding: 6px;
	
	  & .element-icon {
	    display: block;
	    width: 23px;
	    height: 23px;
	  }
	}
	
	.btn--small {
	  padding: 8px 14px;
	  font-size: calc(var(--element-text-font-size--body-md) - 2px);
	}
	
	.btn--large {
	  padding: 15px 20px;
	}
	
	.btn--full {
	  width: 100%;
	}
	
	.btn--inverse {
	  background-color: transparent;
	  color: #fff;
	  border: 2px solid #fff;
	
	  &:hover,
	  &:focus {
	    background-color: transparent;
	  }
	}
	
	.btn--loading {
	  position: relative;
	  text-indent: -9999px;
	  background-color: var(--color-button-primary-dim);
	  color: var(--color-button-primary-dim);
	
	  &:hover,
	  &:active {
	    background-color: var(--color-button-primary-dim);
	    color: var(--color-button-primary-dim);
	  }
	
	  &:before {
	    content: '';
	    display: block;
	    width: 22px;
	    height: 22px;
	    position: absolute;
	    left: 50%;
	    top: 50%;
	    margin-left: -11px;
	    margin-top: -11px;
	    border-radius: 50%;
	    border: 3px solid;
	    border-color: var(--color-button-primary-text);
	    border-top-color: transparent;
	    animation: spin 1s infinite linear;
	  }
	}
	
	/*Alt loading state*/
	.btn--loading.btn--secondary,
	.block-buy-buttons[data-show-dynamic-checkout] .btn--loading {
	  color: var(--root-color-primary);
	  background: transparent;
	
	  &:before {
	    border-color: var(--root-color-primary);
	    border-top-color: transparent;
	  }
	}
[class*='color-scheme-'] {
	  background-color: var(--color-secondary);
	  color: var(--color-primary);
	}
	
	[class*='color-scheme-']:not(.color-scheme-none) {
	  position: relative;
	
	  & a:not(.element-button, .element-chip) {
	    color: currentColor;
	    border-color: currentColor;
	  }
	
	  &.index-section {
	    margin: 0;
	    padding-top: var(--index-section-padding);
	    padding-bottom: var(--index-section-padding);
	  }
	}
form {
	  margin: 0;
	}
	
	.form-vertical {
	  margin-bottom: calc(var(--gutter) / 2);
	
	  & label {
	    text-align: left;
	
	    [dir='rtl'] & {
	      text-align: right;
	    }
	  }
	}
	
	button,
	input,
	textarea {
	  -webkit-appearance: none;
	  -moz-appearance: none;
	}
	
	button {
	  background: none;
	  border: none;
	  display: inline-block;
	  cursor: pointer;
	}
	
	fieldset {
	  border: 1px solid;
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  padding: calc(var(--gutter) / 2);
	}
	
	legend {
	  border: 0;
	  padding: 0;
	}
	
	button,
	input[type='submit'] {
	  cursor: pointer;
	}
	
	input[type='search']::-webkit-search-cancel-button,
	input[type='search']::-webkit-search-decoration {
	  -webkit-appearance: none;
	  appearance: none;
	}
	
	input[type='checkbox'] {
	  -webkit-appearance: checkbox;
	  -moz-appearance: checkbox;
	}
	
	input[type='radio'] {
	  -webkit-appearance: radio;
	  -moz-appearance: radio;
	}
	
	input[type='image'] {
	  padding-left: 0;
	  padding-right: 0;
	}
	
	select,
	.faux-select {
	  appearance: none;
	  background-color: var(--color-secondary);
	  color: var(--color-primary);
	  padding: 8px 28px 8px 8px;
	  text-indent: 0.01px;
	  text-overflow: '';
	  cursor: pointer;
	  text-align: left;
	  border: 1px solid;
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	}
	
	select {
	  background-position: right center;
	  background-image: var(--url-ico-select);
	  background-repeat: no-repeat;
	  background-position: right 10px center;
	  background-size: 11px;
	}
	
	/* Custom Select Button Pattern */
	.element-select__wrapper {
	  position: relative;
	  display: inline-block;
	}
	
	.element-select__wrapper select {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  opacity: 0;
	  cursor: pointer;
	  z-index: 2;
	}
	
	.select-button {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  width: 100%;
	  padding: 12px 16px;
	  background-color: var(--color-secondary);
	  border: 1px solid color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  border-radius: var(--element-input-radius, 4px);
	  color: var(--color-primary);
	  font-size: inherit;
	  font-family: inherit;
	  cursor: pointer;
	  transition: border-color 0.2s ease, background-color 0.2s ease;
	  min-height: 44px; /* Accessibility: minimum touch target */
	}
	
	.select-button:hover {
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-8), var(--color-secondary));
	  background-color: color-mix(in srgb, var(--color-primary) var(--shade-2), var(--color-secondary));
	}
	
	.select-button:focus {
	  outline: 2px solid var(--color-primary);
	  outline-offset: 2px;
	}
	
	.select-button__text {
	  flex: 1;
	  text-align: left;
	  overflow: hidden;
	  text-overflow: ellipsis;
	  white-space: nowrap;
	}
	
	.select-button__icon {
	  flex-shrink: 0;
	  margin-left: 8px;
	  width: 16px;
	  height: 16px;
	  transition: transform 0.2s ease;
	}
	
	/* Chevron icon using CSS */
	.select-button__icon::before {
	  content: '';
	  display: block;
	  width: 8px;
	  height: 8px;
	  border-right: 2px solid currentColor;
	  border-bottom: 2px solid currentColor;
	  transform: rotate(45deg);
	  margin: 2px 0 0 2px;
	}
	
	/* Focus state for the wrapper */
	.element-select__wrapper:focus-within .select-button {
	  border-color: var(--color-primary);
	  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) var(--shade-4), transparent);
	}
	
	/* Disabled state */
	.element-select__wrapper--disabled .select-button {
	  opacity: 0.6;
	  cursor: not-allowed;
	  background-color: color-mix(in srgb, var(--color-primary) var(--shade-4), var(--color-secondary));
	}
	
	.element-select__wrapper--disabled select {
	  cursor: not-allowed;
	}
	
	/* Variants */
	.select-button--primary {
	  background-color: var(--color-primary);
	  color: var(--color-secondary);
	  border-color: var(--color-primary);
	}
	
	.select-button--primary:hover {
	  background-color: color-mix(in srgb, var(--color-primary) var(--shade-8), var(--color-secondary));
	}
	
	.select-button--outline {
	  background-color: transparent;
	  border-color: var(--color-primary);
	  color: var(--color-primary);
	}
	
	.select-button--outline:hover {
	  background-color: var(--color-primary);
	  color: var(--color-secondary);
	}
	
	.faux-select .element-icon {
	  position: absolute;
	  right: 10px;
	  top: 50%;
	  transform: translateY(-50%);
	  width: 11px;
	  height: 11px;
	}
	
	/*Force option color (affects IE and some Firefox versions)*/
	option {
	  color: #000;
	  background-color: #fff;
	
	  &[disabled] {
	    color: #ccc;
	  }
	}
	
	select::-ms-expand {
	  display: none;
	}
	
	label[for] {
	  cursor: pointer;
	}
	
	.form-vertical {
	  & input,
	  & select,
	  & textarea {
	    width: 100%;
	    margin-bottom: 30px;
	  }
	
	  & input[type='checkbox'],
	  & input[type='radio'],
	  & .btn {
	    display: inline-block;
	  }
	
	  & .element-button:not(:last-child) {
	    margin-bottom: 30px;
	  }
	}
	
	/* Form Notes */
	
	.note,
	.errors {
	  border-radius: var(--element-input-radius);
	  padding: 6px 12px;
	  margin-bottom: calc(var(--gutter) / 2);
	  border: 1px solid transparent;
	  text-align: left;
	
	  & ul,
	  & ol {
	    margin-top: 0;
	    margin-bottom: 0;
	  }
	
	  & li:last-child {
	    margin-bottom: 0;
	  }
	
	  & p {
	    margin-bottom: 0;
	  }
	}
	
	.note {
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	}
	
	.errors {
	  & ul {
	    list-style: disc outside;
	    margin-left: 20px;
	  }
	}
	
	.note--success {
	  color: var(--success-green);
	  background-color: var(--success-green-bg);
	  border-color: var(--success-green);
	
	  & a {
	    color: var(--success-green);
	    text-decoration: underline;
	
	    &:hover {
	      text-decoration: none;
	    }
	  }
	}
	
	.form-error,
	.errors {
	  color: var(--color-error);
	  border-color: var(--color-error);
	
	  & a {
	    color: var(--color-error);
	    text-decoration: underline;
	
	    &:hover {
	      text-decoration: none;
	    }
	  }
	}
	
	::-webkit-input-placeholder {
	  color: inherit;
	  opacity: 0.5;
	}
	
	:-moz-placeholder {
	  color: inherit;
	  opacity: 0.5;
	}
	
	:-ms-input-placeholder {
	  color: inherit;
	  opacity: 0.5;
	}
	
	::-ms-input-placeholder {
	  color: inherit;
	  opacity: 1;
	}
	
	input[type='image'] {
	  background-color: transparent;
	}
.float-grid {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  margin-left: calc(var(--grid-gutter) * -1);

	  @media only screen and (max-width: 768px) {
	    margin-left: calc(var(--grid-gutter-small) * -1);

	    html[dir='rtl'] & {
	      margin-left: 0;
	      margin-right: calc(var(--grid-gutter-small) * -1);
	    }
	  }

	  html[dir='rtl'] & {
	    margin-left: 0;
	    margin-right: calc(var(--grid-gutter) * -1);
	  }
	}

	.grid--small {
	  margin-left: -10px;

	  & .grid__item {
	    padding-left: 10px;
	  }
	}

	.grid__item {
	  float: left;
	  padding-left: var(--grid-gutter);
	  width: 100%;
	  min-height: 1px;

	  @media only screen and (max-width: 768px) {
	    padding-left: var(--grid-gutter-small);

	    html[dir='rtl'] & {
	      padding-left: 0;
	      padding-right: var(--grid-gutter-small);
	    }
	  }

	  html[dir='rtl'] & {
	    float: right;
	    padding-left: 0;
	    padding-right: var(--grid-gutter);
	  }
	}

	.grid--flush-bottom {
	  margin-bottom: calc(var(--grid-gutter) * -1);
	  overflow: auto;

	  & > .grid__item {
	    margin-bottom: var(--grid-gutter);
	  }
	}

	.grid--center {
	  text-align: center;

	  & .grid__item {
	    float: none;
	    display: inline-block;
	    vertical-align: top;
	    text-align: left;

	    html[dir='rtl'] & {
	      text-align: right;
	    }
	  }
	}

	/* Flex grid for products, collections, search */
	.new-grid {
	  display: flex;
	  flex-wrap: wrap;
	  margin-left: calc(var(--product-grid-margin) * -1);
	  margin-right: calc(var(--product-grid-margin) * -1);
	  word-break: break-word; /*prevents elements ignoring flex properties*/
	}

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

	.grid-item {
	  flex: 0 0 100%;
	  align-items: stretch;
	  display: flex;
	  margin-bottom: var(--product-grid-margin);
	  padding-left: var(--product-grid-margin);
	  padding-right: var(--product-grid-margin);

	  &.medium-up--one-sixth {
	    [data-view='custom-grid-item-width'] & {
	      flex: 0 auto;
	    }
	  }

	  [data-view='custom-grid-item-width'] & {
	    flex: auto;
	  }

	  /* 6 per row, scrollable on mobile */
	  [data-view='scrollable'] & {
	    flex: 0 0 calc(100% / 6);
	    max-width: 250px;
	  }

	  /* 7 per row, scrollable on mobile (recently viewed) */
	  [data-view='scrollable-7'] & {
	    flex: 0 0 calc(100% / 7);
	  }

	  /* 5 per row, scrollable on mobile */
	  [data-view='scrollable-5'] & {
	    flex: 0 0 calc(100% / 5);
	  }

	  /* 5 per row, 2 mobile */
	  [data-view='xsmall'] & {
	    flex: 0 0 20%;
	  }

	  /* 4 per row, 2 per row mobile */
	  [data-view='small'] & {
	    flex: 0 0 25%;
	  }

	  /* 3 per row, 3 per row mobile */
	  [data-view='medium'] & {
	    flex: 0 0 calc(100% / 3);
	  }

	  /* 2 per row, 2 per row mobile */
	  [data-view='large'] & {
	    flex: 0 0 50%;
	  }

	  /* 6 per row, 3 mobile */
	  [data-view='6-3'] & {
	    flex: 0 0 calc(100% / 6);
	  }

	  [data-view='6-2'] & {
	    flex: 0 0 calc(100% / 6);
	  }

	  [data-view='3-1'] & {
	    flex: 0 0 calc(100% / 3);
	  }

	  @media only screen and (max-width: 768px) {
	    [data-view='xsmall'] & {
	      flex: 0 0 50%;
	    }

	    [data-view='small'] & {
	      flex: 0 0 50%;
	    }

	    [data-view='medium'] & {
	      flex: 0 0 50%;
	    }

	    [data-view='large'] & {
	      flex: 0 0 100%;
	    }

	    [data-view='subcollections'] & {
	      flex: 0 0 28%;
	    }

	    [data-view='6-3'] & {
	      flex: 0 0 calc(100% / 3);
	    }

	    [data-view='6-2'] & {
	      flex: 0 0 50%;
	    }

	    [data-view='3-1'] & {
	      flex: 0 0 100%;
	    }
	  }
	}

	.grid-item__content {
	  position: relative;
	  display: flex;
	  flex-direction: column;
	  text-align: left;
	  width: 100%;
	  height: 100%;
	  justify-content: space-between;
	  /*required to prevent double grid border styles*/
	  background-color: var(--root-color-secondary);

	  html[dir='rtl'] & {
	    text-align: right;
	  }
	}

	.grid-item__link {
	  display: block;
	  width: 100%;

	  [data-grid-style='grey-round'] & {
	    overflow: hidden;
	    border-radius: var(--product-radius) var(--product-radius) 0 0;
	  }

	  [data-grid-style='white-round'] & {
	    overflow: hidden;
	    border-radius: var(--product-radius);
	  }

	  [data-grid-style='grey-round'] [data-view='list'] & {
	    border-radius: var(--product-radius) 0 0 var(--product-radius);
	  }

	  [data-grid-style='white-round'] [data-view='list'] & {
	    border-radius: var(--product-radius) 0 0 var(--product-radius);
	  }
	}

	.grid-item__meta {
	  margin: 12px;

	  @media only screen and (min-width: 769px) {
	    margin: 20px;
	  }
	}

	.scrollable-grid {
	  overflow: hidden;
	  overflow-x: auto;
	  flex-wrap: nowrap;
	  margin: -20px -10px 0 0;
	  padding: 20px 10px 0 var(--grid-thickness);

	  & .grid-item {
	    flex: 0 0 25%;

	    /*Specific sizes for cart drawer popover*/
	    .site-header__cart & {
	      min-width: 225px;
	    }
	  }
	}

	.new-grid[data-type='subcollections'] {
	  margin-bottom: 20px;
	  padding-bottom: 5px;
	  flex-wrap: nowrap;
	  overflow-x: auto;

	  &:empty {
	    border: 0;
	    margin-bottom: 0;
	    padding-bottom: 0;
	  }

	  & .grid-item {
	    flex: 0 0 30%;
	  }
	}

	@media only screen and (max-width: 768px) {
	  .scrollable-grid--small {
	    overflow: hidden;
	    overflow-x: auto;
	    flex-wrap: nowrap;
	    justify-content: flex-start;
	    margin: calc(var(--product-grid-margin) * -1) calc(var(--page-width-gutter-small) * -1) 0 0;
	    padding: var(--product-grid-margin) var(--page-width-gutter-small) 0 0;

	    .page-width--flush-small & {
	      margin-left: 0;
	      margin-right: 0;
	      padding-left: var(--page-width-gutter-small);
	    }

	    & .grid-item {
	      flex: 0 0 45%;
				min-width: 250px;
	    }

	    /*Some one-off sizing*/
	    &[data-type='subcollections'] {
	      margin-left: calc(var(--grid-gutter-small) * -1);
	      margin-bottom: 0;
	      padding-bottom: 10px;

	      & .grid-item {
	        flex: 0 0 30%;
	      }
	    }
	  }

	  /*Create faux-element to make enough right-side padding inside scrollable div*/
	  [data-view*='scrollable']:after {
	    content: '';
	    display: block;
	    height: 1px;
	    min-width: var(--page-width-padding);
	  }
	}

	/* Grid columns */
	.one-whole {
	  width: 100%;
	}
	.one-half {
	  width: 50%;
	}
	.one-third {
	  width: 33.33333%;
	}
	.two-thirds {
	  width: 66.66667%;
	}
	.one-quarter {
	  width: 25%;
	}
	.two-quarters {
	  width: 50%;
	}
	.three-quarters {
	  width: 75%;
	}
	.one-fifth {
	  width: 20%;
	}
	.two-fifths {
	  width: 40%;
	}
	.three-fifths {
	  width: 60%;
	}
	.four-fifths {
	  width: 80%;
	}
	.one-sixth {
	  width: 16.66667%;
	}
	.two-sixths {
	  width: 33.33333%;
	}
	.three-sixths {
	  width: 50%;
	}
	.four-sixths {
	  width: 66.66667%;
	}
	.five-sixths {
	  width: 83.33333%;
	}
	@media only screen and (max-width: 768px) {
	  .small--one-whole {
	    width: 100%;
	  }
	  .small--one-half {
	    width: 50%;
	  }
	  .small--one-third {
	    width: 33.33333%;
	  }
	  .small--two-thirds {
	    width: 66.66667%;
	  }
	  .grid--uniform .small--one-half:nth-of-type(odd),
	  .grid--uniform .small--one-third:nth-of-type(3n + 1) {
	    clear: both;
	  }
	  .small--one-quarter {
	    width: 25%;
	  }
	  .small--two-quarters {
	    width: 50%;
	  }
	  .small--three-quarters {
	    width: 75%;
	  }
	  .grid--uniform .small--one-quarter:nth-of-type(4n + 1) {
	    clear: both;
	  }
	  .small--one-fifth {
	    width: 20%;
	  }
	  .small--two-fifths {
	    width: 40%;
	  }
	  .small--three-fifths {
	    width: 60%;
	  }
	  .small--four-fifths {
	    width: 80%;
	  }
	  .grid--uniform .small--one-fifth:nth-of-type(5n + 1) {
	    clear: both;
	  }
	  .small--one-sixth {
	    width: 16.66667%;
	  }
	  .small--two-sixths {
	    width: 33.33333%;
	  }
	  .small--three-sixths {
	    width: 50%;
	  }
	  .small--four-sixths {
	    width: 66.66667%;
	  }
	  .small--five-sixths {
	    width: 83.33333%;
	  }
	  .grid--uniform .small--one-sixth:nth-of-type(6n + 1),
	  .grid--uniform .small--three-sixths:nth-of-type(odd),
	  .grid--uniform .small--two-sixths:nth-of-type(3n + 1) {
	    clear: both;
	  }
	}
	@media only screen and (min-width: 769px) {
	  .medium-up--one-whole {
	    width: 100%;
	  }
	  .medium-up--one-half {
	    width: 50%;
	  }
	  .medium-up--one-third {
	    width: 33.33333%;
	  }
	  .medium-up--two-thirds {
	    width: 66.66667%;
	  }
	  .grid--uniform .medium-up--one-half:nth-of-type(odd),
	  .grid--uniform .medium-up--one-third:nth-of-type(3n + 1) {
	    clear: both;
	  }
	  .medium-up--one-quarter {
	    width: 25%;
	  }
	  .medium-up--two-quarters {
	    width: 50%;
	  }
	  .medium-up--three-quarters {
	    width: 75%;
	  }
	  .grid--uniform .medium-up--one-quarter:nth-of-type(4n + 1) {
	    clear: both;
	  }
	  .medium-up--one-fifth {
	    width: 20%;
	  }
	  .medium-up--two-fifths {
	    width: 40%;
	  }
	  .medium-up--three-fifths {
	    width: 60%;
	  }
	  .medium-up--four-fifths {
	    width: 80%;
	  }
	  .grid--uniform .medium-up--one-fifth:nth-of-type(5n + 1) {
	    clear: both;
	  }
	  .medium-up--one-sixth {
	    width: 16.66667%;
	  }
	  .medium-up--two-sixths {
	    width: 33.33333%;
	  }
	  .medium-up--three-sixths {
	    width: 50%;
	  }
	  .medium-up--four-sixths {
	    width: 66.66667%;
	  }
	  .medium-up--five-sixths {
	    width: 83.33333%;
	  }
	  .grid--uniform .medium-up--one-sixth:nth-of-type(6n + 1),
	  .grid--uniform .medium-up--three-sixths:nth-of-type(odd),
	  .grid--uniform .medium-up--two-sixths:nth-of-type(3n + 1) {
	    clear: both;
	  }
	}
.clearfix::after {
	  clear: both;
	  content: '';
	  display: table;
	}
	
	.is-transitioning {
	  display: block !important;
	  visibility: visible !important;
	}
	
	.visually-hidden {
	  border: 0;
	  clip: rect(0 0 0 0);
	  height: 1px;
	  margin: -1px;
	  overflow: hidden;
	  padding: 0;
	  position: absolute;
	  width: 1px;
	}
	
	.overlay::after {
	  content: '';
	  display: block;
	  position: absolute;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  z-index: var(--z-index-overlay, auto);
	}
	
	/*Keep dimensions but hide visually*/
	.visually-invisible {
	  opacity: 0 !important;
	}
	
	.show {
	  display: block !important;
	}
	.hide {
	  display: none !important;
	}
	.text-left {
	  text-align: left !important;
	}
	.text-right {
	  text-align: right !important;
	}
	.text-center {
	  text-align: center !important;
	}
	
	@media only screen and (max-width: 768px) {
	  .small--show {
	    display: block !important;
	  }
	  .small--hide {
	    display: none !important;
	  }
	  .small--text-left {
	    text-align: left !important;
	  }
	  .small--text-right {
	    text-align: right !important;
	  }
	  .small--text-center {
	    text-align: center !important;
	  }
	}
	
	@media only screen and (min-width: 769px) {
	  .medium-up--hide {
	    display: none !important;
	  }
	}
@keyframes spin {
	  0% {
	    transform: rotate(0deg);
	  }
	
	  100% {
	    transform: rotate(360deg);
	  }
	}
	
	@keyframes preloading {
	  0% {
	    transform-origin: 0 50%;
	    transform: scale3d(0, 1, 1);
	    opacity: 0;
	  }
	  40% {
	    transform-origin: 0 50%;
	    transform: scale3d(1, 1, 1);
	    opacity: 1;
	  }
	  41% {
	    transform-origin: 100% 50%;
	    transform: scale3d(1, 1, 1);
	    opacity: 1;
	  }
	  100% {
	    transform-origin: 100% 50%;
	    transform: scale3d(0, 1, 1);
	    opacity: 1;
	  }
	}
	
	@keyframes slideshowBars {
	  from {
	    transform: translateX(-100%);
	  }
	  to {
	    transform: translateX(0);
	  }
	}
	
	/*Ajax load products*/
	@keyframes grid-product__loading {
	  0% {
	    opacity: 1;
	  }
	  60% {
	    opacity: 0;
	  }
	  100% {
	    opacity: 1;
	  }
	}
	
	/*Overlay animations (modals, panels)*/
	@keyframes overlay-on {
	  from {
	    opacity: 0;
	  }
	  to {
	    opacity: 0.6;
	  }
	}
	
	@keyframes overlay-off {
	  from {
	    opacity: 0.6;
	  }
	  to {
	    opacity: 0;
	  }
	}
	
	@keyframes modal-open {
	  from {
	    opacity: 0;
	    transform: scale(0.97);
	  }
	  to {
	    opacity: 1;
	    transform: scale(1);
	  }
	}
	
	@keyframes modal-closing {
	  from {
	    opacity: 1;
	    transform: scale(1);
	  }
	  to {
	    opacity: 0;
	    transform: scale(0.97);
	  }
	}
	
	/*Text animations*/
	@keyframes rise-up {
	  from {
	    opacity: 0;
	    transform: translateY(10px);
	  }
	  to {
	    opacity: 1;
	    transform: translateY(0);
	  }
	}
	
	@keyframes fade-in {
	  from {
	    opacity: 0;
	  }
	  to {
	    opacity: 1;
	  }
	}
	
	@keyframes fade-out {
	  from {
	    opacity: 1;
	  }
	  to {
	    opacity: 0;
	  }
	}
	
	/*Background image animations*/
	@keyframes zoom-fade {
	  from {
	    opacity: 0;
	    transform: scale(1.1, 1.1);
	  }
	  to {
	    opacity: 1;
	    transform: scale(1, 1);
	  }
	}
	
	/*Product form placeholder*/
	@keyframes placeholder-shimmer {
	  0% {
	    background-position: -150% 0;
	  }
	  100% {
	    background-position: 150% 0;
	  }
	}
:where(a) {
	  color: currentColor;
	  -webkit-text-decoration: none;
	  text-decoration: none;
	  background: transparent;
	}
	
	/*Force an input/button to look like a text link*/
	.text-link {
	  display: inline;
	  border: 0 none;
	  background: none;
	  padding: 0;
	  margin: 0;
	  color: currentColor;
	  background: transparent;
	
	  &:hover {
	    color: currentColor;
	  }
	}
	
	/*Links in RTE*/
	.rte a:not(.element-button),
	.shopify-policy__container a,
	.shopify-email-marketing-confirmation__container a {
	  color: var(--root-color-primary);
	}
ul,
	ol {
	  margin: 0 0 calc(var(--gutter) / 2) var(--gutter);
	  padding: 0;
	  text-rendering: optimizeLegibility;
	}
	
	ol ol {
	  list-style: lower-alpha;
	}
	
	ol {
	  list-style: decimal;
	}
	ul ul,
	ul ol,
	ol ol,
	ol ul {
	  margin: 4px 0 5px 20px;
	}
	li {
	  margin-bottom: 0.25em;
	}
	
	ul.square {
	  list-style: square outside;
	}
	ul.disc {
	  list-style: disc outside;
	}
	ol.alpha {
	  list-style: lower-alpha outside;
	}
	
	.no-bullets {
	  list-style: none outside;
	  margin-left: 0;
	}
	
	.inline-list {
	  padding: 0;
	  margin: 0;
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	
	  & li {
	    display: block;
	    margin-bottom: 0;
	  }
	}
	
	.inline-list--no-wrap {
	  flex-wrap: nowrap;
	}
/*
	  Shared styling for all images in our themes

	  It's a work in progress and we're trying to move away from having to add specific styling for images in themes

	  All images now have a base fade-in animation when they're loaded

	  Motion & Streamline have settings to enable/disable animations for images
	*/

	is-land[data-image-type] {
	  .svg-mask &,
	  .image-wrap:not(.image-wrap__thumbnail) &,
	  .grid__image-ratio &,
	  .countdown__background-image-wrapper &,
	  .social-section__image-wrapper &,
	  .fading-images__item-wrapper & {
	    width: 100%;
	    height: 100%;
	    position: absolute;
	    top: 0;
	    left: 0;
	  }
	}

	img {
	  border: 0 none;
	  display: block;
	  max-width: 100%;
	  height: auto;
	}

	.image-element {
	  opacity: 0;

	  &[loading='eager'] {
	    opacity: 1;
	  }

	  .template-giftcard & {
	    opacity: 1;
	  }

	  [data-animate_images='false'] & {
	    opacity: 1;
	  }

	  [data-media-gallery-layout='stacked'] & {
	    opacity: 1;
	  }

	  &[data-animate='fadein'] {
	    --animate-duration: 0.5s;

	    /*
	     * Gem's new stacked images will have the fade-in animation disabled
	     */
	    [data-media-gallery-layout='stacked'] & {
	      animation: none;
	    }

	    /*
	     * Remove animation from color scheme images
	     */
	    &.scheme-image {
	      animation: none;
	    }

	    /* Remove animation from eagerly loaded images */
	    &[loading='eager'] {
	      animation: none;
	    }

	    &.hero__image {
	      animation: none;
	    }
	  }

	  /* This should ensure that images show up if JS is disabled */
	  .no-js & {
	    opacity: 1;
	  }
	}

	.image-wrap {
	  position: relative;
	}

	.image-wrap img {
	  width: 100%;
	  object-fit: cover;
	  height: auto;
	}

	.rte p[style*='text-align: center'],
	.rte div[style*='text-align: center'] {
	  & img {
	    margin-left: auto;
	    margin-right: auto;
	  }
	}

	svg:not(:root) {
	  overflow: hidden;
	}

	iframe {
	  max-width: 100%;
	  border: none;
	}

	.grid__image-ratio {
	  position: relative;

	  & img {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    object-fit: cover;

	    &.grid__image-contain {
	      object-fit: contain;
	    }
	  }

	  &:before {
	    content: '';
	    display: block;
	    height: 0;
	    width: 100%;
	  }

	  & .element-placeholder {
	    position: absolute;
	    top: 0;
	    right: 0;
	    bottom: 0;
	    left: 0;
	  }
	}

	.grid__image-ratio--object {
	  opacity: 1;
	}

	.grid__image-ratio--wide:before {
	  padding-bottom: 56.25%;
	}

	.grid__image-ratio--landscape:before {
	  padding-bottom: 75%;
	}

	.grid__image-ratio--square:before {
	  padding-bottom: 100%;
	}

	.grid__image-ratio--portrait:before {
	  padding-bottom: 150%;
	}

	.image-fit {
	  position: relative;
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  font-family: 'object-fit: cover';
	  z-index: 1;
	}

	.parallax-container {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 100%;
	}

	.svg-mask {
	  background: transparent !important;
	  background-color: transparent !important;
	  padding-bottom: 100% !important;
	  position: relative !important;

	  & .grid__image-ratio {
	    background: transparent !important;
	    background-color: transparent !important;
	  }

	  & img,
	  & svg:not(.element-icon),
	  & video {
	    mask-size: 100% 100%;
	    mask-repeat: no-repeat;
	    mask-position: center;
	    height: 100% !important;
	    position: absolute !important;
	    object-fit: cover !important;
	  }
	}

	.svg-mask--landscape {
	  padding-bottom: 56.25% !important;
	}

	.svg-mask--portrait {
	  padding-bottom: 150% !important;
	}

	.svg-mask--square {
	  padding-bottom: 100% !important;
	}

	.svg-mask--rounded-top img,
	.svg-mask--rounded-top svg:not(.element-icon),
	.svg-mask--rounded-top video {
	  border-top-right-radius: 50%;
	  border-top-left-radius: 50%;
	}

	.svg-mask--rounded img,
	.svg-mask--rounded svg:not(.element-icon),
	.svg-mask--rounded video {
	  border-radius: 50%;
	}

	.svg-mask--star img,
	.svg-mask--star svg:not(.element-icon),
	.svg-mask--star video {
	  mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTI4NCcgaGVpZ2h0PScxMjUxJyB2aWV3Qm94PScwIDAgMTI4NCAxMjUxJyBmaWxsPSdub25lJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxwYXRoIGQ9J002NDIgMEw4MTkuMDA3IDI5MC40NDFMMTE1Ni40NSAyNDcuNzQ0TDEwMzkuNzMgNTY3LjIyTDEyODMuNSA4MDQuNDE5TDk2MC45NTYgOTEyLjM1OUw5MjcuNDk1IDEyNTAuODRMNjQyIDEwNjUuOTZMMzU2LjUwNCAxMjUwLjg0TDMyMy4wNDQgOTEyLjM1OUwwLjQ5NzQzNyA4MDQuNDE5TDI0NC4yNjggNTY3LjIyTDEyNy41NTUgMjQ3Ljc0NEw0NjQuOTkzIDI5MC40NDFMNjQyIDBaJyBmaWxsPScjQTQ5NUZCJy8+PC9zdmc+Cg==');
	}

	.svg-mask--rounded-wave img,
	.svg-mask--rounded-wave svg:not(.element-icon),
	.svg-mask--rounded-wave video {
	  mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTA2NicgaGVpZ2h0PScxMDY2JyB2aWV3Qm94PScwIDAgMTA2NiAxMDY2JyBmaWxsPSdub25lJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxwYXRoIGQ9J000OTIuNTA5IDMxLjgyOTJDNTAzLjA1NCAtMTAuMzE0OSA1NjIuOTQ2IC0xMC4zMTQ5IDU3My40OTEgMzEuODI5MlYzMS44MjkyQzU4Mi40MjQgNjcuNTMxIDYyOS44MzMgNzUuMDM5OCA2NDkuMzYxIDQzLjg0NThWNDMuODQ1OEM2NzIuNDEzIDcuMDIyODkgNzI5LjM3NCAyNS41MzA3IDcyNi4zOCA2OC44NzA3VjY4Ljg3MDdDNzIzLjg0MyAxMDUuNTg2IDc2Ni42MTEgMTI3LjM3NyA3OTQuODIzIDEwMy43NDRWMTAzLjc0NEM4MjguMTI1IDc1Ljg0NyA4NzYuNTggMTExLjA1MSA4NjAuMzM5IDE1MS4zNDRWMTUxLjM0NEM4NDYuNTgxIDE4NS40NzggODgwLjUyMiAyMTkuNDE5IDkxNC42NTYgMjA1LjY2MVYyMDUuNjYxQzk1NC45NDkgMTg5LjQyIDk5MC4xNTMgMjM3Ljg3NSA5NjIuMjU2IDI3MS4xNzdWMjcxLjE3N0M5MzguNjIzIDI5OS4zODkgOTYwLjQxNCAzNDIuMTU3IDk5Ny4xMjkgMzM5LjYyVjMzOS42MkMxMDQwLjQ3IDMzNi42MjYgMTA1OC45OCAzOTMuNTg3IDEwMjIuMTUgNDE2LjYzOVY0MTYuNjM5Qzk5MC45NiA0MzYuMTY3IDk5OC40NjkgNDgzLjU3NiAxMDM0LjE3IDQ5Mi41MDlWNDkyLjUwOUMxMDc2LjMxIDUwMy4wNTQgMTA3Ni4zMSA1NjIuOTQ2IDEwMzQuMTcgNTczLjQ5MVY1NzMuNDkxQzk5OC40NjkgNTgyLjQyNCA5OTAuOTYgNjI5LjgzMyAxMDIyLjE1IDY0OS4zNjFWNjQ5LjM2MUMxMDU4Ljk4IDY3Mi40MTMgMTA0MC40NyA3MjkuMzc0IDk5Ny4xMjkgNzI2LjM4VjcyNi4zOEM5NjAuNDE0IDcyMy44NDMgOTM4LjYyMyA3NjYuNjExIDk2Mi4yNTYgNzk0LjgyM1Y3OTQuODIzQzk5MC4xNTMgODI4LjEyNSA5NTQuOTQ5IDg3Ni41OCA5MTQuNjU2IDg2MC4zMzlWODYwLjMzOUM4ODAuNTIyIDg0Ni41ODEgODQ2LjU4MSA4ODAuNTIyIDg2MC4zMzkgOTE0LjY1NlY5MTQuNjU2Qzg3Ni41OCA5NTQuOTQ5IDgyOC4xMjUgOTkwLjE1MyA3OTQuODIzIDk2Mi4yNTZWOTYyLjI1NkM3NjYuNjExIDkzOC42MjMgNzIzLjg0MyA5NjAuNDE0IDcyNi4zOCA5OTcuMTI5Vjk5Ny4xMjlDNzI5LjM3NCAxMDQwLjQ3IDY3Mi40MTMgMTA1OC45OCA2NDkuMzYxIDEwMjIuMTVWMTAyMi4xNUM2MjkuODMzIDk5MC45NiA1ODIuNDI0IDk5OC40NjkgNTczLjQ5MSAxMDM0LjE3VjEwMzQuMTdDNTYyLjk0NiAxMDc2LjMxIDUwMy4wNTQgMTA3Ni4zMSA0OTIuNTA5IDEwMzQuMTdWMTAzNC4xN0M0ODMuNTc2IDk5OC40NjkgNDM2LjE2NyA5OTAuOTYgNDE2LjYzOSAxMDIyLjE1VjEwMjIuMTVDMzkzLjU4NyAxMDU4Ljk4IDMzNi42MjYgMTA0MC40NyAzMzkuNjIgOTk3LjEyOVY5OTcuMTI5QzM0Mi4xNTcgOTYwLjQxNCAyOTkuMzg5IDkzOC42MjMgMjcxLjE3NyA5NjIuMjU2Vjk2Mi4yNTZDMjM3Ljg3NSA5OTAuMTUzIDE4OS40MiA5NTQuOTQ5IDIwNS42NjEgOTE0LjY1NlY5MTQuNjU2QzIxOS40MTkgODgwLjUyMiAxODUuNDc4IDg0Ni41ODEgMTUxLjM0NCA4NjAuMzM5Vjg2MC4zMzlDMTExLjA1MSA4NzYuNTggNzUuODQ3IDgyOC4xMjUgMTAzLjc0NCA3OTQuODIzVjc5NC44MjNDMTI3LjM3NyA3NjYuNjExIDEwNS41ODYgNzIzLjg0MyA2OC44NzA3IDcyNi4zOFY3MjYuMzhDMjUuNTMwNyA3MjkuMzc0IDcuMDIyODcgNjcyLjQxMyA0My44NDU4IDY0OS4zNjFWNjQ5LjM2MUM3NS4wMzk4IDYyOS44MzMgNjcuNTMxIDU4Mi40MjQgMzEuODI5MiA1NzMuNDkxVjU3My40OTFDLTEwLjMxNDkgNTYyLjk0NiAtMTAuMzE0OSA1MDMuMDU0IDMxLjgyOTIgNDkyLjUwOVY0OTIuNTA5QzY3LjUzMSA0ODMuNTc2IDc1LjAzOTggNDM2LjE2NyA0My44NDU4IDQxNi42MzlWNDE2LjYzOUM3LjAyMjg2IDM5My41ODcgMjUuNTMwNyAzMzYuNjI2IDY4Ljg3MDcgMzM5LjYyVjMzOS42MkMxMDUuNTg2IDM0Mi4xNTcgMTI3LjM3NyAyOTkuMzg5IDEwMy43NDQgMjcxLjE3N1YyNzEuMTc3Qzc1Ljg0NyAyMzcuODc1IDExMS4wNTEgMTg5LjQyIDE1MS4zNDQgMjA1LjY2MVYyMDUuNjYxQzE4NS40NzggMjE5LjQxOSAyMTkuNDE5IDE4NS40NzggMjA1LjY2MSAxNTEuMzQ0VjE1MS4zNDRDMTg5LjQyIDExMS4wNTEgMjM3Ljg3NSA3NS44NDcgMjcxLjE3NyAxMDMuNzQ0VjEwMy43NDRDMjk5LjM4OSAxMjcuMzc3IDM0Mi4xNTcgMTA1LjU4NiAzMzkuNjIgNjguODcwN1Y2OC44NzA3QzMzNi42MjYgMjUuNTMwNyAzOTMuNTg3IDcuMDIyODcgNDE2LjYzOSA0My44NDU4VjQzLjg0NThDNDM2LjE2NyA3NS4wMzk4IDQ4My41NzYgNjcuNTMxIDQ5Mi41MDkgMzEuODI5MlYzMS44MjkyWicgZmlsbD0nI0E0OTVGQicvPjwvc3ZnPgo=');
	}

	.svg-mask--splat-1 img,
	.svg-mask--splat-1 svg:not(.element-icon),
	.svg-mask--splat-1 video {
	  mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTA0OCcgaGVpZ2h0PScxMDUyJyB2aWV3Qm94PScwIDAgMTA0OCAxMDUyJyBmaWxsPSdub25lJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxwYXRoIGZpbGwtcnVsZT0nZXZlbm9kZCcgY2xpcC1ydWxlPSdldmVub2RkJyBkPSdNNTcwLjkwNSAxNTIuMzQ4QzY4OC40NDEgMTQwLjMzIDc3MS4xODcgLTI3LjkxNDggODg0Ljk0MSA0LjAyNTc1Qzk4Ny45OTcgMzIuOTYyMyAxMDA2LjIzIDE3OC4xODggMTAzMi42IDI4MS45ODVDMTA1NS43NiAzNzMuMTU0IDEwNTIuMjUgNDY4LjEzNCAxMDI1Ljc2IDU1OC4zODhDMTAwMS43IDY0MC4zMzYgOTQwLjI5OCA3MDAuNTM5IDg4OS41NTIgNzY5LjIxOUM4MzQuMDIyIDg0NC4zNzUgNzk1LjMgOTM0LjQ2IDcxMy45NSA5ODAuMzk3QzYyMi4zMTggMTAzMi4xNCA1MTAuMTA4IDEwNzMuNSA0MTAuNDM2IDEwMzkuNzdDMzExLjE4NiAxMDA2LjE4IDI3NS45MjcgODg3LjQwNSAyMDYuNjc3IDgwOC43MzdDMTM2LjcwMyA3MjkuMjQ4IDE0LjY1MzYgNjc5Ljk3OCAxLjIyNDE0IDU3NC45MDdDLTEyLjIxNDYgNDY5Ljc2MyA4OC4yODk2IDM4OC40MzMgMTQxLjIyMSAyOTYuNjEyQzE4OC42MTYgMjE0LjM5NCAyMDUuNjQzIDk0LjQ4MjEgMjk1LjU3NSA2NC4yODhDMzg4LjgwOSAzMi45ODUxIDQ3My4wNzEgMTYyLjM1MSA1NzAuOTA1IDE1Mi4zNDhaJyBmaWxsPScjQTQ5NUZCJy8+PC9zdmc+Cg==');
	}

	.svg-mask--splat-2 img,
	.svg-mask--splat-2 svg:not(.element-icon),
	.svg-mask--splat-2 video {
	  mask-image: url('data:image/svg+xml;base64,PHN2ZyBmaWxsPSdub25lJyBoZWlnaHQ9Jzg5Nicgdmlld0JveD0nMCAwIDk3NyA4OTYnIHdpZHRoPSc5NzcnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggY2xpcC1ydWxlPSdldmVub2RkJyBkPSdtOTc1LjY4NCAzODEuODMyYzE3LjI2MyA5NS4wMzMtMTQwLjIxNCAxMjkuMjMxLTE4Ny4xNzcgMjEzLjY2Ni01Mi4xMzggOTMuNzM3IDguNTE1IDI4OC4wOTUtOTguMjUzIDI5OS41MDMtMTI3LjE3NSAxMy41ODctMTM4LjA0OS0xMTUuMzYyLTI2My0xNDIuNjMtMTA5LjU4NS0yMy45MTQtMjI0LjUzNSA5MS44OTQtMzA4LjcxNSAxNy44NjQtODQuNTQzMy03NC4zNDggMTE4LjY4OC0yMDcuMzczIDkzLjgyOS0zMTcuMDk0LTIyLjE0OS05Ny43Ni0yMDQuMTk2NzItMTA0Ljg3OC0yMTIuMDcxNDAxLTIwNC44LTYuODY1NTc5LTg3LjExOCAxMDcuMDIxNDAxLTEzNi4xNzcgMTgxLjU5NjQwMS0xODEuOTAxMyA2Ni4xNjMtNDAuNTY2OCAxNDIuNTMxLTc2LjcwNDkgMjE5LjA4Mi02My43Njk5NiA3MS4zODMgMTIuMDYxNzYgMTQwLjQ4NiA2Mi43NzM1NiAxNjguODUyIDEyOS4zMjAyNiA5LjkyOSAyMy4yOTMgMjUuODM5IDU0LjUyOCA2OS45MiA3OC41MTcgOTEuODU5IDQ5Ljk5IDMwNC44MTYgMCAzMzUuOTM3IDE3MS4zMjV6JyBmaWxsPScjYTQ5NWZiJyBmaWxsLXJ1bGU9J2V2ZW5vZGQnLz48L3N2Zz4=');
	}

	.svg-mask--splat-3 img,
	.svg-mask--splat-3 svg:not(.element-icon),
	.svg-mask--splat-3 video {
	  mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTA3MicgaGVpZ2h0PScxMDUxJyB2aWV3Qm94PScwIDAgMTA3MiAxMDUxJyBmaWxsPSdub25lJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxwYXRoIGZpbGwtcnVsZT0nZXZlbm9kZCcgY2xpcC1ydWxlPSdldmVub2RkJyBkPSdNNjE4LjkxMyAyMTUuMzgzQzc0NS43NzUgMjI1LjY1NyA4NDEuNzUgMTguMDA0OSA5NjAuNjc4IDYzLjMyMjRDMTA2OS44NSAxMDQuOTI0IDEwNzAuNDMgMjcxLjI2MiAxMDcxLjk5IDM4OC4wMjhDMTA3My4yNSA0ODIuMjg4IDk3Mi4wMjYgNTUwLjg1NSA5NjguNDQ5IDY0NS4wNTVDOTY0LjE0NyA3NTguMzMxIDExMDMuNjkgODY4LjI5OCAxMDQ5Ljk2IDk2OC4xMjZDMTAwMC4yNCAxMDYwLjUgODU2LjQ2OCAxMDM4LjgyIDc1MS44NzYgMTA0Ny40MUM2NjQuMzE2IDEwNTQuNiA1NzMuNjY0IDEwNTQuNDQgNDk1Ljg3IDEwMTMuNjRDNDI0LjczMSA5NzYuMzMxIDQwOS44MzQgODc4LjY4OSAzNDMuNTgyIDgzMy4yNzJDMjQxLjM0OSA3NjMuMTkgNjYuMzk5NyA3OTMuNDE2IDEyLjExOTQgNjgyLjAyM0MtMzcuNTczOCA1ODAuMDQ0IDc5LjI3NTYgNDcyLjUzOCAxMTUuNDAyIDM2NS4wMDhDMTU2LjY3MiAyNDIuMTY0IDExNS4zMiA0MS44NTYzIDIzOS41OTggNC45MjU3M0MzODEuMDgxIC0zNy4xMTc2IDQ3MS43OTEgMjAzLjQ2OCA2MTguOTEzIDIxNS4zODNaJyBmaWxsPScjQTQ5NUZCJy8+PC9zdmc+Cg==');
	}

	.svg-mask--splat-4 img,
	.svg-mask--splat-4 svg:not(.element-icon),
	.svg-mask--splat-4 video {
	  mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nNTE4JyBoZWlnaHQ9JzUwNCcgdmlld0JveD0nMCAwIDUxOCA1MDQnIGZpbGw9J25vbmUnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBjbGlwLXJ1bGU9J2V2ZW5vZGQnIGQ9J00zMDMuNzkzIDg0LjY3M0MzMTkuOTQyIDEwOC41MjEgMzM1LjUzIDEyOC4yNTMgMzYwLjI4OSAxMzMuMzk3QzQwMy42NDMgMTQyLjQwNCA0NTQuNDIxIDk3LjczMiA0OTAuNDc5IDEyMy40NTdDNTIwLjMxMSAxNDQuNzM5IDUyMy44IDIxMC42NDYgNTEwLjQ3OSAyMzUuOTk5QzQ5NC45NzkgMjY1LjQ5OSA0NTguMjc4IDI4MC4wNCA0NDIuOTc5IDMwOS45OTlDNDI0LjYyOSAzNDUuOTMxIDQ1My43NCAzODQuOTY3IDQxMC40NzkgNDEzLjQ5OUMzNzcuNTc4IDQzNS4xOTggMzQxLjgxNiAzOTcuODcyIDMwMy43OTMgNDA4LjE5OEMyNDMuODg2IDQyNC40NjYgMjA5LjIgNTA0LjU0MSAxNDcuMTQ4IDUwMi45OTlDODkuMzQxNCA1MDEuNTYzIDMxLjUxMDMgNDU0LjgzNiAxMC40NzkzIDQwMC45MDhDLTEwLjc0ODEgMzQ2LjQ3NyAyLjQzNTM5IDI3NS4wNTYgNDEuMjE1IDIzMS4zNjZDNjkuNSAxOTkuNSAxMDUgMTg5IDEyMi40OCAxMzlDMTMxLjkzNSAxMTEuOTUzIDExOS40OCAzNiAxNzQuMzc3IDYuOTQ5OThDMjE5LjYxNyAtMTYuOTg5OSAyNjYuNDQyIDI0LjAyMjEgMzAzLjc5MyA4NC42NzNaJyBmaWxsPScjQTQ5NUZCJy8+PC9zdmc+Cg==');
	}

	.background-svg--wave {
	  position: relative;
	  padding-bottom: 100px !important;
	  border-bottom: 0 !important;

	  @media only screen and (max-width: 768px) {
	    padding-bottom: 90px !important;
	  }

	  &:after {
	    content: '';
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    width: 100%;
	    height: 85px;
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-color: var(--root-color-secondary);
	    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1439 228' preserveAspectRatio='none'%3E%3Cg transform='scale(1,4)'%3E%3Cpath d='M0 57L1439 57V0C1400.62 0 1313.56 90.4365 1126.12 20.9833C938.69 -48.4699 829.284 116.882 444.121 20.9833C220.961 -34.5797 28.1238 37.491 0 57Z' fill='%23000'/%3E%3C/g%3E%3C/svg%3E");
	    mask-repeat: no-repeat;
	    mask-size: cover;

	    @media only screen and (max-width: 768px) {
	      mask-size: 190%;
	      mask-position: left bottom;
	    }
	  }
	}

	.background-svg--wave-reverse {
	  position: relative;
	  padding-top: 100px !important;
	  border-top: 0 !important;

	  @media only screen and (max-width: 768px) {
	    padding-top: 90px !important;
	  }

	  &:after {
	    content: '';
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 85px;
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-color: var(--root-color-secondary);
	    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1439 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 57L1439 57V-3.8147e-06C1400.62 -3.8147e-06 1313.56 90.4365 1126.12 20.9833C938.69 -48.4699 829.284 116.882 444.121 20.9833C220.961 -34.5797 28.1238 37.491 0 57Z' fill='currentColor'/%3E%3C/svg%3E%0A");
	    mask-repeat: no-repeat;
	    mask-size: cover;
	    transform: rotate(180deg);

	    @media only screen and (max-width: 768px) {
	      mask-size: 190%;
	      mask-position: left bottom;
	    }
	  }
	}
table {
	  width: 100%;
	  border-spacing: 1px;
	  position: relative;
	  border: 0 none;
	}
	
	td,
	th {
	  border: 0 none;
	  text-align: left;
	  padding: 10px 15px;
	  background: var(--root-color-secondary);
	
	  html[dir='rtl'] & {
	    text-align: right;
	  }
	}
	
	th,
	.table__title {
	  font-weight: var(--element-text-font-weight--heading);
	}
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
	
	/*
	Document
	========
	*/
	
	/**
	Use a better box model (opinionated).
	*/
	
	*,
	::before,
	::after {
		box-sizing: border-box;
	}
	
	/**
	1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
	2. Correct the line height in all browsers.
	3. Prevent adjustments of font size after orientation changes in iOS.
	4. Use a more readable tab size (opinionated).
	*/
	
	html {
		font-family:
			system-ui,
			'Segoe UI',
			Roboto,
			Helvetica,
			Arial,
			sans-serif,
			'Apple Color Emoji',
			'Segoe UI Emoji'; /* 1 */
		line-height: 1.15; /* 2 */
		-webkit-text-size-adjust: 100%; /* 3 */
		tab-size: 4; /* 4 */
	}
	
	/*
	Sections
	========
	*/
	
	/**
	Remove the margin in all browsers.
	*/
	
	body {
		margin: 0;
	}
	
	/*
	Text-level semantics
	====================
	*/
	
	/**
	Add the correct font weight in Chrome and Safari.
	*/
	
	b,
	strong {
		font-weight: bolder;
	}
	
	/**
	1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
	2. Correct the odd 'em' font sizing in all browsers.
	*/
	
	code,
	kbd,
	samp,
	pre {
		font-family:
			ui-monospace,
			SFMono-Regular,
			Consolas,
			'Liberation Mono',
			Menlo,
			monospace; /* 1 */
		font-size: 1em; /* 2 */
	}
	
	/**
	Add the correct font size in all browsers.
	*/
	
	small {
		font-size: 80%;
	}
	
	/**
	Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
	*/
	
	sub,
	sup {
		font-size: 75%;
		line-height: 0;
		position: relative;
		vertical-align: baseline;
	}
	
	sub {
		bottom: -0.25em;
	}
	
	sup {
		top: -0.5em;
	}
	
	/*
	Tabular data
	============
	*/
	
	/**
	Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
	*/
	
	table {
		border-color: currentcolor;
	}
	
	/*
	Forms
	=====
	*/
	
	/**
	1. Change the font styles in all browsers.
	2. Remove the margin in Firefox and Safari.
	*/
	
	button,
	input,
	optgroup,
	select,
	textarea {
		font-family: inherit; /* 1 */
		font-size: 100%; /* 1 */
		line-height: 1.15; /* 1 */
		margin: 0; /* 2 */
	}
	
	/**
	Correct the inability to style clickable types in iOS and Safari.
	*/
	
	button,
	[type='button'],
	[type='reset'],
	[type='submit'] {
		-webkit-appearance: button;
	}
	
	/**
	Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
	*/
	
	legend {
		padding: 0;
	}
	
	/**
	Add the correct vertical alignment in Chrome and Firefox.
	*/
	
	progress {
		vertical-align: baseline;
	}
	
	/**
	Correct the cursor style of increment and decrement buttons in Safari.
	*/
	
	::-webkit-inner-spin-button,
	::-webkit-outer-spin-button {
		height: auto;
	}
	
	/**
	1. Correct the odd appearance in Chrome and Safari.
	2. Correct the outline style in Safari.
	*/
	
	[type='search'] {
		-webkit-appearance: textfield; /* 1 */
		outline-offset: -2px; /* 2 */
	}
	
	/**
	Remove the inner padding in Chrome and Safari on macOS.
	*/
	
	::-webkit-search-decoration {
		-webkit-appearance: none;
	}
	
	/**
	1. Correct the inability to style clickable types in iOS and Safari.
	2. Change font properties to 'inherit' in Safari.
	*/
	
	::-webkit-file-upload-button {
		-webkit-appearance: button; /* 1 */
		font: inherit; /* 2 */
	}
	
	/*
	Interactive
	===========
	*/
	
	/*
	Add the correct display in Chrome and Safari.
	*/
	
	summary {
		display: list-item;
	}
.site-header__cart-empty {
	  display: none;
	  padding: 20px;
	
	  .is-empty & {
	    display: block;
	  }
	}
	
	.cart-drawer.is-empty {
	  & form {
	    display: none;
	  }
	}
	
	/*Scrollable products, fixed footer*/
	.cart__drawer-form {
	  max-height: 75vh;
	  max-height: calc(100dvh - var(--header-nav-height, 0px));
	  display: flex;
	  flex-direction: column;
	}
	
	.cart__scrollable {
	  overflow-y: auto;
	  padding: 20px 20px 0;
	
	  & .scrollable-grid {
	    padding-top: 20px;
	    padding-left: 20px;
	    margin-left: -20px;
	    padding-bottom: 2px;
	  }
	}
	
	.cart__footer {
	  padding: 20px;
	  border-top: 1px solid;
	  border-top-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	}
	
	.cart__note {
	  margin-bottom: 20px;
	}
:root {
	  --desktop-menu-chevron-size: 10px;
	  --site-nav-item-padding: 20px;
	  --menu-bg-color: #F3FDFE;
	  --menu-hover-color: #D4EEF1;
	}
	
	.site-nav__dropdown.megamenu,
	.megamenu {
	  padding: 40px 0 0;
	  line-height: 1.8;
	}
	
	.site-navigation {
	  .text-center & {
	    margin: 0 auto;
	  }
	}
	
	.site-navigation--below {
	  margin-left: calc(var(--site-nav-item-padding) * -1);
	
	  /*Top border*/
	  &:before {
	    position: absolute;
	    left: 0;
	    right: 0;
	    content: '';
	    display: block;
	    border-top: 1px solid;
	    border-top-color: var(--color-primary);
	    width: 100%;
	    opacity: 0.1;
	    transition: opacity 0.5s ease 0.3s;
	    z-index: 1;
	
	    /** last header section in the group */
	    .header-section:not(:has(+ .shopify-section-group-header-group)) .header-wrapper--overlay:not(.not-light-style) & {
	      border-color: var(--color-sticky-nav-links);
	    }
	
	    .header-wrapper--compressed & {
	      opacity: 0;
	    }
	
	    .site-header__element.is-active & {
	      opacity: 0.15;
	    }
	  }
	}
	
	.site-nav__item {
	  position: relative;
	  display: inline-block;
	  margin: 0;
	
	  & li {
	    display: block;
	    margin: 0;
	  }
	
	  & .element-icon-chevron-down {
	    width: var(--desktop-menu-chevron-size);
	    height: var(--desktop-menu-chevron-size);
	  }
	}
	
	.site-nav--is-megamenu.site-nav__item {
	  position: static;
	}
	
	.megamenu__wrapper {
	  display: flex;
	}
	
	/*Always on right side*/
	.megamenu__featured {
	  flex: 0 0 19%;
	  padding-bottom: 40px;
	
	  [data-grid-style='simple'] & .grid-product {
	    border: 1px solid;
	    border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  }
	}
	
	.megamenu__cols {
	  flex: 1 1 81%;
	  flex-flow: column wrap;
	  columns: 4;
	
	  .megamenu--collections & {
	    display: flex;
	    flex: 1;
	    flex-flow: row;
	    gap: 20px;
	    columns: auto auto;
	    padding-bottom: 40px;
	  }
	
	  & a:hover {
	    background-color: var(--menu-hover-color);
	  }
	}
	
	.megamenu__col {
	  padding: 0 40px 40px 0;
	  break-inside: avoid;
	
	  .megamenu--collections & {
	    padding: 0;
	    flex-basis: 210px;
	  }
	
	  &:has([data-image-type]) {
	    display: grid;
	    grid-template-columns: 220px 1fr;
	    gap: 10px;
	    flex-basis: 440px;
	
	    [data-image-type] {
	      width: 100%;
	    }
	
	    img {
	      aspect-ratio: 2 / 3;
	      object-fit: cover;
	    }
	  }
	}
	
	.megamenu__col-title a {
	  font-weight: var(--element-text-font-weight--heading);
	  font-size: calc(var(--element-text-font-size--body-md) + 1px);
	}
	
	/*Center grid items in megamenu when logo centered*/
	.text-center .megamenu .float-grid {
	  text-align: center;
	
	  & .grid__item {
	    float: none;
	    display: inline-block;
	    vertical-align: top;
	    text-align: left;
	  }
	}
	
	.site-nav__dropdown-link {
	  display: block;
	  padding: 8px 15px;
	  white-space: nowrap;
	  font-size: calc(var(--element-text-font-size--body-md) - 1px);
	
	  &:hover {
	    background-color: var(--menu-hover-color);
	  }
	
	  .megamenu & {
	    padding: 1px 0;
	    white-space: normal;
	  }
	}
	
	.site-nav__link--underline {
	  position: relative;
	
	  &:after {
	    content: '';
	    display: none;
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    margin: 0 var(--site-nav-item-padding);
	    border-bottom: 2px solid;
	    border-bottom-color: var(--color-primary);
	  }
	
	  /** last header section in the group */
	  /*White underline when no dropdown*/
	  .header-section:not(:has(+ .shopify-section-group-header-group)) .header-wrapper--overlay:not(.not-light-style) .site-nav__item:not(.site-nav--has-dropdown) &:after {
	    border-bottom-color: #fff;
	  }
	
	  .site-nav__item:hover &:after {
	    display: none;
	  }
	}
	
	.site-nav--has-dropdown.is-focused > a,
	.site-nav--has-dropdown:hover > a {
	  color: var(--root-color-primary) !important;
	  background-color: var(--menu-hover-color);
	  opacity: 1;
	  transition: none;
	}
	
	.site-nav__dropdown {
	  --color-primary: var(--root-color-primary);
	  --color-secondary: var(--menu-bg-color);
	
	  display: block;
	  visibility: hidden;
	  position: absolute;
	  left: 0;
	  z-index: var(--z-index-header-submenu);
	  color: var(--color-primary);
	  background-color: var(--menu-bg-color);
	  min-width: 100%;
	  padding: calc(var(--gutter) / 3) 0 5px;
	  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
	
	  details[open] & {
	    visibility: visible;
	  }
	}
	
	.site-nav__dropdown-list {
	  margin: 0;
	}
	
	.site-nav__dropdown-animate {
	  transform: translateY(-10px);
	  opacity: 0;
	
	  details[open] & {
	    opacity: 1;
	    transform: translateY(0px);
	    transition:
	      opacity 0.3s ease 0.05s,
	      transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
	  }
	}
	
	.site-nav__deep-dropdown {
	  background-color: var(--menu-bg-color);
	  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
	  position: absolute;
	  top: 0;
	  left: 100%;
	  margin: 0;
	  visibility: hidden;
	  opacity: 0;
	  z-index: var(--z-index-header);
	  transform: translate3d(-12px, 0, 0);
	
	  .site-nav__deep-dropdown-trigger:hover &,
	  .is-focused + & {
	    visibility: visible;
	    opacity: 1;
	    transform: translate3d(0, 0, 0);
	    transition: all 300ms cubic-bezier(0.2, 0.06, 0.05, 0.95);
	  }
	
	  &:before {
	    content: '';
	    display: block;
	    position: absolute;
	    top: 0;
	    left: 0;
	    bottom: 0;
	    width: 10px;
	    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.09), transparent);
	    pointer-events: none;
	  }
	}
	
	.site-nav__dropdown-link--has-children {
	  .site-nav__deep-dropdown-trigger:hover & {
	    background-color: var(--menu-hover-color);
	  }
	
	  &:hover,
	  &:focus {
	    background-color: var(--menu-hover-color);
	  }
	}
	
	/*Rotate to face right*/
	.site-nav__deep-dropdown-trigger .element-icon-chevron-down {
	  position: absolute;
	  top: 50%;
	  right: 10px;
	  width: var(--desktop-menu-chevron-size);
	  height: var(--desktop-menu-chevron-size);
	  transform: rotate(-90deg) translateX(50%);
	}
	
	.site-nav__details {
	  cursor: pointer;
	}
	/* --- Fix for dropdown arrow alignment on product page --- */
.site-nav__details summary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px;
  vertical-align: middle;
}

.site-nav__details summary .element-icon-chevron-down {
  position: relative !important;
  top: 0 !important;
  transform: translateY(1px);
}
.site-header__drawer {
	  --color-primary: var(--root-color-primary);
	  --color-secondary: var(--root-color-secondary);
	
	  display: none;
	  position: absolute;
	  top: 1px;
	  padding: 20px;
	  width: 100%;
	  max-height: 75vh;
	  max-height: var(--max-drawer-height);
	  overflow-y: auto;
	  background-color: var(--color-secondary);
	  color: var(--color-primary);
	  box-shadow: var(--drawer-box-shadow);
	  z-index: var(--z-index-header-drawers);
	  transition: all var(--slide-curve);
	  transform: translateY(-100%);
	
	  @media only screen and (max-width: 768px) {
	    top: 0;
	    z-index: var(--z-index-header-drawers-mobile);
	  }
	
	  &.is-active {
	    display: block;
	    transform: translateY(0);
	  }
	
	  .header-wrapper--compressed & {
	    top: 0;
	  }
	}
	
	.site-header__drawer-animate {
	  transform: translateY(-20px);
	  opacity: 0;
	
	  .is-active & {
	    opacity: 1;
	    transform: translateY(0px);
	    transition:
	      opacity 0.3s ease 0.15s,
	      transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
	  }
	}
.site-nav__close-cart {
    display: none;

    .cart-open & {
      display: block;
    }

    & .element-icon {
      padding: var(--size-1);
    }
  }

  .site-nav__icon-label {
    margin-left: 15px;
  }

  /*Cart link and bubble*/
  .cart-link {
    position: relative;
    display: inline-block;
  }

  .cart-link__bubble {
    display: none;
    position: absolute;
    top: 50%;
    right: -4px;
    font-size: 12px;
    line-height: 1;
    font-weight: var(--element-text-font-weight--heading);
    letter-spacing: 0;
    text-align: center;

    &:before {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      background-color: #1fa79a; /* Bubble color */
      border-radius: 50%;
      width: 20px;  /* Adjust size if needed */
      height: 20px; /* Adjust size if needed */
      transform: translate(-50%, -50%);
    }

    /* Slight position change with cart icon */
    [data-icon='cart'] & {
      top: -2px;
      right: 0;
    }
  }

  .cart-link__bubble-num {
    position: relative;
    color: white; /* Number color */
    font-weight: bold;
    z-index: 1;
  }

  .cart-link__bubble--visible {
    display: block;
  }
/*Height changes based on active subnav*/
	.slide-nav__wrapper {
	  --z-index-overlay: 1;
	  position: relative;
	  overflow: hidden;
	  display: block;
	
	  &:after {
	    background-color: rgba(0, 0, 0, 0.027);
	    pointer-events: none;
	    border-radius: var(--roundness);
	  }
	}
	
	/*Element slides left/right to reveal current nav level*/
	.slide-nav {
	  margin: 0;
	  list-style: none;
	  transition: transform var(--slide-curve);
	
	  [data-level='2'] & {
	    transform: translateX(-100%);
	  }
	
	  [data-level='3'] & {
	    transform: translateX(-200%);
	  }
	}
	
	/*button element cannot be flex, so make invisible and style child*/
	.slide-nav__button {
	  display: block;
	  background: none;
	  border: 0;
	  padding: 0;
	  width: 100%;
	  text-align: left;
	
	  [dir='rtl'] & {
	    text-align: right;
	  }
	}
	
	.slide-nav__link {
	  position: relative;
	  display: flex;
	  width: 100%;
	  padding: 10px 20px;
	  align-items: center;
	  justify-content: space-between;
	  font-size: calc(var(--element-text-font-size--body-md) + 2px);
	
	  & > span {
	    display: block;
	    flex: 1 1 auto;
	  }
	
	  & .element-icon {
	    width: 11px;
	    height: 11px;
	    margin-left: 10px;
	  }
	}
	
	/*Collection link image*/
	.slide-nav__image {
	  position: absolute;
	  width: 40px;
	  height: 40px;
	  left: 15px;
	  top: 50%;
	  margin-top: -20px;
	
	  & img {
	    object-fit: cover;
	    width: 100%;
	    height: 100%;
	  }
	
	  & + span {
	    padding-left: 45px;
	  }
	}
	
	/*Slightly different style, icon on left*/
	.slide-nav__link--back {
	  font-weight: var(--element-text-font-weight--heading);
	  justify-content: flex-start;
	
	  & > span {
	    text-decoration: underline;
	    text-underline-offset: 2px;
	  }
	
	  & .element-icon {
	    margin-right: 15px;
	    margin-left: 0;
	    transform: rotate(180deg);
	  }
	}
	
	/*list item*/
	.slide-nav__item {
	  display: block;
	  width: 100%;
	  margin: 0;
	
	  &:first-child {
	    padding-top: 10px;
	  }
	
	  &:last-child {
	    padding-bottom: 10px;
	  }
	}
	
	.slide-nav__dropdown {
	  display: none;
	  visibility: hidden;
	  position: absolute;
	  width: 100%;
	  top: 0;
	  right: -100%;
	  margin: 0;
	  opacity: 0;
	  transition: all var(--slide-curve);
	
	  &.is-active {
	    display: block;
	    visibility: visible;
	    opacity: 1;
	    transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s forwards;
	  }
	}
	
	/*Adjustments to footer menus when inside mobile nav*/
	.site-header__mobile-nav .footer__section--menus {
	  margin-top: 20px;
	  margin-left: calc(var(--page-width-padding) * -1);
	  margin-right: calc(var(--page-width-padding) * -1);
	}
header-nav {
    display: block;
    width: 100%;
    background-color: #D4EEF1; /* full-width menu background color */
  }

  /* Sticky header background stays consistent */
  .header-wrapper--compressed {
    background-color: #D4EEF1;
  }
.site-header__search-container {
	  display: none;
	  align-items: center;
	  position: absolute;
	  top: 0;
	  left: 0;
	  bottom: 0;
	  right: 0;
	  z-index: var(--z-index-header-search);
	
	  &.is-active {
	    display: flex;
	    background-color: var(--color-secondary);
	  }
	
	  & .page-width {
	    display: flex;
	    width: 100%;
	    position: relative;
	  }
	}
	
	.site-header__search {
	  display: flex;
	  width: 100%;
	
	  > is-land {
	    width: 100%;
	  }
	}
.content-over-media {
    --container-max-width: calc(var(--page-width) - var(--page-width-padding) * 2);
    --container-gutter: 40px;
    --content-over-media-gap: var(--container-gutter);
    --content-over-media-column-gap: var(--content-over-media-gap);
    --content-over-media-row-gap: var(--content-over-media-gap);
    --overlay: 0 0 0;
    --color-text: white;

    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, min(var(--container-max-width), 100% - var(--content-over-media-column-gap) * 2))
      minmax(0, 1fr);
    grid-template-rows: 0 minmax(0, 1fr) 0;
    gap: var(--content-over-media-row-gap) var(--content-over-media-column-gap);
    place-items: center;
    position: relative;
    overflow: hidden;

    &.color-scheme-1 {
      --color-text: var(--color-scheme-1-primary);
      --overlay: var(--color-scheme-1-secondary);
    }

    &.color-scheme-2 {
      --color-text: var(--color-scheme-2-primary);
      --overlay: var(--color-scheme-2-secondary);
    }

    &.color-scheme-3 {
      --color-text: var(--color-scheme-3-primary);
      --overlay: var(--color-scheme-3-secondary);
    }

    &.color-scheme-none {
      --color-text: var(--root-color-primary);
      --overlay: var(--root-color-secondary);
    }
  }

  .content-over-media[data-overlay='true']:before {
    content: '';
    background-color: color-mix(in srgb, var(--overlay) 30%, transparent);
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .content-over-media > :not(.content-over-media__content) {
    position: relative;
    grid-area: 1 / 1 / span 3 / span 3;
    place-self: stretch;
    width: 100%;
    height: var(--content-over-media-height);
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    overflow-wrap: anywhere;
    transform-origin: top;
    user-select: none;
  }

  .content-over-media__content {
    color: var(--color-text);
    position: relative;
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: auto;
    grid-column-end: span 1;
    max-width: var(--content-over-media-content-max-width, 650px);
    z-index: 1;
  }

  .content-over-media[data-height='small'] {
    --content-over-media-height: 400px;
  }

  .content-over-media[data-height='medium'] {
    --content-over-media-height: 600px;
  }

  .content-over-media[data-height='large'] {
    --content-over-media-height: 800px;
  }

  .content-over-media[data-height='full'] {
    /* TODO: figure out logic for when we create new header with transparency */
    /* --content-over-media-height: calc(100vh - var(--safe-sticky-height) ; */
    --content-over-media-height: 100vh;
  }

  /* TODO: this should be part of a more generalized media file */
  picture img {
    width: 100%;
    max-height: 100%;
    min-height: inherit;
  }

  /* TODO: this should be part of a more generalized media file */
  .content-over-media iframe {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    aspect-ratio: 16 / 9;
  }

  .content-over-media__content[data-mobile-content-position='start'] {
    place-self: start;
    text-align: start;
  }

  .content-over-media__content[data-mobile-content-position='top-center'] {
    place-self: start center;
    text-align: center;
  }

  .content-over-media__content[data-mobile-content-position='top-end'] {
    place-self: start end;
    text-align: end;
  }

  .content-over-media__content[data-mobile-content-position='center-start'] {
    place-self: center start;
    text-align: start;
  }

  .content-over-media__content[data-mobile-content-position='center'] {
    place-self: center center;
    text-align: center;
  }

  .content-over-media__content[data-mobile-content-position='center-end'] {
    place-self: center end;
    text-align: end;
  }

  .content-over-media__content[data-mobile-content-position='end-start'] {
    place-self: end start;
    text-align: start;
  }

  .content-over-media__content[data-mobile-content-position='end-center'] {
    place-self: end center;
    text-align: center;
  }

  .content-over-media__content[data-mobile-content-position='end'] {
    place-self: end end;
    text-align: end;
  }

  @media only screen and (min-width: 769px) {
    .content-over-media__content[data-desktop-content-position='start'] {
      place-self: start;
      text-align: start;
    }

    .content-over-media__content[data-desktop-content-position='top-center'] {
      place-self: start center;
      text-align: center;
    }

    .content-over-media__content[data-desktop-content-position='top-end'] {
      place-self: start end;
      text-align: end;
    }

    .content-over-media__content[data-desktop-content-position='center-start'] {
      place-self: center start;
      text-align: start;
    }

    .content-over-media__content[data-desktop-content-position='center'] {
      place-self: center center;
      text-align: center;
    }

    .content-over-media__content[data-desktop-content-position='center-end'] {
      place-self: center end;
      text-align: end;
    }

    .content-over-media__content[data-desktop-content-position='end-start'] {
      place-self: end start;
      text-align: start;
    }

    .content-over-media__content[data-desktop-content-position='end-center'] {
      place-self: end center;
      text-align: center;
    }

    .content-over-media__content[data-desktop-content-position='end'] {
      place-self: end end;
      text-align: end;
    }
  }
/* Public Layout Grid Tokens */
  :root {
    /* Layout Grid Gap Sizes - These are assigned by the value passed to the 'gap' param */
    --layout-grid-gap-size-none: 0px;
    --layout-grid-gap-size-3xs: var(--gap-size-3xs);
    --layout-grid-gap-size-2xs: var(--gap-size-2xs);
    --layout-grid-gap-size-xs: var(--gap-size-xs);
    --layout-grid-gap-size-sm: var(--gap-size-sm);
    --layout-grid-gap-size-md: var(--gap-size-md);
    --layout-grid-gap-size-lg: var(--gap-size-lg);
    --layout-grid-gap-size-xl: var(--gap-size-xl);
    --layout-grid-gap-size-2xl: var(--gap-size-2xl);

    /* Layout Grid Line Sizes - These are assigned by the value passed to the 'lines' param */
    --layout-grid-line-size-none: 0px;
    --layout-grid-line-size-xs: var(--line-size-xs);
    --layout-grid-line-size-sm: var(--line-size-sm);
    --layout-grid-line-size-md: var(--line-size-md);
    --layout-grid-line-size-lg: var(--line-size-lg);
    --layout-grid-line-size-xl: var(--line-size-xl);

    --layout-grid-line-color-shade: 12%;
  }
/* default configuration values */
  .heading-section {
    --header-position: static;
    --link-left-position: auto;
    --link-position: static;
    --link-right-position: auto;
    --link-top-position: auto;
    --padding: 0;
    --title-alignment: inherit;
  }

  /* configuration values for different component states */
  .heading-section:has(.section-header__title).text-right {
    --padding: 20px;

    @media only screen and (max-width: 768px) {
      --padding: 10px;
    }
  }

  .heading-section:has(.section-header__title).text-center {
    --header-position: relative;
    --link-position: absolute;
    --link-right-position: 0;
    --link-top-position: 0;

    @media only screen and (max-width: 768px) {
      --link-position: relative;
    }
  }

  .heading-section:has(.section-header__title).text-center.text-direction-rtl {
    --link-left-position: 0;
    --link-right-position: auto;
  }

  .heading-section:has(.section-header__link).text-direction-ltr {
    @media only screen and (max-width: 768px) {
      --title-alignment: left;
    }
  }

  .heading-section:has(.section-header__link).text-direction-rtl {
    @media only screen and (max-width: 768px) {
      --title-alignment: right;
    }
  }

  /* component styles */
  .heading-section .section-header__link {
    padding-inline-start: var(--padding);
    position: var(--link-position);
    right: var(--link-right-position);
    top: var(--link-top-position);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .heading-section .section-header__link .arrow {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .heading-section .section-header__link:hover {
    color: #0047ab;
  }

  .heading-section .section-header__link:hover .arrow {
    opacity: 1;
    transform: translateX(5px);
  }

  .heading-section.text-direction-rtl .section-header__link {
    padding-inline-start: 0;
  }

  .heading-section.text-direction-rtl .section-header__link:hover .arrow {
    transform: translateX(-5px);
  }

  .heading-section .section-header {
    position: var(--header-position);
  }

  .heading-section .section-header__title {
    text-align: var(--title-alignment);
  }

  .heading-section.text-direction-rtl .section-header__title {
    padding-inline-start: var(--padding);
  }
:root {
    --layout-section-max-inline-size: var(--page-width, 1500px);

    --layout-section-padding-inline: var(--size-4);
    --layout-section-padding-inline--xs: initial;
    --layout-section-padding-inline--sm: initial;
    --layout-section-padding-inline--md: initial;
    --layout-section-padding-inline--lg: initial;
    --layout-section-padding-inline--xl: initial;

    --layout-section-padding-block: var(--size-8);
    --layout-section-padding-block--xs: initial;
    --layout-section-padding-block--sm: initial;
    --layout-section-padding-block--md: initial;
    --layout-section-padding-block--lg: initial;
    --layout-section-padding-block--xl: initial;

    --layout-section-color: initial;
    --layout-section-background: initial;
  }

  .layout-section {
    --_max-inline-size: var(--layout-section-max-inline-size);

    --_padding-inline--xs: var(--layout-section-padding-inline--xs, var(--layout-section-padding-inline));
    --_padding-inline--sm: var(--layout-section-padding-inline--sm, var(--_padding-inline--xs));
    --_padding-inline--md: var(--layout-section-padding-inline--md, var(--_padding-inline--sm));
    --_padding-inline--lg: var(--layout-section-padding-inline--lg, var(--_padding-inline--md));
    --_padding-inline--xl: var(--layout-section-padding-inline--xl, var(--_padding-inline--lg));
    --_padding-inline: var(--_padding-inline--xs);

    --_padding-block--xs: var(--layout-section-padding-block--xs, var(--layout-section-padding-block));
    --_padding-block--sm: var(--layout-section-padding-block--sm, var(--_padding-block--xs));
    --_padding-block--md: var(--layout-section-padding-block--md, var(--_padding-block--sm));
    --_padding-block--lg: var(--layout-section-padding-block--lg, var(--_padding-block--md));
    --_padding-block--xl: var(--layout-section-padding-block--xl, var(--_padding-block--lg));
    --_padding-block: var(--_padding-block--xs);

    --_color: var(--layout-section-color, var(--color-primary, #000));
    --_background: var(--layout-section-background, var(--color-secondary, #fff));

    display: flex;
    width: 100%;
    position: relative;
    justify-content: center;
    background: var(--_background);
    color: var(--_color);
    padding-inline: var(--_padding-inline);
    padding-block: var(--_padding-block);

    & > .layout-section__content {
      display: block;
      max-inline-size: var(--_max-inline-size);
      z-index: 1;
      width: 100%;
      flex-grow: 1;
    }

    &.layout-section--full-width > .layout-section__content {
      max-inline-size: 100%;
    }

    &.layout-section--padding-none {
      padding-block: 0;
    }

    &.layout-section--padding-top {
      padding-block-end: 0;
    }

    &.layout-section--padding-bottom {
      padding-block-start: 0;
    }
  }
/* Public Layout Stack Tokens */
  :root {
    /* Layout Stack Gap Sizes - These are assigned by the value passed to the 'gap' param */
    --layout-stack-gap-size-none: 0px;
    --layout-stack-gap-size-3xs: var(--gap-size-3xs);
    --layout-stack-gap-size-2xs: var(--gap-size-2xs);
    --layout-stack-gap-size-xs: var(--gap-size-xs);
    --layout-stack-gap-size-sm: var(--gap-size-sm);
    --layout-stack-gap-size-md: var(--gap-size-md);
    --layout-stack-gap-size-lg: var(--gap-size-lg);
    --layout-stack-gap-size-xl: var(--gap-size-xl);
    --layout-stack-gap-size-2xl: var(--gap-size-2xl);

    /* Layout Stack Default Layout */
    --layout-stack-margin: 0;
  }
:root {
    --layout-sticky-scroller-top: 20px;
  }

	sticky-scroller {
	  --_top: var(--layout-sticky-scroller-top);
	
	  display: block;
	  position: sticky;
	  top: var(--_top);
	}
/*Article grid items*/
  .grid-article {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 40px;

    @media only screen and (max-width: 768px) {
      &[data-style='large'] {
        justify-content: center;
      }
    }

    @media only screen and (min-width: 769px) {
      &[data-style='medium'],
      &[data-style='large'] {
        display: block;
      }
    }

    &:last-child {
      margin-bottom: 0;
    }
  }

  .grid-article__image {
    position: relative;
    flex: 0 0 100%;

    & .image-wrap {
      border-radius: var(--roundness);
    }

    &:not(:has(.grid-article__tags)) {
      margin-bottom: 20px;
    }
  }

  .grid-article__tags {
    display: block;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);

    li {
      margin-bottom: 0;
    }
  }

  .grid-article__meta {
    flex: 0 0 100%;
  }

  .grid-article[data-style='large'] {
    & .article__title {
      font-size: calc(var(--element-text-font-size--body-md) + 10px);

      @media only screen and (max-width: 768px) {
        font-size: calc(var(--element-text-font-size--body-md) + 7px);
      }
    }

    & .article__sub-meta > span {
      margin: 0 25px 2px;
    }
  }

  .grid-article[data-style='medium'] {
    flex: 0 0 50%;

    & .article__title {
      font-size: calc(var(--element-text-font-size--body-md) + 2px);
    }

    @media only screen and (min-width: 769px) {
      & .article__sub-meta > span {
        margin: 0 5px 2px;
      }
    }
  }

  /*Compact grid article styles*/
  .grid-article[data-style='compact'] {
    flex: 0 0 100%;
    flex-wrap: nowrap;
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
    gap: 10px;

    & .grid-article__image {
      flex: 0 0 40%;
      align-self: flex-start;
    }

    & .grid-article__meta {
      flex: 0 0 60%;
      padding-left: 15px;
    }

    & .article__title {
      font-size: calc(var(--element-text-font-size--body-md) + 1px);
    }

    /* Only show first tag */
    & .chip:not(:first-of-type) {
      display: none;
    }
  }

  /*Medium on large screens matches compact styles on small screens*/
  @media only screen and (max-width: 768px) {
    .grid-article[data-style='medium'] {
      flex: 0 0 100%;
      flex-wrap: nowrap;
      text-align: left;
      margin-bottom: 20px;
      gap: 10px;

      & .grid-article__image {
        flex: 0 0 40%;
        align-self: center;
      }

      & .grid-article__meta {
        flex: 0 0 60%;
        padding-left: 15px;
      }

      & .article__title {
        font-size: calc(var(--element-text-font-size--body-md) + 1px);
      }

      /* Only show first tag */
      & .badge:not(:first-child) {
        display: none;
      }
    }
  }
.collection-item {
	  position: relative;
	  display: block;
	  flex: 1 1 100%;
	  text-align: center;
	  margin-bottom: 5px;
	
	  @media only screen and (min-width: 769px) {
	    margin-bottom: 15px;
	  }
	}
	
	.collection-image-wrap {
	  position: relative;
	  transition: all 0.2s ease;
	
	  &.collection-image-color--undefined {
	    --z-index-overlay: 1;
	    &:after {
	      background-color: rgba(0, 0, 0, 0.027);
	      pointer-events: none;
	      transition: all 0.2s ease;
	      border-radius: var(--roundness);
	    }
	  }
	
	  &.collection-image-color--white {
	    &:before {
	      background-color: #fff;
	      transition: all 0.2s ease;
	      border-radius: var(--roundness);
	    }
	  }
	
	  &.collection-image-color--grey {
	    --z-index-overlay: 1;
	    &:after {
	      background-color: rgba(0, 0, 0, 0.027);
	      pointer-events: none;
	      transition: all 0.2s ease;
	      border-radius: var(--roundness);
	    }
	  }
	
	  &.collection-image--circle:hover {
	    border-radius: 50%;
	  }
	
	  &:hover {
	    transform: translateY(-3px);
	    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.1);
	    border-radius: var(--roundness);
	
	    &:after {
	      background-color: rgba(0, 0, 0, 0);
	    }
	  }
	
	  .collection-item:active & {
	    transform: scale(0.97);
	    transition: transform 0.05s ease-out;
	  }
	}
	
	.collection-image {
	  position: static;
	}
	
	.collection-image img {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 100%;
	  object-fit: contain;
	  padding: var(--collection-tile-margin, 10%);
	}
	
	.collection-image img,
	.collection-image svg {
	  border-radius: var(--roundness);
	}
	
	.collection-image--is-collection img,
	.collection-image-fill-space--true img {
	  object-fit: cover;
	}
	
	.collection-image--placeholder {
	  opacity: 1;
	
	  & svg {
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	  }
	}
	
	.collection-image--circle {
	  border-radius: 50%;
	  overflow: hidden;
	
	  &:after {
	    border-radius: 50%;
	  }
	}
	
	.collection-image--circle,
	.collection-image--square {
	  padding-bottom: 100%;
	}
	
	.collection-image--landscape {
	  padding-top: 75%;
	}
	
	.collection-image--portrait {
	  padding-top: 150%;
	}
	
	.collection-item__title {
	  display: block;
	  margin-top: 12px;
	  font-weight: var(--element-text-font-weight--heading);
	  padding: 0 7%;
	}
	
	.overlay--before::before {
	  content: '';
	  display: block;
	  position: absolute;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  z-index: var(--z-index-overlay, auto);
	}
.active-tags {
	  display: block;
	
	  @media only screen and (max-width: 768px) {
	    margin: 20px 20px 10px;
	  }
	}
@media only screen and (max-width: 768px) {
	  .collection-mobile-filters .filter-wrapper {
	    --element-accordion-px: var(--page-width-gutter-small);
	
	    display: none;
	    transition: all var(--slide-curve);
	    background-color: var(--color-secondary);
	    transform: translateY(-100%);
	    max-height: 80vh;
	    overflow: auto;
	    box-shadow: var(--drawer-box-shadow);
	
	    &.is-active {
	      display: block;
	      height: 100%;
	      transform: translateY(0);
	    }
	  }
	
	  .collection-mobile-filters {
	    position: absolute;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    height: 0;
	    overflow: visible;
	  }
	}
	
	.collection-filter {
	  margin-bottom: calc(var(--gutter) / 2);
	
	  @media only screen and (max-width: 768px) {
	    position: sticky;
	    top: 0; /*updated with JS based on sticky header height*/
	    z-index: 2;
	    margin-left: calc(var(--page-width-gutter-small) * -1);
	    margin-right: calc(var(--page-width-gutter-small) * -1);
	    margin-bottom: 0;
	  }
	}
	
	.collection-filter__inner {
	  display: flex;
	  align-items: center;
	  justify-content: flex-end;
	  flex-wrap: nowrap;
	
	  @media only screen and (max-width: 768px) {
	    position: relative;
	    z-index: 2;
	    justify-content: space-between;
	    background: var(--color-secondary);
	    padding: 0 var(--page-width-gutter-small);
	
	    &:after {
	      content: '';
	      position: absolute;
	      height: 20px;
	      top: 100%;
	      left: 0;
	      right: 0;
	      pointer-events: none;
	      background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
	    }
	  }
	
	  active-tags {
	    display: inline-flex;
	    margin-right: auto;
	    flex: 1;
	
	    @media only screen and (max-width: 768px) {
	      display: none;
	    }
	  }
	
	  .tag {
	    margin: 0;
	  }
	}
	
	.collection-filter__item {
	  flex: 0 1 auto;
	}
	
	.collection-filter__item--drawer {
	  flex: 0 1 50%;
	  padding-right: calc(var(--gutter) / 4);
	}
	
	.collection-filter__item--count {
	  flex: 1 1 50%;
	  text-align: center;
	}
	
	@media only screen and (max-width: 768px) {
	  .collection-filter__item--count {
	    order: 3;
	    flex: 1 1 100%;
	  }
	}
	
	.grid-view-btn {
	  display: block;
	  padding: 10px 8px;
	  opacity: 0.15;
	
	  &:hover {
	    opacity: 0.4;
	  }
	
	  &.is-active {
	    opacity: 1;
	  }
	
	  & svg {
	    display: block;
	  }
	
	  @media only screen and (max-width: 768px) {
	    & svg {
	      width: 18px;
	      height: 18px;
	    }
	  }
	}
.collection-filter__item--right {
	  display: flex;
	  align-items: center;
	  justify-content: flex-end;
	  flex: 0 1 auto;
	
	  /*account for button padding*/
	  & > .inline-list {
	    margin-right: -7px;
	  }
	}
	
	.image-filter__wrapper ul {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 10px;
	
	  label {
	    height: 100%;
	    align-items: flex-start;
	    border: 1px solid transparent;
	
	    &:active,
	    &:hover,
	    &:focus-within {
	      border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));;
	    }
	  }
	
	  .tag__text {
	    margin-left: 0;
	  }
	}
	
	.image-filter__wrapper .tag--active label {
	  border-color: var(--root-color-primary);
	  border: 2px solid;
	}
	
	.image-filter__image-wrapper {
	  display: flex;
	  flex-direction: column;
	  gap: 10px;
	  text-align: center;
	}
	
	.tag-list--active-tags:empty {
	  display: none;
	}
	
	@media only screen and (max-width: 768px) {
	  .tag-list--active-tags {
	    margin: 20px 20px 10px;
	  }
	
	  .collection-sidebar__group {
	    border-top: 1px solid;
	    border-top-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  }
	}
	
	.collection-sidebar__group {
	  & .tag-list {
	    list-style: none;
	
	    @media only screen and (max-width: 768px) {
	      &:not(.tag-list--swatches) {
	        columns: 2;
	      }
	    }
	
	    & a:hover {
	      text-decoration: underline;
	      text-underline-offset: 2px;
	    }
	  }
	}
	
	:root {
	  --tag-active-icon-size: 16px;
	  --tag-active-icon-size-active: 10px;
	}
	
	.tag-list .tag-list {
	  margin-left: calc(var(--gutter) / 2);
	}
	
	.tag-list li {
	  margin-bottom: 0;
	}
	
	.tag--reset-all {
	  margin: 0;
	  align-self: center;
	
	  a {
	    line-height: 1.375rem;
	    text-decoration-line: underline;
	    text-decoration-style: solid;
	    text-decoration-skip-ink: none;
	    text-decoration-thickness: auto;
	    text-underline-offset: 2px;
	  }
	}
	
	.tag--active > a,
	.tag--active > button {
	  font-weight: 900;
	}
	
	.tag-list--checkboxes {
	  padding-bottom: 6px;
	
	  & a {
	    position: relative;
	    padding-left: 25px;
	
	    &:before,
	    &:after {
	      content: '';
	      position: absolute;
	      left: 0;
	      top: 50%;
	      transform: translateY(-50%);
	    }
	
	    &:before {
	      border: 1px solid;
	      border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	      height: var(--tag-active-icon-size);
	      width: var(--tag-active-icon-size);
	    }
	
	    &:after {
	      height: var(--tag-active-icon-size-active);
	      width: var(--tag-active-icon-size-active);
	      left: 3px;
	    }
	  }
	}
	
	.tag-list--checkboxes .tag--active a:after,
	.tag--active .tag__checkbox:after,
	input:checked ~ .tag__checkbox:after {
	  background-color: var(--root-color-primary);
	  border-color: var(--root-color-primary);
	}
	
	/*Remove tags (top of sidebar)*/
	.tag--inline {
	  display: inline-block;
	  position: relative;
	  margin: 0 10px 13px 0;
	
	  & a {
	    display: block;
	    text-align: left;
	    padding: 7px 15px 7px 36px;
	    min-width: 0;
	  }
	
	  /*X icon sits over button, not in it*/
	  & .element-icon {
	    position: absolute;
	    left: 10px;
	    top: 50%;
	    transform: translateY(-50%);
	    pointer-events: none;
	    color: var(--color-button-primary-text);
	  }
	}
	
	.tag--inline a {
	  padding: 7px 15px 7px 15px;
	}
	
	/*Color swatches in sidebar*/
	.tag-list--swatches {
	  margin-top: 2px;
	
	  & li {
	    display: inline-block;
	  }
	}
	
	.tag__checkbox {
	  position: relative;
	  padding-left: 25px;
	  overflow: hidden;
	
	  &:before,
	  &:after {
	    content: '';
	    position: absolute;
	    left: 0;
	    top: 50%;
	    transform: translateY(-50%);
	  }
	
	  &:before {
	    border: 1px solid;
	    border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	    height: var(--tag-active-icon-size);
	    width: var(--tag-active-icon-size);
	  }
	
	  &:after {
	    height: var(--tag-active-icon-size-active);
	    width: var(--tag-active-icon-size-active);
	    left: 3px;
	  }
	}
	
	.tag__input {
	  position: absolute;
	  opacity: 0;
	  cursor: pointer;
	  height: 0;
	  width: 0;
	}
	
	/*Sidebar color swatches*/
	.tag--swatch {
	  display: inline-block;
	
	  .color-swatch {
	    width: 35px;
	    height: 35px;
	    flex-shrink: 0;
	  }
	}
	
	.tag--active .color-swatch:hover:after {
	  position: absolute;
	  content: '';
	  left: 50%;
	  top: 0;
	  bottom: 0;
	  border-left: 1px solid;
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  transform: rotate(45deg);
	}
	
	.tag:focus-within .color-swatch {
	  box-shadow: 0 0 0 1px var(--root-color-primary);
	}
	
	.tag--active .color-swatch {
	  box-shadow: 0 0 0 2px var(--root-color-primary);
	}
	
	.tag--show-label {
	  width: 100%;
	
	  .tag__text {
	    display: block !important;
	    margin-left: 0.5rem;
	    margin-bottom: 4px;
	  }
	}
	
	/*conditional styles for tags*/
	.item-grid--filters-pill .accordion:has(.chip) {
	  .no-bullets.tag-list {
	    display: inline-flex;
	    flex-wrap: wrap;
	    gap: 6px;
	  }
	
	  .checkbox:has(input[type='checkbox']:focus) {
	    /* Chip tokens */
	    --chip-focus-outline: var(--color-focus);
	    --chip-inset-box-shadow: transparent;
	  }
	}

	.tag--image .tag__checkbox-wrapper {
		display: block;

		&:has(input[type='checkbox']:focus-visible) {
			outline: 3px solid var(--color-focus);
		}
	}
/*Unload ajax styles*/
	.collection-grid__wrapper.unload {
	  min-height: 180px;
	  position: relative;
	}
	
	@media only screen and (min-width: 769px) {
	  .collection-sidebar {
	    padding-right: 10px;
	    margin-bottom: 20px;
	  }
	}
	
	.collection-grid {
	  margin-bottom: var(--index-section-padding);
	}
	
	/*Collection sidebar turns into a slide-down drawer on mobile*/
	@media only screen and (max-width: 768px) {
	  /*Slight padding above grid when quick view buttons extend above grid item*/
	  [data-grid-style='simple'] .collection-grid,
	  [data-grid-style*='grey'] .collection-grid,
	  [data-grid-style*='white'] .collection-grid {
	    padding-top: 10px;
	  }
	}
	
	.unload {
	  & [data-section-type='collection-template'] {
	    animation: grid-product__loading 1.5s ease infinite 1.5s;
	  }
	
	  & .collection-grid {
	    opacity: 0.2;
	    transition: opacity 0.3s;
	  }
	}
	
	.item-grid {
	  display: block;
	}
	
	.item-grid__sidebar {
	  min-height: 0;
	  position: sticky;
	  top: 90px; /*updated with sticky header JS*/
	  max-height: 90vh;
	  overflow-y: auto;
	}
.filter-list {
	  display: block;
	
	  .tag__count:before {
	    .item-grid:not(.item-grid--filters-pill) & {
	      content: "(";
	    }
	  }
	
	  .tag__count:after {
	    .item-grid:not(.item-grid--filters-pill) & {
	      content: ")";
	    }
	  }
	
	  .tag__checkbox-wrapper {
	    &:hover {
	      --element-swatch-shade-outer: 20%;
	    }
	
	    &:has(input[type='checkbox']:focus),
	    &:has(input[type='checkbox']:checked) {
	      --element-swatch-shade-outer: 100%;
	    }
	  }
	}
	.filter-list:not(.show-all) .show-more ~ li {
	  display: none !important;
	}
	
	.filter-list.show-all li.show-more {
	  display: none !important
	}
	
	.filter-list {
	  .show-more,
	  .show-less {
	    width: 100%;
	    font-size: 0.875rem;
	
	    button {
	      font-size: inherit;
	    }
	  }
	}
.collection-filter__btn {
	  padding: 12px 0;
	  font-weight: var(--element-text-font-weight--heading);
	  font-size: calc(var(--element-text-font-size--body-md) + 1px);
	
	  & .element-icon {
	    vertical-align: middle;
	    width: 25px;
	    height: 25px;
	    margin-top: -1px;
	    margin-right: 5px;
	  }
	
	  & path {
	    transition: all 0.3s cubic-bezier(0.18, 0.77, 0.58, 1);
	  }
	
	  /*Animate SVG to become close icon*/
	  &.is-active {
	    & path:nth-child(3) {
	      transform: rotate(45deg);
	      transform-origin: 70% 90%;
	    }
	    & path:nth-child(1),
	    & path:nth-child(2),
	    & path:nth-child(4),
	    & path:nth-child(5) {
	      opacity: 0;
	    }
	    & path:nth-child(6) {
	      transform: rotate(-45deg);
	      transform-origin: 80% 44%;
	    }
	  }
	}
.facets__price {
	  display: flex;
	  width: fit-content;
	  gap: 16px;
	
	  &.edges-square {
	    --radius: 0px;
	  }
	
	  &.edges-round {
	    --radius: 9999px;
	  }
	
	  .field {
	    display: flex;
	    align-items: center;
	    flex: 1;
	    gap: 4px;
	  }
	
	  .field__input {
	    width: 72px;
	  }
	}
/* Functional styling;
	 * These styles are required for noUiSlider to function.
	 * You don't need to change these rules to apply your design.
	 */
	.noUi-target,
	.noUi-target * {
	  -webkit-touch-callout: none;
	  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	  -webkit-user-select: none;
	  -ms-touch-action: none;
	  touch-action: none;
	  -ms-user-select: none;
	  -moz-user-select: none;
	  user-select: none;
	  -moz-box-sizing: border-box;
	  box-sizing: border-box;
	}
	
	.noUi-target {
	  position: relative;
	}
	
	.noUi-base,
	.noUi-connects {
	  width: 100%;
	  height: 100%;
	  position: relative;
	  z-index: 1;
	}
	
	/* Wrapper for all connect elements.
	  */
	.noUi-connects {
	  overflow: hidden;
	  z-index: 0;
	}
	
	.noUi-connect,
	.noUi-origin {
	  will-change: transform;
	  position: absolute;
	  z-index: 1;
	  top: 0;
	  right: 0;
	  -ms-transform-origin: 0 0;
	  -webkit-transform-origin: 0 0;
	  -webkit-transform-style: preserve-3d;
	  transform-origin: 0 0;
	  transform-style: flat;
	}
	
	.noUi-connect {
	  height: 100%;
	  width: 100%;
	}
	
	.noUi-origin {
	  height: 10%;
	  width: 10%;
	}
	
	/* Offset direction
	  */
	.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
	  left: 0;
	  right: auto;
	}
	
	/* Give origins 0 height/width so they don't interfere with clicking the
	  * connect elements.
	  */
	.noUi-vertical .noUi-origin {
	  width: 0;
	}
	.noUi-horizontal .noUi-origin {
	  height: 0;
	}
	.noUi-handle {
	  -webkit-backface-visibility: hidden;
	  backface-visibility: hidden;
	  position: absolute;
	}
	.noUi-touch-area {
	  height: 100%;
	  width: 100%;
	}
	.noUi-state-tap .noUi-connect,
	.noUi-state-tap .noUi-origin {
	  -webkit-transition: transform 0.3s;
	  transition: transform 0.3s;
	}
	.noUi-state-drag * {
	  cursor: inherit !important;
	}
	
	/* Slider size and handle placement;
	  */
	.noUi-horizontal {
	  height: 18px;
	}
	.noUi-horizontal .noUi-handle {
	  width: 34px;
	  height: 28px;
	  right: -17px;
	  top: -6px;
	}
	.noUi-vertical {
	  width: 18px;
	}
	.noUi-vertical .noUi-handle {
	  width: 28px;
	  height: 34px;
	  right: -6px;
	  top: -17px;
	}
	.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
	  left: -17px;
	  right: auto;
	}
	
	/* Styling;
	  * Giving the connect element a border radius causes issues with using transform: scale
	  */
	.noUi-target {
	  background: #fafafa;
	  border-radius: 4px;
	  border: 1px solid #d3d3d3;
	  box-shadow:
	    inset 0 1px 1px #f0f0f0,
	    0 3px 6px -5px #bbb;
	}
	.noUi-connects {
	  border-radius: 3px;
	}
	.noUi-connect {
	  background: #3fb8af;
	}
	/* Handles and cursors;
	  */
	.noUi-draggable {
	  cursor: ew-resize;
	}
	.noUi-vertical .noUi-draggable {
	  cursor: ns-resize;
	}
	.noUi-handle {
	  border: 1px solid #d9d9d9;
	  border-radius: 3px;
	  background: #fff;
	  cursor: default;
	  box-shadow:
	    inset 0 0 1px #fff,
	    inset 0 1px 7px #ebebeb,
	    0 3px 6px -3px #bbb;
	}
	.noUi-active {
	  box-shadow:
	    inset 0 0 1px #fff,
	    inset 0 1px 7px #ddd,
	    0 3px 6px -3px #bbb;
	}
	/* Handle stripes;
	  */
	.noUi-handle:before,
	.noUi-handle:after {
	  content: '';
	  display: block;
	  position: absolute;
	  height: 14px;
	  width: 1px;
	  background: #e8e7e6;
	  left: 14px;
	  top: 6px;
	}
	.noUi-handle:after {
	  left: 17px;
	}
	.noUi-vertical .noUi-handle:before,
	.noUi-vertical .noUi-handle:after {
	  width: 14px;
	  height: 1px;
	  left: 6px;
	  top: 14px;
	}
	.noUi-vertical .noUi-handle:after {
	  top: 17px;
	}
	/* Disabled state;
	  */
	[disabled] .noUi-connect {
	  background: #b8b8b8;
	}
	[disabled].noUi-target,
	[disabled].noUi-handle,
	[disabled] .noUi-handle {
	  cursor: not-allowed;
	}
	/* Base;
	  *
	  */
	.noUi-pips,
	.noUi-pips * {
	  -moz-box-sizing: border-box;
	  box-sizing: border-box;
	}
	.noUi-pips {
	  position: absolute;
	  color: #999;
	}
	/* Values;
	  *
	  */
	.noUi-value {
	  position: absolute;
	  white-space: nowrap;
	  text-align: center;
	}
	.noUi-value-sub {
	  color: #ccc;
	  font-size: 10px;
	}
	/* Markings;
	  *
	  */
	.noUi-marker {
	  position: absolute;
	  background: #ccc;
	}
	.noUi-marker-sub {
	  background: #aaa;
	}
	.noUi-marker-large {
	  background: #aaa;
	}
	/* Horizontal layout;
	  *
	  */
	.noUi-pips-horizontal {
	  padding: 10px 0;
	  height: 80px;
	  top: 100%;
	  left: 0;
	  width: 100%;
	}
	.noUi-value-horizontal {
	  -webkit-transform: translate(-50%, 50%);
	  transform: translate(-50%, 50%);
	}
	.noUi-rtl .noUi-value-horizontal {
	  -webkit-transform: translate(50%, 50%);
	  transform: translate(50%, 50%);
	}
	.noUi-marker-horizontal.noUi-marker {
	  margin-left: -1px;
	  width: 2px;
	  height: 5px;
	}
	.noUi-marker-horizontal.noUi-marker-sub {
	  height: 10px;
	}
	.noUi-marker-horizontal.noUi-marker-large {
	  height: 15px;
	}
	/* Vertical layout;
	  *
	  */
	.noUi-pips-vertical {
	  padding: 0 10px;
	  height: 100%;
	  top: 0;
	  left: 100%;
	}
	.noUi-value-vertical {
	  -webkit-transform: translate(0, -50%);
	  transform: translate(0, -50%);
	  padding-left: 25px;
	}
	.noUi-rtl .noUi-value-vertical {
	  -webkit-transform: translate(0, 50%);
	  transform: translate(0, 50%);
	}
	.noUi-marker-vertical.noUi-marker {
	  width: 5px;
	  height: 2px;
	  margin-top: -1px;
	}
	.noUi-marker-vertical.noUi-marker-sub {
	  width: 10px;
	}
	.noUi-marker-vertical.noUi-marker-large {
	  width: 15px;
	}
	.noUi-tooltip {
	  display: block;
	  position: absolute;
	  border: 1px solid #d9d9d9;
	  border-radius: 3px;
	  background: #fff;
	  color: #000;
	  padding: 5px;
	  text-align: center;
	  white-space: nowrap;
	}
	.noUi-horizontal .noUi-tooltip {
	  -webkit-transform: translate(-50%, 0);
	  transform: translate(-50%, 0);
	  left: 50%;
	  bottom: 120%;
	}
	.noUi-vertical .noUi-tooltip {
	  -webkit-transform: translate(0, -50%);
	  transform: translate(0, -50%);
	  top: 50%;
	  right: 120%;
	}
	.noUi-horizontal .noUi-origin > .noUi-tooltip {
	  -webkit-transform: translate(50%, 0);
	  transform: translate(50%, 0);
	  left: auto;
	  bottom: 10px;
	}
	.noUi-vertical .noUi-origin > .noUi-tooltip {
	  -webkit-transform: translate(0, -18px);
	  transform: translate(0, -18px);
	  top: auto;
	  right: 28px;
	}
  
	.price-range__slider-wrapper {
	  padding: 0 8px;
	  margin-bottom: 8px;
	
	  @media only screen and (max-width: 768px) {
	    padding: 0 10px;
	  }
	}
	
	.price-range__input {
	  display: none;
	}
	
	.price-range__display-wrapper {
	  display: flex;
	  flex: 1 1 auto;
	  justify-content: space-between;
	  padding: 0;
	  margin-bottom: 8px;
	  width: 100%;
	
	  @media only screen and (max-width: 768px) {
	    padding: 0;
	  }
	}
	
	.noUi-horizontal .noUi-handle {
	  border: 0;
	  border-radius: 50%;
	  background: var(--root-color-primary);
	  box-shadow: 0 0 1px 2px rgb(255 255 255);
	  width: 12px;
	  height: 12px;
	  cursor: pointer;
	  right: -6px;
	  top: -3px;
	
	  &:hover,
	  &:focus {
	    width: 14px;
	    height: 14px;
	    right: -7px;
	    top: -4px;
	  }
	
	  &:before,
	  &:after {
	    content: none;
	  }
	}
	
	.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
	  left: -6px;
	  right: auto;
	
	  &:hover,
	  &:focus {
	    width: 14px;
	    height: 14px;
	    left: -7px;
	    top: -4px;
	    right: auto;
	  }
	}
	
	.noUi-target {
	  background: #f4f4f4;
	  border: 0;
	  box-shadow: none;
	}
	
	.noUi-connect {
	  background: var(--root-color-primary);
	}
	
	.noUi-horizontal {
	  height: 6px;
	}
.collection-filter__sort {
	  display: block;
	  
	  @media only screen and (max-width: 768px) {
	    & select {
	      margin-left: -8px;
	    }
	  }
	
	  @media only screen and (min-width: 769px) {
	    padding-right: 15px;
	    margin-right: 15px;
	    border-right: 1px solid;
	    border-right-color: color-mix(in srgb, var(--color-primary) var(--shade-20), var(--color-secondary));
	  }
	}
.template-product {
    .grid-product--prefix {
      margin-top: 16px;
      margin-bottom: 16px;
    }
  }

  .product-grid-item {
    width: 100%;
    /*required to prevent double grid border styles*/
    background-color: var(--root-color-secondary);
    container: product-grid-item / inline-size;
  }

  .color-swatch__more {
    line-height: 25px;
    margin-left: 5px;
    font-weight: var(--element-text-font-weight--heading);
  }

  .product-tile-layout--inline {
    .grid-item__link {
      display: flex;
      gap: 32px;
      padding: 16px 16px 0 16px;

      @media only screen and (min-width: 769px) {
        padding: 20px 20px 0 20px;
      }
    }

    .grid-product__image-wrap {
      width: 100%;
      margin: calc(var(--product-tile-margin) / 2) calc(var(--product-tile-margin) / 2) 0;
    }

    .grid-item__meta {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex: 0 0 35%;
      margin: 0;

      @media only screen and (min-width: 769px) {
        [data-view='small'] & {
          justify-content: flex-start;
          margin-top: 20px;
        }
      }
    }

    .grid-item__meta-main {
      display: flex;
      flex-direction: column;
      justify-content: center;

      .grid-product__colors {
        margin-top: 5px;
      }
    }
  }

  .grid-item__link {
    position: relative;
  }

  .grid-item__overlay-link {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 2;
  }

  .grid-item__link:has(:focus-visible)::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 3px var(--color-focus, #1a73e8);
    pointer-events: none;
    z-index: 4;
  }

  .grid-item__swatches {
    position: relative;
    z-index: 2;
  }

  /*Product grid variations*/
  [data-grid-style*='gridlines'] {
    & .product-grid {
      margin-left: 0;
      margin-right: 0;
    }

    & .grid-product {
      position: relative;
      padding: 0;
      margin: 0;

      &:after {
        pointer-events: none;
        box-shadow: 0 0 0 var(--grid-thickness)
          color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
      }
    }
  }

/*Small gridline variations*/
  @media only screen and (max-width: 768px) {
    [data-grid-style*='gridlines'] {
      & .product-grid {
        margin-left: calc(var(--page-width-padding) * -1);
        margin-right: calc(var(--page-width-padding) * -1);
        padding: var(--grid-thickness) calc(var(--page-width-padding) + var(--grid-thickness));
      }

      /*Make flush on mobile*/
      & .collection-grid {
        padding: 0;
      }

      /*Prevent overflow on product lists - but allow vertical overflow for buttons*/
      [data-section-id*='featured-collection'],
      .index-section--sub-product {
        overflow-x: hidden;
        overflow-y: visible;
      }
    }
  }

  [data-grid-style*='grey'] .grid-product,
  [data-grid-style*='white'] .grid-product {
    position: relative;

    &:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: calc(var(--product-grid-padding) / 2);
      right: calc(var(--product-grid-padding) / 2);
      pointer-events: none;
    }
  }

  [data-grid-style*='grey'] {
    & .grid-product:after {
      background-color: var(--root-color-primary);
      opacity: 0.027;
    }

    & .grid-product.grid-product-image-breathing-room--false {
      padding-left: calc(var(--product-grid-margin) / 2);
      padding-right: calc(var(--product-grid-margin) / 2);
    }
  }

  [data-grid-style*='white'] {
    & .grid-item__content {
      background-color: #fff;
    }

    & .grid-product:after {
      background-color: #fff;
      z-index: -1;
    }

    & .grid-product.grid-product-image-breathing-room--false {
      padding-left: calc(var(--product-grid-margin) / 2);
      padding-right: calc(var(--product-grid-margin) / 2);
    }
  }

  [data-grid-style='grey-round'] .grid-product:after {
    border-radius: var(--product-radius);
  }

  [data-grid-style='white-round'] {
    & .product-grid-item {
      border-radius: var(--product-radius);
    }

    & .grid-item__content {
      border-radius: var(--product-radius);
    }

    & .grid-product:after {
      border-radius: var(--product-radius);
    }
  }

  /*Part 1 of product card is just image*/
  .grid-product__image-wrap {
    position: relative;
    margin: var(--product-tile-margin) var(--product-tile-margin) 0;

    [data-view='list'] & {
      margin-bottom: var(--product-tile-margin);
    }
  }

  /*Remove margin when simple grid and not in list mode*/
  [dir='ltr'] [data-grid-style='simple'] .new-grid:not([data-view='list']) {
    & .grid-item__meta {
      margin-left: 0;
    }
  }
  [dir='rtl'] [data-grid-style='simple'] .new-grid:not([data-view='list']) {
    & .grid-item__meta {
      margin-right: 0;
    }
  }

  /* Product list view (full width) */
  [data-view='list'] {
    & .grid-item__link {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
    }

    & .grid-product__image-wrap {
      flex: 1 1 45%;
      max-width: 200px;
      margin: calc(var(--product-tile-margin) / 4);
      margin-right: 0;
    }

    & .grid-item__meta {
      flex: 1 1 55%;
      padding-right: 20px;
    }

    @media only screen and (min-width: 769px) {
      & .grid-item__meta {
        display: flex;
        justify-content: space-between;
        padding-right: 0;
      }

      & .grid-product__title {
        font-size: calc(var(--element-text-font-size--body-md) + 3px);
      }
    }
  }

  /* Prevent long words from breaking out of available space */
  .grid-product__title {
    word-break: break-word;
    hyphens: auto;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .grid-product__image {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }

  .grid-product__price {
    --color-primary: currentColor;
  }

  .grid-product__tags {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
  }

  .grid-product__add-to-cart {
    margin: 0 24px 24px;
    flex: 0 0 auto;
  }

  /*Quick add form*/
  .quick-add-modal {
    & .modal__centered-content {
      min-width: 70vw;
      min-height: 350px;
      max-width: 100%;

      @media only screen and (min-width: 769px) {
        min-width: 500px;
      }
    }

    & .page-width {
      padding: 0;
      max-width: none;
    }

    /*Hide product layout items*/
    & .product-grid__container > .grid__item {
      display: none;
    }

    /*Except the div with the form*/
    & .product-grid__container .product-grid__content {
      display: block;
      width: 500px;
      max-width: 100%;
    }

    & .product-single__meta {
      padding: 0;
    }

    & .collapsibles-wrapper,
    & .social-sharing {
      display: none;
    }
  }

  .grid-product__secondary-image {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    opacity: 0;
    background-color: var(--root-color-secondary);
    transition: opacity 0s cubic-bezier(0.26, 0.54, 0.32, 1);
    pointer-events: none;

    [data-grid-style*='gridlines'] & {
      top: 0;
      left: 0;
      right: 0;
    }

    & img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .grid-product:hover & {
      transition-duration: 0.2s;
      opacity: 1;
    }
  }

  .grid-product__color-image {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    background-color: var(--root-color-secondary);

    &.is-active {
      opacity: 1;
    }
  }

/*Quick view and quick add elements*/
  .grid-product__actions {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 10;

    & > button,
    .quick-add-btn,
    .quick-product__btn {
      display: block;
      margin-bottom: 5px;
    }

    @media only screen and (max-width: 768px) {
      [data-grid-style*='gridlines'] & {
        top: -8px;
        right: -8px;
      }
    }
  }

/* Allow + button to show outside - target all possible clipping parents */
.grid-item,
.grid-product,
.product-grid-item,
.grid-item__content,
.grid-item__link,
.grid-product__image-wrap {
  overflow: visible !important;
}

/* Force overflow visible for gridlines too */
[data-grid-style*='gridlines'] {
  .grid-item,
  .grid-product,
  .product-grid-item,
  .grid-item__content,
  .grid-item__link,
  .grid-product__image-wrap {
    overflow: visible !important;
  }
}
  /*Visual button lives inside actual button element so
	we can create larger tap areas with smaller visuals*/
  @media only screen and (max-width: 768px) {
    .quick-add-btn {
      [data-grid-style*='gridlines'] & {
        & .btn {
          padding: 6px;
          margin: 0 0 12px 12px;
          /* override btn--circle */
          border-radius: 0 0 0 10px;
        }
      }

      /*Make sure button stays round*/
      & .btn--circle {
        line-height: 0;
      }

      & .element-icon {
        width: 12px;
        height: 12px;
      }
    }
  }

  /*Quick actions appear on hover on larger screens*/
  @media only screen and (min-width: 769px) {
    .grid-product__actions {
      opacity: 0;
      transform: translateY(5px);
      transition: opacity 0.25s ease, transform 0.25s ease-out;

      .grid-product:hover & {
        opacity: 1;
        transform: translateY(0);
      }

      & > button,
      .quick-add-btn,
      .quick-product__btn {
        transition: transform 0.1s ease-out;

        &:hover {
          transform: scale(1.15);
        }
      }

      .grid-product:focus-within & {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.25s ease, transform 0.25s ease-out;
      }
    }
  }

  @container product-grid-item (max-width: 235px) {
    .at-add-to-cart__content {
      display: flex;
    }
  }
:root {
  --overlay-drawer-size: 480px;
  --overlay-drawer-gutter: var(--gap-size-none); /* better name? */
  --overlay-drawer-label-margin-bottom: var(--size-4);

  --overlay-drawer-padding-inline: var(--size-4);
  --overlay-drawer-padding-inline--xs: initial;
  --overlay-drawer-padding-inline--sm: initial;
  --overlay-drawer-padding-inline--md: initial;
  --overlay-drawer-padding-inline--lg: initial;
  --overlay-drawer-padding-inline--xl: initial;

  --overlay-drawer-padding-block: var(--size-8);
  --overlay-drawer-padding-block--xs: initial;
  --overlay-drawer-padding-block--sm: initial;
  --overlay-drawer-padding-block--md: initial;
  --overlay-drawer-padding-block--lg: initial;
  --overlay-drawer-padding-block--xl: initial;

  --overlay-drawer-background: initial;
  --overlay-drawer-overlay-color: rgba(0, 0, 0, 0.5);

  --overlay-drawer-z-index: 9999;
  --overlay-drawer-transition-duration: 0.3s;
  --overlay-drawer-transition-timing-function: ease-in-out;
}

/* Scroll lock when drawer is open */
body:has(.overlay-drawer[open='true']) {
  overflow: hidden;
}

.overlay-drawer {
  --_width: calc(100% - var(--overlay-drawer-gutter));
  --_max-width: var(--overlay-drawer-size);

  --_padding-inline--xs: var(--overlay-drawer-padding-inline--xs, var(--overlay-drawer-padding-inline));
  --_padding-inline--sm: var(--overlay-drawer-padding-inline--sm, var(--_padding-inline--xs));
  --_padding-inline--md: var(--overlay-drawer-padding-inline--md, var(--_padding-inline--sm));
  --_padding-inline--lg: var(--overlay-drawer-padding-inline--lg, var(--_padding-inline--md));
  --_padding-inline--xl: var(--overlay-drawer-padding-inline--xl, var(--_padding-inline--lg));
  --_padding-inline: var(--_padding-inline--xs);

  --_padding-block--xs: var(--overlay-drawer-padding-block--xs, var(--overlay-drawer-padding-block));
  --_padding-block--sm: var(--overlay-drawer-padding-block--sm, var(--_padding-block--xs));
  --_padding-block--md: var(--overlay-drawer-padding-block--md, var(--_padding-block--sm));
  --_padding-block--lg: var(--overlay-drawer-padding-block--lg, var(--_padding-block--md));
  --_padding-block--xl: var(--overlay-drawer-padding-block--xl, var(--_padding-block--lg));
  --_padding-block: var(--_padding-block--xs);

  --_background: var(--overlay-drawer-background, var(--color-secondary, #fff));

  display: block;
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  transition-property: background-color;
  transition-duration: var(--overlay-drawer-transition-duration);
  transition-timing-function: var(--overlay-drawer-transition-timing-function);
  cursor: pointer;
  z-index: var(--overlay-drawer-z-index);

  &[open='false'] {
    pointer-events: none;
  }

  &[open='true'] {
    background-color: var(--overlay-drawer-overlay-color);
  }
}

.overlay-drawer__inner {
  background: var(--_background);
  cursor: initial;
  position: absolute;
  width: var(--_width);
  max-width: var(--_max-width);
  top: 0;
  transition-property: transform;
  transition-duration: var(--overlay-drawer-transition-duration);
  transition-timing-function: var(--overlay-drawer-transition-timing-function);
  height: 100%;
  overflow-y: auto;
  padding-inline: var(--_padding-inline);
  padding-block: var(--_padding-block);

  .overlay-drawer--start & {
    left: max(calc(-1 * var(--_width)), calc(-1 * var(--_max-width)));
  }

  .overlay-drawer--start[open='true'] & {
    transform: translateX(100%);
  }

  .overlay-drawer--end & {
    right: max(calc(-1 * var(--_width)), calc(-1 * var(--_max-width)));
  }

  .overlay-drawer--end[open='true'] & {
    transform: translateX(-100%);
  }
}

.overlay-drawer__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-block-end: var(--overlay-drawer-label-margin-bottom);

  &:has(.overlay-drawer__label) {
    justify-content: space-between;
  }
}

.overlay-drawer__close-button {
  line-height: 0;
}
overlay-lightbox {
    display: contents;
  }

  .overlay-lightbox__trigger {
    display: contents;
    cursor: pointer;
  }

  .overlay-lightbox__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
  }

  .overlay-lightbox__overlay--open {
    opacity: 1;
    visibility: visible;
  }

  .overlay-lightbox__content {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay-lightbox__content img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .overlay-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .overlay-lightbox__nav--prev {
    left: 1rem;
  }

  .overlay-lightbox__nav--next {
    right: 1rem;
  }

  /* Hide navigation buttons when there's only one item in the group */
  .overlay-lightbox__overlay--single-item .overlay-lightbox__nav {
    display: none;
  }

  .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
/* Newsletter reminder */
	
	newsletter-reminder {
	  position: fixed;
	  left: 20px;
	  bottom: 20px;
	  transition: ease-in-out 0.3s opacity;
	  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
	  max-width: 240px;
	  z-index: 10;
	  @media only screen and (max-width: 768px) {
	    max-width: calc(100% - 40px);
	  }
	
	  &[data-enabled='false'] {
	    opacity: 0;
	    visibility: hidden;
	    pointer-events: none;
	  }
	
	  &[class*='color-scheme-']:not(.color-scheme-none) {
	    position: fixed;
	  }
	
	  & .color-scheme-none {
	    color: var(--color-button-primary-text);
	    background-color: var(--color-button-primary);
	  }
	
	  & .newsletter-reminder__close {
	    position: absolute;
	    top: 0;
	    right: 0;
	    transform: translate(25%, -25%);
	    z-index: 2;
	  }
	}
	
	.newsletter-reminder__message.heading-md {
	  cursor: pointer;
	  padding: var(--newsletter-reminder-padding);
	  margin: 0;
	}
tool-tip {
	  display: none;
	
	  &.quick-shop-modal {
	    & .page-content--product {
	      max-width: 100%;
	      width: 1500px;
	    }
	  }
	
	  /*Ajax page adjustments*/
	  & .page-content,
	  & .page-width {
	    padding: 0;
	  }
	}
	
	tool-tip[data-tool-tip-open='true'] {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  z-index: 10001;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	
	  &:before {
	    content: '';
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: #e0e0e0;
	    background-color: color-mix(in srgb, var(--color-secondary) var(--shade-60), transparent);
	    animation: overlay-on 0.3s forwards;
	    cursor: pointer;
	  }
	}
	
	.tool-tip__inner {
	  animation: modal-close 0.3s forwards;
	  opacity: 0;
	  color: var(--root-color-primary);
	
	  tool-tip[data-tool-tip-open='true'] & {
	    animation: modal-open 0.3s forwards;
	    display: block;
	    position: fixed;
	    background: var(--root-color-secondary);
	    box-shadow: 0 10px 20px #00000017;
	    padding: 30px;
	    min-width: 250px;
	    min-height: 250px;
	
	    @media only screen and (max-width: 768px) {
	      width: calc(100% - 20px);
	      max-width: 500px;
	    }
	  }
	
	  @media only screen and (min-width: 769px) {
	    margin: 40px;
	    max-width: calc(100% - 80px);
	    max-height: 90vh;
	    padding: calc(var(--gutter) * 1.5);
	
	    .quick-shop-modal & {
	      max-width: 1200px;
	      width: calc(100% - 80px);
	    }
	  }
	}
	
	.tool-tip__content {
	  max-height: 80vh;
	  overflow: auto;
	
	  .quick-shop-modal &,
	  .quick-add-modal & {
	    padding: 1rem;
	  }
	
	  [data-tool-tip='store-availability'] & {
	    padding: 0;
	  }
	
	  @media only screen and (max-width: 768px) {
	    font-size: 0.85em;
	  }
	}
	
	.tool-tip__close {
	  --element-button-radius: var(--radius-full);
	
	  position: absolute;
	  top: 0;
	  right: 0;
	  transform: translate(25%, -25%);
	  z-index: 2;
	}
.tool-tip-trigger {
	  background: none;
	  border: 0;
	  cursor: pointer;
	}

	.tool-tip-trigger__title {
	  display: inline-block;
    padding: 0;
	}

	.tool-tip-trigger__title:hover,
	.tool-tip-trigger__title:focus {
	  text-decoration: underline;
	  text-underline-offset: 2px;
	}

	.tool-tip-trigger__content {
	  display: none !important; /* Ensure our content is always hidden */
	}

	/* Size chart trigger */

	.size-chart__standalone {
	  margin: var(--size-chart-margin);

	  & svg {
	    margin-left: var(--size-chart-icon-margin);
	  }
	}
.at-add-to-cart {
	  position: relative;

	  &.is-added {
	    pointer-events: none;
	  }

	  .element-input {
	    /* Override input styles based on the state of the input */
	    &:not(:focus) {
	      --input-drop-shadow: none;
	    }
	  }
	}

	.at-add-to-cart__content {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  display: none;

	  .at-add-to-cart__button[aria-expanded='true'] + & {
	    display: flex;
	  }

	  .element-quantity-selector {
	    width: 100%;
	    .is-added & {
	      display: none;
	    }
	  }

	  .element-quantity-selector__input {
	    width: calc(100% - 2 * var(--element-input-padding-inline));
	  }
	}

	.at-add-to-cart__message {
	  display: none;
	  position: absolute;
	  top: 0;
	  left: 0;
	  align-items: center;
	  justify-content: center;
	  gap: 8px;
	  width: 100%;
	  height: 100%;
	  border-radius: var(--element-button-radius);
	  cursor: default;
	  background-color: var(--color-button-primary, var(--color-primary));
	  color: var(--color-button-primary-text, var(--color-secondary));
	  z-index: 2;

	  .is-added & {
	    display: flex;
	  }
	}
.product__photos--beside {
	  display: flex;
	  width: 100%;
	}
	
	.product__photos {
	  direction: ltr;
	  margin-top: 10px;
	
	  & a {
	    display: block;
	    max-width: 100%;
	  }
	
	  & img {
	    display: block;
	    margin: 0 auto;
	    max-width: 100%;
	    width: 100%;
	    opacity: 0;
	  }
	
	  .page-content--full & {
	    @media only screen and (max-width: 768px) {
	      margin-top: 0;
	    }
	  }
	}
	
	.product__main-photos {
	  position: relative;
	  flex: 1 1 auto;
	
	  & img {
	    display: none;
	  }
	
	  & .flickity-page-dots {
	    display: none;
	  }
	
	  & .product-slideshow {
	    border: 1px solid;
	    border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	
	    @media only screen and (max-width: 768px) {
	      border: 0;
	    }
	  }
	
	  @media only screen and (max-width: 768px) {
	    margin-bottom: 30px;
	    margin-left: calc(var(--page-width-gutter-small) * -1);
	    margin-right: calc(var(--page-width-gutter-small) * -1);
	    border: 0;
	
	    /* if no slideshow exists don't create the margin for slideshow dots */
	    [data-has-slideshow='false'] & {
	      margin-bottom: 0;
	    }
	
	    & .flickity-page-dots {
	      display: block;
	    }
	  }
	}
	
	.product__thumbs {
	  position: relative;
	}
	
	.product__thumbs--below {
	  margin-top: calc(var(--grid-gutter-small) / 2);
	
	  @media only screen and (min-width: 769px) {
	    margin-top: calc(var(--gutter) / 2);
	  }
	}
	
	.product__thumbs--beside {
	  flex: 0 0 60px;
	  max-width: 60px;
	  margin-left: calc(var(--grid-gutter-small) / 2);
	
	  @media only screen and (min-width: 769px) {
	    flex: 0 0 80px;
	    max-width: 80px;
	    margin-left: calc(var(--gutter) / 2);
	
	    &.product__thumbs-placement--left {
	      order: -1;
	      margin-left: 0;
	      margin-right: calc(var(--gutter) / 2);
	    }
	  }
	}
	
	.product__thumbs--scroller {
	  scrollbar-width: none;
	  scroll-behavior: smooth;
	  -ms-overflow-style: -ms-autohiding-scrollbar;
	
	  &::-webkit-scrollbar {
	    height: 0;
	    width: 0;
	  }
	
	  .product__thumbs--below & {
	    overflow-x: scroll;
	    white-space: nowrap;
	    text-align: center;
	  }
	
	  .product__thumbs--beside & {
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    width: 100%;
	    overflow-y: scroll;
	  }
	}
	
	.product__thumb-item {
	  border: 2px solid transparent;
	
	  & a:focus,
	  & a.is-active {
	    outline: none;
	
	    &:before {
	      content: '';
	      display: block;
	      position: absolute;
	      top: 0;
	      left: 0;
	      right: 0;
	      bottom: 0;
	      box-shadow: inset 0 0 0 2px var(--root-color-primary);
	      z-index: 1;
	    }
	  }
	
	  /*Don't pre-focus thumbnails*/
	  & a:active:before {
	    content: none;
	  }
	
	  .product__thumbs--beside & {
	    margin-bottom: calc(var(--grid-gutter-small) / 2);
	
	    @media only screen and (min-width: 769px) {
	      margin-bottom: calc(var(--gutter) / 2);
	    }
	
	    &:last-child {
	      margin-bottom: 0;
	    }
	  }
	
	  .product__thumbs--below & {
	    display: inline-block;
	    vertical-align: middle;
	    margin-right: calc(var(--grid-gutter-small) / 2);
	    max-width: 80px;
	
	    @media only screen and (min-width: 769px) {
	      margin-right: calc(var(--gutter) / 2);
	    }
	
	    &:last-child {
	      margin-right: 0;
	    }
	  }
	}
	
	.product__thumb .image-wrap img {
	  border: 1px solid;
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  position: static;
	}
	
	/* When image sets are enabled, hide slides that aren't in the slider */
	.product-slideshow.flickity-enabled {
	  & .product-main-slide {
	    display: none;
	  }
	
	  & .flickity-viewport .product-main-slide {
	    display: block;
	  }
	}
	
	/*Thumb slider arrows*/
	.product__thumb-arrow {
	  position: absolute;
	  background: var(--root-color-secondary);
	  color: var(--root-color-primary);
	  transform: none;
	  border-radius: 0;
	  padding: 0;
	  z-index: 2;
	
	  & .element-icon {
	    display: inline-block;
	    width: 6px;
	    height: 10px;
	  }
	}
	
	.product__thumbs[data-position='below'] .product__thumb-arrow {
	  top: 0;
	  height: 100%;
	  width: 25px;
	
	  &.product__thumb-arrow--prev {
	    left: 0;
	    text-align: left;
	  }
	
	  &.product__thumb-arrow--next {
	    right: 0;
	    text-align: right;
	  }
	}
	
	.product__thumbs[data-position='beside'] .product__thumb-arrow {
	  width: 100%;
	
	  & .element-icon {
	    margin: 0 auto;
	    transform: rotate(90deg);
	  }
	
	  &.product__thumb-arrow--prev {
	    top: 0;
	    left: auto;
	    padding-bottom: 10px;
	  }
	
	  &.product__thumb-arrow--next {
	    top: auto;
	    bottom: 0;
	    right: auto;
	    padding-top: 10px;
	  }
	}
	
	.product__thumb {
	  position: relative;
	  display: block;
	  cursor: pointer;
	}
	
	.product__thumb-icon {
	  position: absolute;
	  top: 5px;
	  right: 5px;
	  background-color: var(--root-color-primary);
	  border-radius: 100px;
	  padding: 6px;
	  z-index: 1;
	  opacity: 1;
	  font-size: 0;
	
	  & .element-icon {
	    fill: var(--root-color-secondary);
	    width: 10px;
	    height: 10px;
	
	    @media only screen and (min-width: 769px) {
	      width: 13px;
	      height: 13px;
	    }
	  }
	}
	
	/*Model viewer controls*/
	.shopify-model-viewer-ui {
	  & .shopify-model-viewer-ui__controls-area {
	    opacity: 1; /*always show controls*/
	    background: var(--root-color-secondary);
	    border-color: color-mix(in srgb, var(--root-color-primary) 5%, transparent);
	    border-radius: 50px;
	  }
	
	  & .shopify-model-viewer-ui__button {
	    color: var(--root-color-primary);
	  }
	
	  & .shopify-model-viewer-ui__button--control {
	    &:hover {
	      color: var(--root-color-primary);
	    }
	
	    &:active,
	    &.focus-visible:focus {
	      color: var(--root-color-primary);
	      background-color: color-mix(in srgb, var(--root-color-primary) 5%, transparent);
	    }
	
	    &:not(:last-child):after {
	      border-color: color-mix(in srgb, var(--root-color-primary) 5%, transparent);
	    }
	  }
	
	  & .shopify-model-viewer-ui__button--poster {
	    background-color: var(--root-color-primary);
	    color: var(--root-color-secondary);
	    border-radius: 100%;
	    border: 1px solid;
	    border-color: color-mix(in srgb, var(--root-color-secondary) 5%, transparent);
	
	    &:hover,
	    &:focus {
	      color: var(--root-color-secondary);
	    }
	  }
	}
	
	/*View in space button*/
	.product-single__view-in-space {
	  display: block;
	  color: var(--root-color-primary);
	  background-color: color-mix(in srgb, var(--root-color-primary) 8%, transparent);
	  width: 80%;
	  width: calc(80% - 4px); /*4px = right margin on product-image-main*/
	  margin: 40px 10% 10px;
	  padding: 5px 10px 10px;
	
	  &[data-shopify-xr-hidden] {
	    display: none;
	  }
	}
	
	.product-single__view-in-space-text {
	  font-size: calc(var(--element-text-font-size--body-md) * 0.85);
	  display: inline-block;
	  vertical-align: middle;
	  margin-left: 5px;
	}
	
	/*Model viewer container*/
	.shopify-model-viewer-ui,
	.shopify-model-viewer-ui model-viewer {
	  display: block;
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	}
	
	.shopify-model-viewer-ui__button[hidden] {
	  display: none;
	}
.product-image-main {
	  position: relative;
	
	  &[data-size] img {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    object-fit: contain;
	  }
	
	  &[data-size='square'] .image-wrap {
	    padding-bottom: 100% !important;
	  }
	
	  &[data-size='landscape'] .image-wrap {
	    padding-bottom: 75% !important;
	  }
	
	  &[data-size='portrait'] .image-wrap {
	    padding-bottom: 150% !important;
	  }

    &:has(button.product__photo-zoom:focus-visible) {
      box-shadow: inset 0 0 0 3px var(--color-focus);

      img {
        position: relative;
        z-index: -1;
      }
    }
	}
	
	.product__model-wrapper {
	  model-viewer {
	    width: 100%;
	    height: 100%;
	  }
	}
	
	.product__video-wrapper {
	  /*Put overlay on muted videos because they cannot be interacted with*/
	  &[data-video-style='muted'].loaded:before {
	    content: '';
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    z-index: 1;
	  }
	
	  /*Unless low power mode requires them to be touched to start*/
	  &.video-interactable:before {
	    display: none;
	  }
	
	  /*Make sure states don't overlap*/
	  &.loaded:after {
	    display: none;
	  }
	
	  &.loading iframe {
	    opacity: 0.01; /*sneaky way to avoid talking to an invisible YT iframe*/
	  }
	
	  &.loaded iframe {
	    opacity: 1;
	  }
	}
	
	.product__video-wrapper__grippy {
	  position: absolute;
	  left: 0;
	  width: calc(50% - 50px);
	  top: 32px;
	  bottom: 40px;
	  z-index: 3;
	
	  &:before {
	    position: absolute;
	    display: block;
	    content: '';
	    width: 60%;
	    height: 35%;
	    top: 0;
	    left: 100%;
	  }
	
	  & + & {
	    left: auto;
	    right: 0;
	
	    &:before {
	      bottom: 0;
	      top: auto;
	      right: 100%;
	      left: auto;
	    }
	  }
	}
	
	.product-video-trigger {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	}
	
	/*Zoom button*/
	.product__photo-zoom {
	  position: absolute !important;
	  bottom: 0;
	  right: 0;
	  cursor: zoom-in;
	  border: 0;
	
	  /*Only show active slide's zoom button (mobile)*/
	  @media only screen and (max-width: 768px) {
	    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	    padding: 8px;
	
	    & .element-icon {
	      width: 21px;
	      height: 21px;
	    }
	
	    .product__main-photos & {
	      margin-bottom: 10px;
	      margin-right: 10px;
	    }
	
	    /*Hide zoom button on all slides*/
	    .product-slideshow & {
	      opacity: 0;
	      transition: opacity 0.5s ease-out;
	    }
	
	    .product-slideshow .is-selected & {
	      opacity: 1;
	    }
	  }
	
	  /*Visually hidden, covers full image on desktop*/
	  @media only screen and (min-width: 769px) {
	    opacity: 0;
	    width: 100%;
	    top: 0;
	    left: 0;
	    margin: 0;
	    border-radius: 0;
	
	    & svg,
	    & span {
	      display: none;
	    }
	  }
	}
	
	.product-single__close-media {
	  position: absolute;
	  top: 10px;
	  right: 10px;
	  z-index: 2;
	}
.pswp {
	  display: none;
	  position: absolute;
	  width: 100%;
	  height: 100%;
	  left: 0;
	  top: 0;
	  overflow: hidden;
	  -ms-touch-action: none;
	  touch-action: none;
	  z-index: 15000;
	  -webkit-text-size-adjust: 100%;
	  -webkit-backface-visibility: hidden;
	  outline: none;
	}
	
	.pswp img {
	  max-width: none;
	}
	
	/* style is added when JS option showHideOpacity is set to true */
	.pswp--animate_opacity {
	  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
	  opacity: 0.001;
	  will-change: opacity;
	  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	}
	
	.pswp--open {
	  display: block;
	}
	
	.pswp--zoom-allowed .pswp__img {
	  cursor: zoom-in;
	}
	
	.pswp--zoomed-in .pswp__img {
	  cursor: grab;
	}
	
	.pswp--dragging .pswp__img {
	  cursor: grabbing;
	}
	
	/*
	  Background is added as a separate element.
	  As animating opacity is much faster than animating rgba() background-color.
	*/
	.pswp__bg {
	  position: absolute;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  background: var(--root-color-secondary);
	  opacity: 0;
	  transform: translateZ(0);
	  -webkit-backface-visibility: hidden;
	  will-change: opacity;
	}
	
	.pswp__scroll-wrap {
	  position: absolute;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  overflow: hidden;
	}
	
	.pswp__container,
	.pswp__zoom-wrap {
	  -ms-touch-action: none;
	  touch-action: none;
	  position: absolute;
	  left: 0;
	  right: 0;
	  top: 0;
	  bottom: 0;
	}
	
	/* Prevent selection and tap highlights */
	.pswp__container,
	.pswp__img {
	  user-select: none;
	  -webkit-tap-highlight-color: transparent;
	  -webkit-touch-callout: none;
	}
	
	.pswp__zoom-wrap {
	  position: absolute;
	  width: 100%;
	  transform-origin: left top;
	  /* for open/close transition */
	  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	}
	
	.pswp__bg {
	  will-change: opacity;
	  /* for open/close transition */
	  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	}
	
	.pswp--animated-in .pswp__bg,
	.pswp--animated-in .pswp__zoom-wrap {
	  transition: none;
	}
	
	.pswp__container,
	.pswp__zoom-wrap {
	  -webkit-backface-visibility: hidden;
	}
	
	.pswp__item {
	  position: absolute;
	  left: 0;
	  right: 0;
	  top: 0;
	  bottom: 0;
	  overflow: hidden;
	}
	
	.pswp__img {
	  position: absolute;
	  width: auto;
	  height: auto;
	  top: 0;
	  left: 0;
	}
	
	/*
	  stretched thumbnail or div placeholder element (see below)
	  style is added to avoid flickering in webkit/blink when layers overlap
	*/
	.pswp__img--placeholder {
	  -webkit-backface-visibility: hidden;
	}
	
	.pswp--ie .pswp__img {
	  width: 100% !important;
	  height: auto !important;
	  left: 0;
	  top: 0;
	}
	
	/*
	  Error message appears when image is not loaded
	  (JS option errorMsg controls markup)
	*/
	.pswp__error-msg {
	  position: absolute;
	  left: 0;
	  top: 50%;
	  width: 100%;
	  text-align: center;
	  line-height: 16px;
	  margin-top: -8px;
	  color: #ccc;
	}
	
	.pswp__error-msg a {
	  color: #ccc;
	  text-decoration: underline;
	}
	
	.pswp__button {
	  position: relative;
	
	  /*Because JS listens to click on button element itself*/
	  &:after {
	    content: '';
	    display: block;
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	  }
	
	  /*Ignore clicks on svgs inside button*/
	  & svg {
	    pointer-events: none;
	  }
	}
	
	.pswp__button--arrow--left .element-icon,
	.pswp__button--arrow--right .element-icon {
	  width: 13px;
	  height: 13px;
	  margin: 8px;
	}
	
	.pswp__button[disabled] {
	  opacity: 0;
	  pointer-events: none;
	}
	
	.pswp__ui {
	  position: absolute;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  bottom: var(--gutter);
	  left: 0;
	  right: 0;
	  transform: translateY(0);
	  transition: transform 0.25s 0.6s;
	
	  & .btn {
	    margin: 15px;
	    border: 0;
	    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	  }
	}
	
	.pswp__ui--hidden {
	  transform: translateY(150%);
	  transition: transform 0.25s;
	}
	
	/* Fixes for iOS15 */
	/* See https://gist.github.com/dimsemenov/0b8c255c0d87f2989e8ab876073534ea */
	
	html.pswp-open-in-ios,
	html.pswp-open-in-ios body {
	  background: #444;
	  height: var(--window-inner-height);
	  overflow: hidden;
	  box-sizing: border-box;
	}
	
	/* Hide page content via CSS when PhotoSwipe opens */
	.pswp-open-in-ios body > * {
	  display: none;
	}
	.pswp-open-in-ios body .pswp.pswp--open {
	  display: block;
	}
product-hot-reload {
    contain: layout style paint;
  }

  .product-hot-reload--loading {
    opacity: 0.6;
    animation: pulse 1.5s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { 
      opacity: 1;
    }
    50% { 
      opacity: 0.6;
    }
  }

  /* View Transitions API support */
  @supports (view-transition-name: none) {
    product-hot-reload {
      view-transition-name: product-content;
    }
  }
.product-tags {
	  --gap: 6px;
	  display: flex;
	  flex-wrap: wrap;
	  gap: var(--gap);
	}
	
	.product-grid-item .product-tags {
	  padding: 0 16px 16px;
	
	  @media only screen and (max-width: 959px) {
	    padding: 0 15px 15px;
	  }
	}
	
	.product-tag {
	  .btn {
	    border: none;
	    display: inline-flex;
	    gap: 4px;
	    align-items: center;
	    justify-content: space-between;
	    white-space: nowrap;
	    min-width: 0;
	  }
	
	  svg {
	    flex-shrink: 0;
	    width: 16px;
	    height: 16px;
	  }
	}
advanced-accordion {
	  display: block;
	  border-bottom: 1px solid color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	
	  &[data-disabled='true'] .accordion__title {
	    cursor: default;
	  }
	}
	
	.advanced-accordion--1-per-row {
	  & .accordion__content-block {
	    width: 100%;
	  }
	}
	
	.advanced-accordion--2-per-row {
	  & .accordion__content-block {
	    width: 50%;
	  }
	}
	
	.advanced-accordion--3-per-row {
	  & .accordion__content-block {
	    width: 33.333%;
	  }
	}
	
	.advanced-accordion--4-per-row {
	  & .accordion__content-block {
	    width: 25%;
	  }
	}
	
	.advanced-accordion--5-per-row {
	  & .accordion__content-block {
	    width: 20%;
	  }
	}
	
	.accordion__content {
	  display: flex;
	  flex-direction: row;
	  flex-wrap: wrap;
	}
	
	.accordion__title {
	  width: 100%;
	  background: transparent;
	  border: 0;
	  padding: 20px 0;
	  text-align: left;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  cursor: pointer;
	
	  & h2 {
	    margin: 0;
	  }
	
	  & svg.element-icon {
	    --element-icon-size: 24px;
	    stroke-width: calc(var(--element-icon-stroke-width) / 1.125);
	    transition: ease-in-out 0.3s transform;
	  }
	
	  details[open] & {
	    & svg {
	      transform: rotate(180deg);
	    }
	  }
	}
	
	.accordion__content-block {
	  padding: 20px;
	
	  @media only screen and (max-width: 768px) {
	    flex: 100% 0 0 !important;
	    padding: 0 15px 20px 15px;
	  }
	
	  &.two-per-row-mobile {
	    @media only screen and (max-width: 768px) {
	      flex: 50% 0 0 !important;
	    }
	  }
	
	  & .content-block__image {
	    margin-bottom: 20px;
	  }
	
	  & img {
	    height: auto;
	  }
	}
	
	a.accordion-link-block__link {
	  display: flex;
	  justify-content: space-between;
	
	  & svg {
	    height: 1rem;
	    margin-left: 10px;
	  }
	}
.custom-content {
	  display: flex;
	  align-items: stretch;
	  flex-wrap: wrap;
	  width: auto;
	  margin-bottom: calc(var(--grid-gutter) * -1);
	  margin-left: calc(var(--grid-gutter) * -1);
	
	  @media only screen and (max-width: 768px) {
	    margin-bottom: calc(var(--grid-gutter-small) * -1);
	    margin-left: calc(var(--grid-gutter-small) * -1);
	  }
	}
	
	.custom__item {
	  flex: 0 0 auto;
	  margin-bottom: var(--grid-gutter);
	  padding-left: var(--grid-gutter);
	  max-width: 100%;
	
	  @media only screen and (max-width: 768px) {
	    flex: 0 0 auto;
	    padding-left: var(--grid-gutter-small);
	    margin-bottom: var(--grid-gutter-small);
	
	    &.small--one-half {
	      flex: 1 0 50%;
	      max-width: 400px;
	      margin-left: auto;
	      margin-right: auto;
	    }
	  }
	
	  & img {
	    display: block;
	  }
	}
	
	.custom__item-inner {
	  position: relative;
	  display: inline-block;
	  text-align: left;
	  max-width: 100%;
	  width: 100%;
	}
	
	.custom__item-inner--video,
	.custom__item-inner--html {
	  display: block;
	}
	
	.custom__item-inner--image {
	  width: 100%;
	}
	
	.custom__item-inner--html img {
	  display: block;
	  margin: 0 auto;
	}
	
	.custom__item-inner--placeholder-image {
	  width: 100%;
	}
	
	.align--top-middle {
	  text-align: center;
	}
	
	.align--top-right {
	  text-align: right;
	}
	
	.align--middle-left {
	  align-self: center;
	}
	
	.align--center {
	  align-self: center;
	  text-align: center;
	}
	
	.align--middle-right {
	  align-self: center;
	  text-align: right;
	}
	
	.align--bottom-left {
	  align-self: flex-end;
	}
	
	.align--bottom-middle {
	  align-self: flex-end;
	  text-align: center;
	}
	
	.align--bottom-right {
	  align-self: flex-end;
	  text-align: right;
	}
/* Age verification popup */
	.age-verification-popup {
	  & .rte {
	    margin-top: 20px;
	    margin-bottom: 20px;
	
	    @media only screen and (min-width: 769px) {
	      margin-bottom: 30px;
	    }
	  }
	
	  & .age-verification-popup__btns-wrapper {
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: center;
	    gap: 10px;
	  }

    & .age-verification-modal-content {
      overflow: hidden;
    }
	}
	
	.age-verification-popup__background-image-wrapper {
	  overflow: hidden;
	  width: 100%;
	  height: 100%;
	  position: absolute;
	}
	
	.age-verification-popup__background-image {
	  object-fit: cover;
	  width: 100%;
	  height: 100%;
	}
	
	.age-verification-popup__content--active {
	  opacity: 1;
	  transition: opacity 1.5s ease-in;
	}
	
	.age-verification-popup__content--inactive,
	.age-verification-popup__content--inactive * {
	  opacity: 0;
	  width: 0;
	  height: 0;
	  position: absolute;
	  visibility: hidden;
	  padding: 0;
	  border: 0;
	  margin: 0;
	  line-height: 0;
	  font-size: 0;
	}
	
	.age-verification-popup__decline-content--inactive,
	.age-verification-popup__decline-content--inactive * {
	  opacity: 0;
	  width: 0;
	  height: 0;
	  position: absolute;
	  visibility: hidden;
	  padding: 0;
	  border: 0;
	  margin: 0;
	  line-height: 0;
	  font-size: 0;
	}
	
	.age-verification-popup__decline-content--active {
	  opacity: 1;
	  transition: opacity 1.5s ease-in;
	}
	
	.age-verification-popup__content-wrapper {
    position: relative;
	  text-align: center;
	  max-width: 520px;
	  margin: 0 auto;
    z-index: 1;
	}
	
	/* Expanse specific styles */
	.age-verification-popup {
	  top: 0;
	  bottom: 0;
	
	  &.age-verification-popup--image-false {
	    position: fixed !important;
	    z-index: 30 !important;
	
	    &.modal:before {
	      background-color: transparent;
	      animation: none;
	    }
	
	    & .modal__inner {
	      box-shadow: none;
	      background-color: transparent;
	    }
	
	    &.color-scheme-none {
	      background-color: var(--root-color-secondary);
	    }
	  }
	}
/*
	 * This is the stylesheet entrypoint for the apps section.
	 * This file and all its inclusions will be processed through postcss
	 */
.blog-layout {
	  display: flex;
	  flex-wrap: nowrap;
	  flex-direction: column;
	}
	
	.blog-layout__main {
	  margin-bottom: 20px;
	}
	
	.blog-layout__sidebar {
	  order: 1;
	}
	
	.blog-layout__main,
	.blog-layout__sidebar {
	  margin-top: 40px;
	}
	
	/* Any section that isn't the main layout or sidebar should be full width */
	.blog-layout > div:not(.blog-layout__main):not(.blog-layout__sidebar) {
	  flex: 1 0 100%;
	}
	
	@media only screen and (min-width: 769px) {
	  .blog-layout {
	    flex-direction: row;
	    flex-wrap: wrap;
	  }
	
	  .blog-layout__main {
	    flex: 1 1 calc(60% - 90px);
	  }
	
	  .blog-layout__sidebar {
	    order: 0;
	    flex: 0 0 calc(40% - 90px);
	    align-self: flex-start;
	
	    padding-left: 0;
	    margin-left: 0;
	    border-left: 0;
	    padding-right: 45px;
	    margin-right: 45px;
	    border-right: 1px solid;
	    border-right-color: var(--colorBorder);
	
	    [dir='rtl'] & {
	      padding-right: 0;
	      margin-right: 0;
	      border-right: 0;
	      padding-left: 45px;
	      margin-left: 45px;
	      border-left: 1px solid;
	      border-left-color: var(--colorBorder);
	    }
	  }
	
	  .blog-layout__main + .blog-layout__sidebar {
	    padding-right: 0;
	    margin-right: 0;
	    border-right: 0;
	    padding-left: 45px;
	    margin-left: 45px;
	    border-left: 1px solid;
	    border-left-color: var(--colorBorder);
	
	    [dir='rtl'] & {
	      padding-left: 0;
	      margin-left: 0;
	      border-left: 0;
	      padding-right: 45px;
	      margin-right: 45px;
	      border-right: 1px solid;
	      border-right-color: var(--colorBorder);
	    }
	  }
	}
	
	.article__comment {
	  margin-bottom: 20px;
	
	  &:last-child {
	    margin-bottom: 0;
	  }
	}
	
	.comment-author {
	  margin-bottom: 0;
	}
	
	.comment-date {
	  font-size: calc(var(--element-text-font-size--body-md) * 0.85);
	  display: block;
	  margin-top: 3px;
	
	  @media only screen and (max-width: 768px) {
	    margin-bottom: calc(var(--gutter) / 2);
	  }
	}
	
	.capitalize-first-letter {
	  display: block;
	
	  &::first-letter {
	    font-size: 55px;
	    margin-right: 6px;
	    margin-top: -20px;
	    font-weight: var(--element-text-font-weight--heading);
	  }
	}
.background-media-text {
	  position: relative;
	  width: 100%;
	  overflow: hidden;
	  background: color-mix(in srgb, var(--color-secondary) var(--shade-12), var(--color-primary));
	}
	
	.background-media-text__inner {
	  position: absolute;
	  z-index: 2;
	  width: 100%;
	  height: 100%;
	}
	
	.background-media-text__aligner {
	  margin: calc(var(--gutter) * 2);
	}
	
	.background-media-text__text {
	  text-align: left;
	  font-size: 1.1em;
	  background: var(--root-color-secondary);
	  padding: var(--gutter);
	  width: 380px;
	  border-radius: var(--roundness);
	  overflow: hidden;
	
	  html[dir='rtl'] & {
	    text-align: right;
	  }
	
	  @media only screen and (max-width: 768px) {
	    text-align: center;
	  }
	}
	
	.background-media-text__text .btn {
	  margin-top: calc(var(--gutter) / 2);
	}
	
	@media only screen and (min-width: 769px) {
	  .background-media-text--right > div {
	    float: right;
	  }
	}
	
	/*Section height*/
	.background-media-text__container {
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	}
	
	@media only screen and (max-width: 768px) {
	  .background-media-text__container {
	    position: relative;
	    height: 240px;
	  }
	
	  .background-media-text__inner {
	    position: relative;
	    bottom: 0;
	  }
	
	  .background-media-text__aligner {
	    margin: -10px 10px 10px;
	  }
	
	  .background-media-text__text {
	    padding: calc(var(--gutter) * 0.75);
	    width: auto;
	  }
	
	  .background-media-text.loading {
	    &:before,
	    &:after {
	      top: 117px;
	    }
	  }
	}
	
	@media only screen and (min-width: 769px) {
	  .background-media-text--450 {
	    min-height: 450px;
	  }
	
	  .background-media-text--550 {
	    min-height: 550px;
	  }
	
	  .background-media-text--650 {
	    min-height: 650px;
	  }
	
	  .background-media-text--750 {
	    min-height: 750px;
	  }
	
	  .background-media-text__image {
	    height: 100%;
	    object-fit: cover;
	  }
	
	  .background-media-text__image,
	  .background-media-text__image svg {
	    opacity: 0;
	  }
	}
	
	.background-media-text__image {
	  opacity: 0;
	  animation: none;
	  transition: none;
	}
	
	.loaded {
	  & .background-media-text__image,
	  & .background-media-text__image svg {
	    animation: zoom-fade 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
	    transition: none;
	  }
	}
	
	@media only screen and (min-width: 769px) {
	  .loaded .background-media-text__inner .animation-contents {
	    transform: translateY(0);
	    opacity: 1;
	    transition: all 0.8s cubic-bezier(0.26, 0.54, 0.32, 1) 0.5s;
	  }
	}
.blog-layout {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .blog-layout__main {
    margin-bottom: 20px;
  }

  .blog-layout__sidebar {
    order: 1;

    & h4 {
      margin-block-end: var(--size-5);
    }
  }

  /* Any section that isn't the main layout or sidebar should be full width */
  .blog-layout > div:not(.blog-layout__main):not(.blog-layout__sidebar) {
    flex: 1 0 100%;
  }

  @media only screen and (min-width: 769px) {
    .blog-layout {
      flex-direction: row;
      flex-wrap: wrap;
    }

    .blog-layout__main {
      flex: 1 1 calc(60% - 90px);
    }

    .blog-layout__sidebar {
      order: 0;
      flex: 0 0 calc(40% - 90px);
      align-self: flex-start;

      padding-left: 0;
      margin-left: 0;
      border-left: 0;
      padding-right: 45px;
      margin-right: 45px;
      border-right: 1px solid;
      border-right-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));

      [dir='rtl'] & {
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
        padding-left: 45px;
        margin-left: 45px;
        border-left: 1px solid;
        border-left-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
      }
    }

    .blog-layout__main + .blog-layout__sidebar {
      padding-right: 0;
      margin-right: 0;
      border-right: 0;
      padding-left: 45px;
      margin-left: 45px;
      border-left: 1px solid;
      border-left-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));

      [dir='rtl'] & {
        padding-left: 0;
        margin-left: 0;
        border-left: 0;
        padding-right: 45px;
        margin-right: 45px;
        border-right: 1px solid;
        border-right-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
      }
    }
  }
.blog-layout {
	  display: flex;
	  flex-wrap: nowrap;
	  flex-direction: column;
	}
	
	.blog-layout__main {
	  margin-bottom: 20px;
	}
	
	/* Any section that isn't the main layout or sidebar should be full width */
	.blog-layout > div:not(.blog-layout__main):not(.blog-layout__sidebar) {
	  flex: 1 0 100%;
	}
	
	@media only screen and (min-width: 769px) {
	  .blog-layout {
	    flex-direction: row;
	    flex-wrap: wrap;
	  }
	
	  .blog-layout__main {
	    flex: 1 1 calc(60% - 90px);
	  }
	
	  .blog-layout__sidebar {
	    order: 0;
	    flex: 0 0 calc(40% - 90px);
	    align-self: flex-start;
	
	    padding-left: 0;
	    margin-left: 0;
	    border-left: 0;
	    padding-right: 45px;
	    margin-right: 45px;
	    border-right: 1px solid;
	    border-right-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	
	    [dir='rtl'] & {
	      padding-right: 0;
	      margin-right: 0;
	      border-right: 0;
	      padding-left: 45px;
	      margin-left: 45px;
	      border-left: 1px solid;
	      border-left-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	    }
	  }
	
	  .blog-layout__main + .blog-layout__sidebar {
	    padding-right: 0;
	    margin-right: 0;
	    border-right: 0;
	    padding-left: 45px;
	    margin-left: 45px;
	    border-left: 1px solid;
	    border-left-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	
	    [dir='rtl'] & {
	      padding-left: 0;
	      margin-left: 0;
	      border-left: 0;
	      padding-right: 45px;
	      margin-right: 45px;
	      border-right: 1px solid;
	      border-right-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	    }
	  }
	}
.collection-hero {
	  --collection-hero-overlay-direction: 45deg;

	  position: relative;
	  width: 100%;
	  height: 200px;
	  overflow: hidden;
	  background-color: color-mix(in srgb, var(--color-secondary) var(--shade-12), var(--color-primary));

	  @media only screen and (min-width: 769px) {
	    height: 400px;
	  }
	}

	.collection-hero__content {
	  --z-index-overlay: -1;
	  position: absolute;
	  top: 0;
	  left: 0;
	  bottom: 0;
	  width: 100%;
	  display: flex;
	  align-items: flex-end;
	  padding: calc(var(--gutter) / 2) 0;
	  z-index: 1;

	  @media only screen and (min-width: 769px) {
	    padding: var(--gutter) 0;
	  }

	  /*Account for overlayed header/toolbar*/
	  .overlaid-header & {
	    padding-top: 70px;

	    @media only screen and (min-width: 769px) {
	      padding-top: 100px;
	    }
	  }

	  & .page-width {
	    width: 100%;
	  }

	  &:after {
	    background: linear-gradient(var(--collection-hero-overlay-direction), var(--color-secondary), transparent 50%);
	    pointer-events: none;
	  }
	}

	/*Apply animations*/
	.collection-hero__image {
	  transform: scale(1);
	  transition:
	    transform 1s cubic-bezier(0.18, 0.63, 0.25, 1),
	    opacity 0.7s ease;
	  animation: none;
	  object-fit: cover;
	}

  .collection-hero__description {
    @media only screen and (min-width: 769px) {
      max-width: 60%;
    }
  }
/*Return to collection link*/
	.return-section {
	  margin-top: var(--index-section-padding);
	  padding: var(--index-section-padding) 0;
	}
	
	.return-link {
	  text-align: center;
	  padding: 15px 25px;
	
	  & .element-icon {
	    width: 20px;
	    margin-right: 8px;
	  }
	}
.note,
  .errors {
    border-radius: var(--element-input-radius);
    padding: 6px 12px;
    margin-bottom: calc(var(--gutter) / 2);
    border: 1px solid transparent;
    text-align: left;

    & ul,
    & ol {
      margin-top: 0;
      margin-bottom: 0;
    }

    & li:last-child {
      margin-bottom: 0;
    }

    & p {
      margin-bottom: 0;
    }
  }

  .note {
    border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
  }

  .errors {
    & ul {
      list-style: disc outside;
      margin-left: 20px;
    }
  }

  .note--success {
    color: var(--success-green);
    background-color: var(--success-green-bg);
    border-color: var(--success-green);

    & a {
      color: var(--success-green);
      text-decoration: underline;

      &:hover {
        text-decoration: none;
      }
    }
  }

  .form-error,
  .errors {
    color: var(--color-error);
    border-color: var(--color-error);

    & a {
      color: var(--color-error);
      text-decoration: underline;

      &:hover {
        text-decoration: none;
      }
    }
  }

  .contact-form--content-position-left,
  .contact-form--content-position-right {
    --overlay-direction: 180deg;
    --index-section-padding: 0;

    .grid__item {
      width: 100%;
    }

    .page-width {
      max-width: none;
      padding: 0;
      display: grid;

      @media only screen and (min-width: 769px) {
        grid-template-columns: 1fr 1fr;
      }
    }

    [data-image-type] {
      position: relative;
      grid-area: image;

      &:after {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
      }
    }

    .section-header {
      padding: 40px 32px 16px;
      margin: 0;

      @media only screen and (min-width: 769px) {
        padding: 80px 80px 24px;
      }
    }

    .contact-form__content {
      grid-area: content;
    }

    .form-vertical {
      padding: 40px 32px 24px;
      margin: 0;

      @media only screen and (min-width: 769px) {
        padding: 80px 80px 80px;
      }
    }

    /* If a section header exists, remove extra top padding from the form */
    .section-header + .form-vertical {
      padding-top: 0;
    }

    &[class*='color-scheme-']:not(.color-scheme-none) input,
    &[class*='color-scheme-']:not(.color-scheme-none) textarea {
      background: transparent;
    }

    .form-vertical [type='submit'].btn {
      width: 100%;
    }

    /* Unified overlay gradient using CSS variable */
    &.contact-form--overlay [data-image-type]:after {
      background: linear-gradient(var(--overlay-direction), rgba(53, 14, 14, 0) 25%, var(--_overlay-color) 90%);
    }

    /* Define overlay color for each color scheme */
    &.color-scheme-none {
      --_overlay-color: var(--root-color-secondary);
    }

    &.color-scheme-1 {
      --_overlay-color: var(--color-scheme-1-secondary);
    }

    &.color-scheme-2 {
      --_overlay-color: var(--color-scheme-2-secondary);
    }

    &.color-scheme-3 {
      --_overlay-color: var(--color-scheme-3-secondary);
    }
  }

  .contact-form--content-position-left {
    --overlay-direction: 0deg;

    .page-width {
      grid-template-areas:
        'content'
        'image';

      @media only screen and (min-width: 769px) {
        grid-template-areas: 'content image';
        grid-template-rows: auto 1fr;
      }
    }

    &.contact-form--overlay [data-image-type]:after {
      @media only screen and (min-width: 769px) {
        left: 0;
      }
    }

    @media only screen and (min-width: 769px) {
      --overlay-direction: 270deg;
    }
  }

  .contact-form--content-position-right {
    .page-width {
      grid-template-areas:
        'image'
        'content';
      background: inherit;

      @media only screen and (min-width: 769px) {
        grid-template-areas: 'image content';
        grid-template-rows: auto 1fr;
      }
    }

    &.contact-form--overlay [data-image-type]:after {
      @media only screen and (min-width: 769px) {
        right: 0;
      }
    }

    @media only screen and (min-width: 769px) {
      --overlay-direction: 90deg;
    }
  }

  .contact-form__image {
    opacity: 1;

    @media only screen and (min-width: 769px) {
      position: absolute;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
  }

  /* Default top spacing when no header is present */
  .contact-form__content > .form-vertical:first-child {
    padding-top: 40px;
  }

  @media only screen and (min-width: 769px) {
    .contact-form__content > .form-vertical:first-child {
      padding-top: 80px;
    }
  }
/* Countdown */
	.countdown-wrapper {
	  position: relative;
	}
	
	.countdown__background-image-wrapper {
	  width: 100%;
	  height: 100%;
	  position: absolute;
	}
	
	.countdown__background-image {
	  position: absolute;
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  top: 0;
	  left: 0;
	}
	
	.countdown__mobile-image-wrapper {
	  width: 100%;
	  height: 100%;
	  position: absolute;
	}
	
	.countdown__mobile-image {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}
	
	.countdown-layout--banner {
	  & .countdown__content {
	    padding: 2rem;
	
	    @media only screen and (min-width: 769px) {
	      display: flex;
	      flex-wrap: nowrap;
	      flex-direction: row;
	      justify-content: space-around;
	      gap: 1rem;
	      padding: 1.6rem 2rem;
	    }
	  }
	
	  &.countdown-blocks--2.page-width {
	    & .countdown__content {
	      justify-content: space-around;
	    }
	  }
	
	  &.countdown-blocks--2 {
	    & .countdown__content {
	      justify-content: center;
	    }
	  }
	
	  & .countdown__block {
	    @media only screen and (min-width: 769px) {
	      width: 33%;
	    }
	  }
	}
	
	.countdown__content {
	  width: 100%;
	  height: auto;
	  max-height: 650px;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  padding: 5rem 2rem;
	  text-align: center;
	  overflow: hidden;
	
	  .page-width & {
	    position: relative;
	  }
	
	  .countdown-layout--hero & {
	    @media only screen and (min-width: 769px) {
	      height: 100vh;
	    }
	  }
	}
	
	.countdown__block {
	  width: 100%;
	  margin: 1rem auto;
	  z-index: 3;
	}
	
	.countdown__block--content {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	
	  & .countdown__block--button {
	    width: 100%;
	    margin: 0; /* Nested button will get spacing from text above it */
	  }
	}
	
	.countdown__block--timer,
	.countdown__block--content {
	  .countdown-blocks--2.countdown-layout--banner & {
	    @media only screen and (min-width: 769px) {
	      width: 50%;
	    }
	  }
	}
	
	.countdown__block--button.button-block-active {
	  .countdown-blocks--2.countdown-layout--banner & {
	    @media only screen and (min-width: 769px) {
	      width: 50%;
	    }
	  }
	}
	
	.countdown__text-wrapper {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	
	  .countdown-layout--hero & {
	    @media only screen and (min-width: 769px) {
	      width: 50%;
	    }
	  }
	}
	
	.countdown__text-wrapper--content-alignment-left {
	  text-align: left;
	}
	
	.countdown__text-wrapper--content-alignment-right {
	  text-align: right;
	}
	
	.countdown__display {
	  display: flex;
	  justify-content: center;
	}
	
	.countdown__display--loaded {
	  opacity: 1;
	  visibility: visible;
	  transition: opacity ease-in 0.3s;
	}
	
	.countdown__display--visible + .countdown__timer-message--visible {
	  margin-top: 1.5rem;
	}
	
	.countdown__display--hidden {
	  visibility: hidden;
	  opacity: 0;
	  width: 0;
	  height: 0;
	  margin: 0;
	  transition: opacity ease-out 3s;
	}
	
	.countdown__display-block {
	  display: flex;
	  flex-wrap: wrap;
	  flex-direction: column;
	  align-content: center;
	  border-right: 1px solid;
	  padding: 0 1rem;
	
	  & h2 {
	    margin-bottom: 16px;
	
	    @media only screen and (min-width: 769px) {
	      margin-bottom: 4px;
	    }
	  }
	
	  & span {
	    font-size: 0.6rem;
	    letter-spacing: 1.7px;
	
	    @media only screen and (min-width: 769px) {
	      font-size: 0.75rem;
	    }
	  }
	
	  &:last-child {
	    border-right: none;
	  }
	
	  [dir='rtl'] & {
	    &:last-child {
	      border-right: 1px solid;
	    }
	
	    &:first-child {
	      border-right: none;
	    }
	  }
	}
	
	.countdown__timer-message {
	  opacity: 0;
	  visibility: hidden;
	  margin: 0;
	  height: 0;
	}
	
	.countdown__timer-message--visible {
	  opacity: 1;
	  visibility: visible;
	  transition: opacity ease-in 1s;
	  height: auto;
	}
	
	.countdown__block--hidden {
	  opacity: 0;
	  visibility: hidden;
	  margin: 0;
	  transition: opacity ease-out 1s;
	  width: 0 !important;
	}
	
	.countdown__overlay {
	  &::after {
	    content: '';
	    position: absolute;
	    width: 100%;
	    height: 100%;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    z-index: 2;
	    background-color: var(--countdown-overlay-rgba);
	  }
	}
	
	/* Expanse specific styles */
	.countdown__image--blur-true {
	  & img {
	    filter: blur(4px);
	    transform: scale(1.03);
	  }
	
	  & .countdown__background-image-wrapper {
	    overflow: hidden;
	  }
	
	  & .countdown__mobile-image-wrapper {
	    overflow: hidden;
	  }
	}
	
	.countdown-wrapper.page-width {
	  & .countdown__content,
	  & .countdown__background-image-wrapper,
	  & .countdown__background-image,
	  & .countdown__mobile-image-wrapper,
	  & .countdown__mobile-image,
	  & .countdown__overlay::after {
	    border-radius: var(--roundness);
	  }
	}
	
	.countdown__block--content {
	  & .countdown__block--button {
	    margin-top: 1.5rem;
	  }
	}
/* Make product title and price bold */
  .grid-item__meta .element-text--body-md {
      font-weight: 500 !important;
  }

  .grid-item__meta .element-price.element-text--heading-xs {
      font-weight: 500 !important;
  }
  .featured-collection__carousel {
    display: flex;

    @media only screen and (max-width: 959px) {
      flex-direction: column;
    }

    .grid-product__actions {
      top: var(--product-grid-margin);
      right: 0;
    }
  }

  .featured-collection__carousel .featured-collection__block-wrapper {
    display: flex;
    flex-direction: column;
    flex: 0 0 25%;
    padding-right: 20px;

    @media only screen and (max-width: 959px) {
      padding-right: var(--page-width-padding);
    }
  }

  .featured-collection__block-wrapper-content-position--top {
    justify-content: flex-start;
  }

  .featured-collection__block-wrapper-content-position--center {
    justify-content: center;
  }

  .featured-collection__block-wrapper-content-position--bottom {
    justify-content: flex-end;
  }

  .featured-collection__block {
    padding-bottom: 20px;

    &:last-child {
      padding-bottom: 0;

      @media only screen and (max-width: 959px) {
        padding-bottom: 20px;
      }
    }
  }

  .featured-collection__carousel-grid-items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }

  .featured-collection__carousel-grid-items::-webkit-scrollbar {
    display: none;
  }

  .featured-collection__carousel .grid-item {
    flex: 1 0 40%;
    margin-bottom: 0;

    @media only screen and (max-width: 959px) {
      flex: 1 0 60%;
    }
  }

  .svg-mask--disabled-mobile {
    @media only screen and (max-width: 959px) {
      .image-element {
        mask-image: none !important;
      }
    }
  }

  .medium-down--banner-image {
    @media only screen and (max-width: 959px) {
      .image-wrap {
        padding-bottom: 35% !important;
      }

      .image-element {
        height: 100%;
      }
    }
  }

  .page-width--no-right-padding {
    &.page-width {
      padding-right: 0;
    }
  }

  /* Single row with 6 products */
  .featured-collection__wrapper {
    position: relative;
  }
/* Global (desktop/tablet) layout stays same */
.featured-collection__single-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 18px; /* nice spacing for desktop */
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

/* Hide scrollbar */
.featured-collection__single-row::-webkit-scrollbar {
  display: none;
}

/* 6 products per row on desktop */
.featured-collection__single-row .grid-item {
  flex: 0 0 calc(16.666% - 17px);
  min-width: 200px;
  margin-bottom: 0;
}

/* Adjust for tablet */
@media only screen and (max-width: 1200px) {
  .featured-collection__single-row .grid-item {
    flex: 0 0 calc(25% - 15px);
  }
}

/* Adjust for smaller tablets / large phones */
@media only screen and (max-width: 768px) {
  .featured-collection__single-row .grid-item {
    flex: 0 0 calc(38% - 10px);
    min-width: 38%;
  }
}

/* Desktop/Tablet view - button half inside/half outside */
@media only screen and (min-width: 481px) {
  .featured-collection__wrapper {
    padding-top: 0;
    overflow: visible;
  }
  
  .featured-collection__single-row {
    padding: 15px 0 20px; /* Top padding for button space */
    margin: -15px 0 0; /* Negative margin to maintain layout */
    overflow-y: visible;
  }
  
  .featured-collection__single-row .grid-item {
    overflow: visible !important;
  }
  
  /* Position button so it's half inside/half outside */
  .featured-collection__single-row .grid-product__actions {
    top: -10px !important;
    right: -10px !important;
  }
  
  /* Ensure product card wrapper allows overflow */
  .featured-collection__single-row .grid-product {
    overflow: visible !important;
  }
}

/* ✅ Mobile view */
@media only screen and (max-width: 480px) {
  /* Add padding for button space */
  .featured-collection__wrapper {
    padding-top: 0;
    overflow: visible;
  }
  
  .featured-collection__single-row {
    gap: 4px;
    padding: 15px 0 8px; /* Top padding for button space */
    margin: -15px 0 0; /* Negative margin to maintain layout */
    overflow-y: visible;
  }
  
  .featured-collection__single-row .grid-item {
    flex: 0 0 calc(43% - 1px);
    min-width: 40%;
    scroll-snap-align: start;
    overflow: visible !important;
  }
  
  /* Position button so it's half inside/half outside */
  .featured-collection__single-row .grid-product__actions {
    top: -10px !important;
    right: -10px !important;
  }
  
  /* Ensure product card wrapper allows overflow */
  .featured-collection__single-row .grid-product {
    overflow: visible !important;
  }
}

  /* Navigation Arrows */
  .featured-collection__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .featured-collection__nav:hover {
    background: #0066FF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .featured-collection__nav:active {
    transform: translateY(-50%) scale(0.95);
  }

  .featured-collection__nav--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }

  .featured-collection__nav--hidden {
    display: none;
  }

  .featured-collection__nav--prev {
    left: -50px;
  }

  .featured-collection__nav--next {
    right: -50px;
  }

  .featured-collection__nav svg {
    width: 20px;
    height: 20px;
    fill: #333;
  }

  @media only screen and (max-width: 768px) {
    .featured-collection__nav {
      display: none;
    }
  }
/* TODO: remove this once collection card is refactored and removes .grid-item */
  .layout-section--featured-collections .grid-item {
    padding: 0;
    margin: 0;
  }

  /* Force 4 columns on mobile for collection cards */
  @media screen and (max-width: 749px) {
    .layout-section--featured-collections .layout-grid {
      grid-template-columns: repeat(4, 1fr) !important;
    }
  }
gift-recipient-form {
	  display: block;
	  position: relative;
	
	  & .recipient-fields {
	    display: none;
	  }
	}
.media-gallery {
    --media-gallery-thumb-size: 80px;
    --media-gallery-thumb-gap: var(--gap-size-xs);

    display: block;
    position: relative;
    overflow: hidden;
  }

  .media-gallery__main {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    min-height: 400px;
    aspect-ratio: 1;
    touch-action: pan-y pinch-zoom;
    transition: height 0.3s ease-in-out;
  }

  /* Disable transition when setting height programmatically */
  .media-gallery__main--no-transition {
    transition: none;
  }

  .media-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

  .media-gallery__main:hover .media-gallery__nav {
    opacity: 1;
  }

  .media-gallery__nav--prev {
    left: var(--gap-size-sm);
  }

  .media-gallery__nav--next {
    right: var(--gap-size-sm);
  }

  .media-gallery__nav:focus-visible {
    opacity: 1;
  }

  .media-gallery__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
  }

  .media-gallery__slide--is-animating {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .media-gallery__slide--active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
  }

  .media-gallery__slide--prev {
    transform: translateX(-100%);
  }

  .media-gallery__slide--next {
    transform: translateX(100%);
  }

  .media-gallery__slide img:not(.overlay-lightbox__overlay img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .media-gallery__thumbnails {
    display: block;
    width: fit-content;
    max-width: 100%;

    max-height: 650px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
  }

  .media-gallery__thumbnails--top,
  .media-gallery__thumbnails--bottom {
    overflow-x: auto;
  }

  .media-gallery__thumbnails--left,
  .media-gallery__thumbnails--right {
    overflow-y: auto;
  }

  /* Webkit scrollbar styling */
  .media-gallery__thumbnails::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }

  .media-gallery__thumbnails::-webkit-scrollbar-track {
    background: transparent;
  }

  .media-gallery__thumbnails::-webkit-scrollbar-thumb {
    background: var(--color-border);
  }

  .media-gallery__thumbnails::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
  }

  .media-gallery__thumb {
    position: relative;
    border: 2px solid transparent;
    background: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
    width: var(--media-gallery-thumb-size);
    height: var(--media-gallery-thumb-size);
  }

  .media-gallery__thumb--active {
    border-color: var(--color-primary);
  }

  .media-gallery__thumb:hover {
    border-color: var(--color-primary);
    opacity: 0.8;
  }

  .media-gallery__thumb:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  .media-gallery__thumb-image {
    position: relative;
    width: 100%;
    max-width: var(--media-gallery-thumb-size);
    max-height: var(--media-gallery-thumb-size);
    height: var(--media-gallery-thumb-size);
    aspect-ratio: 1;
  }

  .media-gallery__thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .media-gallery__thumb-icon {
    display: flex;
    position: absolute;
    top: var(--gap-size-2xs);
    right: var(--gap-size-2xs);
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 0;
    padding: var(--gap-size-2xs);
    z-index: 1;
  }

  .media-gallery__thumb-icon .element-icon {
    width: 12px;
    height: 12px;
  }


  .media-gallery .shopify-model-viewer-ui,
  .media-gallery .shopify-model-viewer-ui model-viewer {
      width: 100%;
      height: 100%;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .media-gallery__main {
      min-height: 300px;
    }


    .media-gallery__nav {
      opacity: 1;
    }
  }
.media-grid {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .media-grid__container {
    min-width: 350px;
    flex: 1 1 300px;

    & img:not(.overlay-lightbox__overlay img) {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .media-grid .shopify-model-viewer-ui,
  .media-grid .shopify-model-viewer-ui model-viewer {
    width: 100%;
    height: 100%;
  }
.element-icon-in-stock {
	  fill: var(--success-green, #56ad6a);
	}
	
	.element-icon-out-of-stock {
	  fill: var(--color-error, #ba4444);
	}

	.element-text__store-address p {
	  margin: 0;
	}
@media only screen and (max-width: 768px) {
	  .footer-promotions {
	    & .grid__item {
	      margin-bottom: 32px;
	
	      &:last-child {
	        margin-bottom: 0;
	      }
	    }
	  }
	}
	
	.footer-promotion {
	  width: 100%;
	  text-align: center;
	  padding: 22px;
	  border-radius: var(--roundness);
	  overflow: hidden;
	
	  @media only screen and (min-width: 769px) {
	    padding: 30px;
	  }
	
	  & .scheme-image {
	    border-radius: calc(var(--roundness) + 2px);
	  }
	
	  &[class*='color-scheme-']:not(.color-scheme-none) .btn {
	    border: 0;
	  }
	}
	
	.footer__grid-image {
	  display: block;
	  text-align: center;
	  margin-bottom: 17px;
	
	  @media only screen and (min-width: 769px) {
	    margin-bottom: 20px;
	  }
	
	  & img {
	    display: block;
	  }
	}
	
	.color-scheme-none.footer-promotion {
	  border: 1px solid;
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	}
.site-footer {
	  display: block;
	  font-size: calc(var(--element-text-font-size--body-md) - 1px);
	
	  & .faux-select {
	    font-size: calc(var(--element-text-font-size--body-md) - 1px);
	    min-width: max-content;
	  }
	}
	
.footer__section {
  padding: 30px 0;
  border-top: none;

	
	  .site-footer:not(:has([data-type='menu'])) & {
	    padding-top: 0;
	    border-top-width: 0;
	  }
	}
	
	@media only screen and (min-width: 769px) {
	  .footer__section--menus {
	    padding-top: 50px;
	  }
	}
	
	/* Mimic a standalone section on mobile */
	@media only screen and (max-width: 768px) {
	  .footer__mobile-section {
	    margin-left: calc(var(--page-width-padding) * -1);
	    margin-right: calc(var(--page-width-padding) * -1);
	    padding: 20px var(--page-width-padding) 0;
	    border-top: 1px solid;
	  }
	}
	
	.footer__title {
	  margin-bottom: 15px;
	}
	
	.footer__subscribe {
	  font-weight: var(--element-text-font-weight--heading);
	  font-size: calc(var(--element-text-font-size--body-md) + 2px);
	}
	
	.footer__menu {
	  margin: 0 0 20px;
	  padding: 0;
	  list-style: none;
	
	  @media only screen and (max-width: 768px) {
	    margin-bottom: 0;
	  }
	
	  & li {
	    margin: 0;
	  }
	
	  & a {
	    display: inline-block;
	    padding: 4px 0;
	  }
	
	  & .element-icon {
	    margin-right: 10px;
	
	    [dir='rtl'] & {
	      margin-right: 0;
	      margin-left: 10px;
	    }
	  }
	}
	
	.footer__menu--underline a {
	  text-decoration: underline;
	  text-underline-offset: 2px;
	}
	
	
	.footer__blocks {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  gap: 20px;
	}
	
	.footer__block {
	  flex: 0 1 25%;
	  max-width: 210px;
	}
	
	@media only screen and (max-width: 768px) {
	  .footer__blocks--mobile {
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: center;
	  }
	
	  .footer__block,
	  .footer__block--mobile {
	    max-width: none;
	    flex: 1 1 50%;
	  }
	
	  .footer__block[data-type='payment'],
	  .footer__block[data-type='contact'] {
	    flex: 1 0 100%;
	  }
	
	  & .multi-selectors--footer .multi-selectors__item {
	    margin: 0;
	  }
	}
	
	.payment-icons {
	  user-select: none;
	  cursor: default;
	  margin-bottom: 20px;
	
	  @media only screen and (max-width: 768px) {
	    margin-bottom: 0;
	  }
	
	  & li {
	    cursor: default;
	    margin: 0 8px 4px 0;
	  }
	}
	
	/* Footer of the footer */
	.footer__base-links {
	  font-size: 13px;
	
	  & a,
	  & span {
	    display: inline-block;
	    padding: 2px 20px 2px 0;
	  }
	
	  & a {
	    text-decoration: underline;
	    text-underline-offset: 2px;
	  }
	}
  /* Mobile Accordion - Only for menu blocks */
@media only screen and (max-width: 768px) {
  /* Desktop title - hidden on mobile for toggleable blocks */
  .footer__title--desktop {
    display: none !important;
  }

  .footer__accordion-toggle {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border: none;
    background: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
  }

  .footer__accordion-toggle .footer__accordion-icon {
    transition: transform 0.3s ease;
    font-size: 20px;
    line-height: 1;
  }

  .footer__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer__accordion-content.open {
    max-height: 2000px;
    padding-top: 10px;
  }

  /* Show toggle for toggleable menu blocks only */
  .footer__block[data-type="menu"]:not(:first-of-type) .footer__accordion-toggle {
    display: flex !important;
  }

  /* Always show content for non-toggleable blocks */
  .footer__block[data-type="contact"] .footer__accordion-content,
  .footer__block[data-type="image"] .footer__accordion-content,
  .footer__block[data-type="menu"]:first-of-type .footer__accordion-content {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Show desktop title, hide mobile toggle on desktop */
@media only screen and (min-width: 769px) {
  .footer__accordion-toggle {
    display: none !important;
  }
  
  .footer__accordion-content {
    display: block !important;
    max-height: none !important;
  }
  
  .footer__title--desktop {
    display: block !important;
  }
  
  /* Hide duplicate menu title inside accordion content */
  .footer__block[data-type="menu"]:not(:first-of-type) .footer__accordion-content .footer__title,
  .footer__block[data-type="menu"]:not(:first-of-type) .footer__accordion-content h3 {
    display: none !important;
  }
}

/* Hide desktop title on mobile */
@media only screen and (max-width: 768px) {
  .footer__title--desktop {
    display: none !important;
  }
}
/* Homesouq About Section Toggle */
.footer__about-toggle {
  display: none;
}

@media only screen and (max-width: 768px) {
  .footer__about-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    border: none;
    background: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    text-align: left;
  }

  .footer__about-toggle .footer__about-icon {
    transition: transform 0.3s ease;
    font-size: 24px;
    line-height: 1;
  }

  .footer__about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .footer__about-content.open {
    max-height: 5000px;
  }
}

@media only screen and (min-width: 769px) {
  .footer__about-content {
    display: block !important;
  }
}
@media only screen and (max-width: 768px) {
  /* Hide duplicate menu title inside accordion content for toggleable blocks */
  .footer__block[data-type="menu"]:not(:first-of-type) .footer__accordion-content .footer__title {
    display: none !important;
  }
  
  /* Or if the menu title has a different class, use this: */
  .footer__block[data-type="menu"]:not(:first-of-type) .footer__accordion-content h3 {
    display: none !important;
  }
}

.footer__base-links span:first-child {
  display: inline;   /* keeps © 2025 and shop name on the same line */
  white-space: normal;
}

.footer__base-links span:not(:first-child),
.footer__base-links a {
  display: block;   /* keeps additional text on separate lines */
  margin: 2px 0;
}
.giftcard-header {
	  padding: calc(var(--gutter) * 2) 0;
	  font-size: 1em;
	  text-align: center;
	
	  & .site-header__logo a {
	    display: block;
	    margin: 0 auto;
	    color: var(--root-color-primary);
	  }
	}
:root {
    --section-header-bottom: 20px;
    --site-nav-item-padding: 20px;
    --site-nav-item-padding-top-bottom: 16px;
  }

  .section-header {
    margin-bottom: var(--section-header-bottom);

    & select {
      display: inline-block;
      vertical-align: middle;
    }
  }

  .section-header--flush {
    margin-bottom: 0;
  }

  .section-header--with-link {
    display: flex;
    align-items: center;

    & select {
      flex: 0 1 auto;
    }
  }

  .section-header__title {
    margin-bottom: 0;

    .section-header--with-link & {
      flex: 1 1 auto;
    }

    & a {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
  }

  .section-header__link {
    flex: 0 1 auto;
    margin-top: calc(var(--gutter) / 2);
    font-weight: var(--element-text-font-weight--heading);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;

    .section-header--with-link & {
      margin-top: 0;
    }

    @media only screen and (max-width: 768px) {
      margin-left: 10px;
    }
  }

  .section-header--404 {
    padding-top: 80px;
  }

  .section-header select {
    margin: 10px 0;
  }

  .section-header p {
    margin: 10px 0;
  }

  header-section {
    display: block;
  }

  [dir='rtl'] & .site-header__logo {
    margin-left: 20px;
  }

  .site-header__drawers {
    height: 0;
    overflow: visible;

    @media only screen and (max-width: 768px) {
      padding: 0;
    }
  }

  .site-header__drawers-container {
    position: relative;
  }

  [data-logo-align='center'] .header-item--search predictive-search:not(.is-active) {
    transform: translateX(-50px);
    transition: transform 0.2s ease;

    .header-wrapper--compressed & {
      transform: translateX(0px);
    }
  }

  /*Submit and cancel buttons*/
  .site-header__search-btn {
    padding: 0 8px;
  }

  .site-header__search-btn--cancel {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    color: var(--color-primary);

    &:hover {
      color: var(--color-primary);
    }

    .site-header__search-container & {
      padding-right: 5px;
    }
  }

  .site-header__mobile-nav {
    left: 0;
    right: 0;
    overflow-x: hidden;
  }

  .header-layout {
    display: flex;
    align-items: center;
  }

  [data-layout='center'] {
    align-items: center;
  }

  .header-item {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
  }

  .header-item--compress-nav {
    visibility: hidden;
    flex: 0 0 auto;
    width: 0;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.18, 0.77, 0.58, 1);
    overflow: hidden;

    .header-wrapper--compressed & {
      visibility: visible;
      opacity: 1;
      width: 50px;
      transform: translateX(calc(var(--site-nav-icon-padding) * -1));
    }
  }

  .header-item--logo {
    flex: 0 0 auto;
    word-break: break-all;
  }

  .header-item--search {
    flex: 1 1 100%;
    max-width: 475px;

    [data-layout='center'] & {
      max-width: none;

      & form {
        max-width: 320px;
      }
    }

    & .site-nav__compress-menu {
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.18, 0.77, 0.58, 1);
      width: 50px;

      .header-wrapper--compressed & {
        visibility: visible;
        opacity: 1;
        transform: translateX(calc(var(--site-nav-icon-padding) * -1));

        [dir='rtl'] & {
          transform: translateX(0);
        }
      }
    }
  }

  .header-item--icons {
    justify-content: flex-end;
    flex: 1 1 auto;
  }

  .header-layout[data-logo-align='center'] {
    & .header-item--logo {
      @media only screen and (min-width: 769px) {
        margin: 0 30px;
      }
    }

    & .header-item--navigation,
    & .header-item--icons,
    & .header-item--search {
      flex: 1 1 33%;
    }
  }

  @media only screen and (min-width: 769px) {
    .header-layout[data-logo-align='left'] {
      & .site-header__logo {
        margin-right: 30px;
      }
    }

    .header-layout[data-logo-align='center'] {
      &:has(predictive-search.is-active) .site-nav__compress-menu {
        display: none;
      }

      .header-item--search predictive-search:not(.is-active) {
        transition: none;
      }
    }
  }

  /*Icon alignment*/
  .header-item--left {
    & .site-nav {
      margin-left: calc(var(--site-nav-icon-padding) * -1);

      @media only screen and (max-width: 768px) {
        margin-left: calc(var(--site-nav-item-padding) / -2);
      }
    }
  }

  .header-item--icons {
    & .site-nav {
      margin-right: calc(var(--site-nav-icon-padding) * -1);

      @media only screen and (max-width: 768px) {
        margin-right: calc(var(--site-nav-item-padding) / -2);
      }
    }
  }

  /*Hide search icon in mobile nav when not in compressed mode*/
  @media only screen and (max-width: 768px) {
    .header-wrapper:not(.header-wrapper--compressed) [data-nav='below'] .js-search-header {
      display: none;
    }
  }

  /*Animate hamburger icon when nav open*/
  .mobile-nav-trigger,
  .site-nav__compress-menu {
    & path {
      transition: all 0.3s cubic-bezier(0.18, 0.77, 0.58, 1);
    }

    &.is-active {
      & path:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 20% 30%;
      }
      & path:nth-child(2) {
        opacity: 0;
      }
      & path:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 15% 66%;
      }
    }
  }

  /*Same default logo and icon container size, logo block width overrides*/
  [data-layout='left-center'] {
    & .header-item--logo,
    & .header-item--icons {
      flex: 0 0 200px;
      max-width: 50%;

      @media only screen and (min-width: 769px) {
        min-width: 0;
      }
    }
  }

  .toolbar-section {
    position: relative;
    z-index: var(--z-index-toolbar);
  }

  .header-section {
    position: sticky;
    top: 0;
    z-index: var(--z-index-header);
    padding-bottom: var(--header-padding-bottom);
    pointer-events: none;

    & + .toolbar-section {
      z-index: calc(var(--z-index-header) - 1);
    }
  }

  .header-section--overlay {
    padding-bottom: 0;
  }

  [data-section-type='header'] {
    pointer-events: auto;
  }

  .site-header {
    position: relative;
  }

  .site-header__element {
    position: relative;
    background-color: var(--color-secondary);
    z-index: var(--z-index-header);

    /** last header section in the group */
    .header-section:not(:has(+ .shopify-section-group-header-group)) .header-wrapper--overlay:not(.not-light-style) & {
      background: transparent;
      box-shadow: none;
    }
  }

  .site-header__element--top {
    padding: 5px 0;
    transition: background-color 0.2s ease;

    @media only screen and (max-width: 768px) {
      padding: 0;
    }
  }

  .header-section.search-open {
    padding-bottom: 0;
  }

  .site-header__element--sub {
    padding: 0;
    z-index: var(--z-index-header-bottom-row);
    transition: transform 0.2s cubic-bezier(0.18, 0.77, 0.58, 1),
      background-color 0.2s cubic-bezier(0.18, 0.77, 0.58, 1);

    .header-wrapper--compressed &,
    .header-section.search-open & {
      transform: translateY(-100%);
      display: none;

      &.is-active {
        display: block;
        transform: translateY(0);
      }
    }

    .header-wrapper--init & {
      position: absolute;
      left: 0;
      right: 0;
    }
  }

  .site-header__element--sub[data-type='search'] {
    & .page-width {
      padding-bottom: 20px;
    }
  }

  /*Disable sticky header on short and wide screens*/
  @media screen and (min-width: 700px) and (max-height: 550px) {
    .header-section {
      position: static;
    }
  }

  .site-header__logo {
    position: relative;
    margin: calc(var(--gutter) / 3) 0;
    display: block;
    z-index: calc(var(--z-index-header) + 1);

    @media only screen and (min-width: 769px) {
      .text-center & {
        padding-right: 0;
        margin: calc(var(--gutter) / 3) auto;
      }
    }

    .header-layout[data-logo-align='center'] & {
      margin-left: auto;
      margin-right: auto;
      text-align: center;

      @media only screen and (max-width: 768px) {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
      }
    }

    & a {
      max-width: 100%;
    }

    & a,
    & a:hover {
      text-decoration: none;
    }

    & img {
      display: block;
      object-fit: cover;

      .header-layout[data-logo-align='center'] & {
        margin-left: auto;
        margin-right: auto;
      }
    }
  }

  .site-header__logo-link {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    word-break: break-word;

    &:hover {
      color: var(--color-primary);
    }

    @media only screen and (max-width: 768px) {
      margin: 0 auto;
    }
  }

  .header-wrapper--overlay {
    background: none;

    /** last header section in the group */
    .header-section:not(:has(+ .shopify-section-group-header-group)) &:not(.not-light-style) {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
    }

    /** last header section in the group */
    .header-section:not(:has(+ .shopify-section-group-header-group)) &:not(.not-light-style):after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: -50px;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, transparent);
      pointer-events: none;
    }
  }

  .site-header__logo .logo--has-inverted {
    /** last header section in the group */
    .header-section:not(:has(+ .shopify-section-group-header-group)) .header-wrapper--overlay:not(.not-light-style) & {
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      height: 0;
    }
  }

  .site-header__logo .logo--inverted {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    height: 0;

    /** last header section in the group */
    .header-section:not(:has(+ .shopify-section-group-header-group)) .header-wrapper--overlay:not(.not-light-style) & {
      opacity: 1;
      visibility: visible;
      height: auto;
    }
  }

  .site-header__logo {
    @media only screen and (min-width: 769px) {
      text-align: left;
    }
  }

  .site-header__logo a {
    color: var(--color-primary);

    /** last header section in the group */
    .header-section:not(:has(+ .shopify-section-group-header-group)) .header-wrapper--overlay:not(.not-light-style) & {
      color: var(--color-sticky-nav-links);

      &:hover {
        color: var(--color-sticky-nav-links);
      }
    }
  }

  .site-nav {
    margin: 0;
  }

  .site-nav__link {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    padding: var(--site-nav-item-padding-top-bottom) var(--site-nav-item-padding);
    white-space: nowrap;
    color: var(--color-primary);

    &:hover {
      color: var(--color-primary);
    }

    /** last header section in the group */
    .header-section:not(:has(+ .shopify-section-group-header-group)) .header-wrapper--overlay:not(.not-light-style) & {
      color: var(--color-sticky-nav-links);

      &:hover {
        color: var(--color-sticky-nav-links);
      }
    }

    & .element-icon-chevron-down {
      margin-left: 5px;
    }

    @media only screen and (max-width: 959px) {
      padding: var(--site-nav-item-padding-top-bottom) var(--site-nav-item-padding);
    }
  }

  /*Header icons*/
  .site-nav__icons {
    display: flex;
    align-items: center;

    & > .site-nav__link--icon {
      flex: 0 0 auto;
    }

    /*Hide when cart popup is open*/
    .cart-open & {
      display: none;
    }
  }

  .site-nav__link--cart {
    .element-icon,
    .cart-link {
      pointer-events: none;
    }
  }

  .site-nav__link--icon {
    --element-icon-size: var(--size-6-5);

    display: flex;
    align-items: center;
    padding-left: var(--site-nav-icon-padding);
    padding-right: var(--site-nav-icon-padding);

    @media only screen and (max-width: 768px) {
      padding-left: calc(var(--site-nav-item-padding) / 2);
      padding-right: calc(var(--site-nav-item-padding) / 2);

      & + .site-nav__link--icon {
        margin-left: -4px; /*~amount of inline-block space*/
      }
    }

    .element-icon-user {
      position: relative;
      top: 1px;
    }
  }

  @media only screen and (max-width: 768px) {
    .mobile-nav-open {
      & .site-nav__link:not(.mobile-nav-trigger) {
        display: none;
      }
    }
  }
.hero__media-container {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 100%;
	}
	
	.hero__media {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 100%;
	}
	
	.hero__media {
	  z-index: var(--z-index-hero-image);
	}
	
	.hero.video-parent-section {
	  display: block;
	}
	
	.hero__media iframe,
	.hero__media video {
	  width: 100%;
	  height: 100%;
	  pointer-events: none;
	
	  .video-interactable & {
	    pointer-events: auto;
	  }
	
	  .video-parent-section.loading & {
	    opacity: 0.01; /*sneaky way to avoid talking to an invisible YT iframe*/
	  }
	
	  .video-parent-section.loaded & {
	    opacity: 1;
	    animation: zoom-fade 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
	    transition: none; /*fixes safari animation conflict*/
	  }
	}
	
	/*MP4 sizing*/
	.hero__media video {
	  position: relative;
	  object-fit: cover;
	  font-family: 'object-fit: cover';
	}
	
	/*YouTube iframes need more specific sizing*/
	.hero__media iframe {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 300%;
	  left: -100%;
	  max-width: none;
	
	  /*This min-width may need to change slightly depending on
	  embedded video dimensions. Can do on a per-shop basis*/
	  @media screen and (min-width: 1140px) {
	    width: 100%;
	    height: 300%;
	    left: auto;
	    top: -100%;
	  }
	}
.hotspots-section .index-section {
	  @media only screen and (max-width: 768px) {
	    margin-bottom: 10px;
	  }
	}

	.hotspots-section .hotspots-wrapper {
	  display: flex;
	  flex-wrap: wrap;

	  &.is-reverse {
	    flex-direction: row-reverse;
	  }
	}

	.hotspots__title {
	  width: 100%;
	  padding-top: 1.5rem;
	}

	.hotspots {
	  position: relative;
	  width: 70%;

	  @media only screen and (max-width: 768px) {
	    width: 100%;
	  }

	  & .grid__image-ratio img {
	    opacity: 1;
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    object-fit: cover;

	    [data-animate_images='true'] & {
	      opacity: 1;
	    }
	  }
	}

	.hotspots__buttons {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  border: 0;
	  background-color: transparent;
	}

	.hotspot__button {
	  padding: 10px;
	  border-radius: 50%;
	  position: absolute;
	  line-height: 0;
	  transform: translate(-50%, -50%);

	  @media only screen and (max-width: 768px) {
	    padding: 6px;
	  }

	  &:hover .hotspot__button-content {
	    opacity: 1;
	    visibility: visible;
	    pointer-events: auto;
	  }
	}

	.hotspot__button-content {
	  color: var(--root-color-primary);
	  background-color: var(--root-color-secondary);
	  opacity: 0;
	  visibility: hidden;
	  pointer-events: none;
	  padding: 1rem;
	  position: absolute;
	  top: calc(100% + 1rem);
	  left: 50%;
	  transform: translateX(-50%);
	  transition: opacity 0.3s ease-in-out;
	  min-width: 5rem;
	  border-radius: 5px;
	  box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.2);

	  & p,
	  & span {
	    white-space: nowrap;
	    margin-bottom: 0;
	  }

	  &:before {
	    position: absolute;
	    top: -10px;
	    left: 50%;
	    content: '';
	    width: 0;
	    height: 0;
	    border-style: solid;
	    border-width: 0 5px 10px 5px;
	    transform: translateX(-50%);
	    border-color: transparent transparent var(--root-color-secondary) transparent;
	  }

	  & .content__prices {
	    display: flex;
	    flex-wrap: nowrap;
	  }
	}

	.hotspots__content {
	  width: 30%;
	  padding: 24px;
	  display: flex;
	  align-items: center;

	  .page-width & {
	    padding-right: 0;
	    padding-left: 40px;

	    @media only screen and (max-width: 768px) {
	      padding-left: 0;
	    }
	  }

	  .page-width.is-reverse & {
	    padding-left: 0;
	    padding-right: 40px;

	    @media only screen and (max-width: 768px) {
	      padding-right: 20px;
	    }
	  }

	  @media only screen and (max-width: 768px) {
	    width: 100%;
	    padding: 1rem 20px 0;
	  }
	}

	.hotspot-content__block {
	  display: none;
	  max-height: 0;
	  width: 100%;
	  animation: fade-in 0.5s ease 0s forwards;
	  position: sticky;
	  top: 0;

	  /* animation and position:sticky causes issues in themes where quickshop modal is nested */
	  .modal-open &,
	  .modal-closing & {
	    animation: none;
	    position: static;
	  }

	  @media only screen and (max-width: 768px) {
	    align-items: center;
	    position: relative;
	    padding-top: 0;
	  }

	  &.is-active {
	    display: block;
	    max-height: initial;
	  }

	  & .grid-product__image-wrap {
	    margin: 0;
	  }

	  & .grid__item {
	    display: block;
	    float: none;
	    padding: 0;
	  }

	  & .grid-item__meta,
	  & .grid-product__meta {
	    padding-top: 10px;

	    @media only screen and (max-width: 768px) {
	      display: flex;
	      justify-content: center;
	      flex-direction: column;
	      flex-wrap: wrap;
	      padding-left: 10px;
	      padding-top: 0;
	      text-align: left;

	      & .grid-item__meta-main {
	        width: 100%;
	        flex: none;
	      }
	    }
	  }

	  @media only screen and (max-width: 768px) {
	    & .grid-product {
	      padding-right: 0;
	      padding-left: 0;
	    }

	    & .quick-add-btn {
	      display: none;
	    }

	    /* Class is unique to Impulse */
	    & .grid__item-image-wrapper {
	      display: flex;

	      & .grid-product__image-mask {
	        flex: 0 0 30%;
	      }
	    }

	    & .grid-item__link,
	    & .grid-product__link {
	      display: flex;
	      flex-wrap: nowrap;
	    }

	    /* TODO: Adjust global stylings in grid.css so we don't have to add exceptions like this */
	    & .grid-item__link {
	      [data-grid-style='grey-round'] & {
	        border-radius: 10px 0 0 10px;
	      }

	      [data-grid-style='white-round'] & {
	        border-radius: 10px 0 0 10px;
	      }
	    }

	    & .grid-product__image-mask,
	    & .grid-product__image-wrap,
	    & .product-slider {
	      width: 30%;
	    }

	    & .grid-product__actions {
	      right: initial;
	      left: 10px;
	      top: 10px;
	    }
	  }
	}
/**
	 * This is the stylesheet entrypoint for the image-compare section.
	 * This file and all its inclusions will be processed through esbuild
	 */



	.comparison {
	  position: relative;
	  display: block;
	  width: 100%;
	  background: #222;
	  overflow: hidden;
	}

	.comparison__draggable {
	  position: absolute;
	  top: 0;
	  height: 100%;
	  width: 50%;
	  overflow: hidden;
	  z-index: 2;
	}

	.comparison__image {
	  width: 100%;
	  height: 100%;
	  max-width: none;
	  object-fit: cover;
	  display: block;
	  user-select: none;
	  opacity: 1;
	  animation: none;
	}

	.comparison__image-wrapper {
	  width: 100%;
	  height: 100%;
	}

	.comparison__button {
	  width: 64px;
	  height: 64px;
	  position: absolute;
	  border-radius: 50%;
	  left: 50%;
	  top: 50%;
	  transform: translate(-32px, -50%);
	  cursor: pointer;
	  z-index: 3;
	  display: flex;
	  flex-wrap: nowrap;
	  justify-content: center;
	  align-items: center;
	  border: 3px solid #fff;
	  padding: 0;

	  .comparison--style-minimal & {
	    border: 0;
	    background: transparent;
	    width: auto;
	    transform: translate(-56px, -50%);

	    & svg {
	      margin: 0 20px;

	      @supports (-webkit-touch-callout: none) {
	        position: absolute;

	        &.element-icon-chevron-left {
	          left: 2px;
	          width: 9px;
	        }

	        &.element-icon-chevron-right {
	          right: 2px;
	          width: 9px;
	        }
	      }
	    }
	  }

	  .comparison--style-classic & {
	    @media only screen and (max-width: 768px) {
	      width: 48px;
	      height: 48px;
	      transform: translate(-24px, -50%);
	    }
	  }

	  & svg {
	    width: 12px;
	    height: auto;
	    pointer-events: none;
	    margin: 0 5px;
	  }

	  &::before {
	    content: '';
	    width: 2px;
	    position: absolute;
	    background-color: #fff !important;
	  }

	  &::after {
	    content: '';
	    width: 2px;
	    height: 50%;
	    position: absolute;
	    bottom: 0;
	    left: 50%;
	    transform: translate(-50%, 0);
	    background-color: #fff !important;
	  }
	}
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;

    [data-grid-style*='white'] & {
      background-color: transparent;
    }
  }

  .logo-item__link {
    display: flex;
    inline-size: 100%;
    block-size: 100%;
  }

  .logo-item--grid {
    height: 120px;
  }

  .logo-item--carousel {
    min-width: 200px;
    min-height: 120px;
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  .logo-image {
    width: auto;
    max-width: 100%;
    max-height: var(--size-18);
    object-fit: contain;
    display: block;
  }

  .logo-item--grid .logo-image {
    max-height: 60px;
  }

  .logo-item--carousel .logo-image {
    max-height: 70px;
  }
section-main-content {
	  display: block;
	  padding-block: var(--index-section-padding);
	}
	
	.rte--collection-desc {
	  display: block;
	  padding-block-end: var(--size-9);
	}

  /* Desktop: 4 products per row - Force override */
  @media screen and (min-width: 750px) {
    .product-grid,
    .product-grid[data-view="grid"],
    .collection-grid,
    .new-grid {
      grid-template-columns: repeat(4, 1fr) !important;
    }
  }

  /* Mobile: 2 products per row */
  @media screen and (max-width: 749px) {
    .product-grid,
    .product-grid[data-view="grid"],
    .collection-grid,
    .new-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Hide pagination on mobile */
    .product-grid .pagination-wrapper {
      display: none;
    }
  }
.template-giftcard,
	.template-giftcard body {
	  background: var(--root-color-secondary);
	
	  & a {
	    text-decoration: none;
	  }
	}
	
	.template-giftcard .page-width {
	  max-width: 588px;
	}
	
	.template-giftcard .shop-url {
	  display: none;
	}
	
	.giftcard__border {
	  padding: 1.5em;
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	}
	
	.giftcard__content {
	  background-color: var(--root-color-secondary);
	  color: var(--root-color-primary);
	}
	
	.giftcard__header {
	  padding: calc(var(--gutter) / 2);
	}
	
	.giftcard__title {
	  float: left;
	  margin-bottom: 0;
	}
	
	.giftcard__tag {
	  display: block;
	  float: right;
	  background-color: var(--root-color-primary);
	  border: 1px solid transparent;
	  color: var(--root-color-secondary);
	  padding: calc(var(--gutter) / 3);
	  border-radius: 4px;
	  font-size: 0.75em;
	  text-transform: uppercase;
	  letter-spacing: 0.05em;
	  line-height: 1;
	}
	
	.giftcard__tag--active {
	  background: transparent;
	  color: var(--root-color-primary);
	  border: 1px solid;
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	}
	
	.giftcard__wrap {
	  position: relative;
	  margin: calc(var(--gutter) / 2) calc(var(--gutter) / 2) var(--gutter);
	
	  & img {
	    position: relative;
	    display: block;
	    border-radius: 10px;
	    z-index: 2;
	  }
	}
	
	.giftcard__code {
	  position: absolute;
	  bottom: var(--gutter);
	  text-align: center;
	  width: 100%;
	  z-index: 50;
	}
	
	.giftcard__code--medium {
	  font-size: 0.875em;
	}
	
	.giftcard__code--small {
	  font-size: 0.75em;
	}
	
	.giftcard__code__inner {
	  display: inline-block;
	  vertical-align: baseline;
	  background-color: #fff;
	  padding: 0.5em;
	  border-radius: 4px;
	  max-width: 450px;
	  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
	  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
	
	  .giftcard__code--small & {
	    overflow: auto;
	  }
	}
	
	.giftcard__code__text {
	  font-weight: 400;
	  font-size: 1.875em;
	  text-transform: uppercase;
	  border-radius: 2px;
	  border: 1px dashed;
	  border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	  padding: 0.4em 0.5em;
	  display: inline-block;
	  vertical-align: baseline;
	  color: var(--root-color-primary);
	  line-height: 1;
	
	  .disabled & {
	    color: #999;
	    text-decoration: line-through;
	  }
	}
	
	.giftcard__amount {
	  position: absolute;
	  top: 0;
	  right: 0;
	  color: #fff;
	  font-size: 2.75em;
	  line-height: 1.2;
	  padding: calc(var(--gutter) / 2);
	  z-index: 50;
	
	  & strong {
	    display: block;
	    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
	  }
	}
	
	.giftcard__amount--medium {
	  font-size: 2em;
	}
	
	.tooltip {
	  display: block;
	  position: absolute;
	  top: -50%;
	  right: 50%;
	  margin-top: 16px;
	  z-index: 3;
	  color: #fff;
	  text-align: center;
	  white-space: nowrap;
	
	  &:before {
	    content: '';
	    display: block;
	    position: absolute;
	    left: 100%;
	    bottom: 0;
	    width: 0;
	    height: 0;
	    margin-left: -5px;
	    margin-bottom: -5px;
	    border-left: 8px solid transparent;
	    border-right: 8px solid transparent;
	    border-top: 5px solid #333;
	    border-top: 5px solid rgba(51, 51, 51, 0.9);
	  }
	}
	
	.tooltip__label {
	  display: block;
	  position: relative;
	  right: -50%;
	  border: none;
	  border-radius: 4px;
	  background: #333;
	  background: rgba(51, 51, 51, 0.9);
	  min-height: 14px;
	  font-weight: 400;
	  font-size: 12px;
	  text-decoration: none;
	  line-height: 16px;
	  text-shadow: none;
	  padding: 0.5em 0.75em;
	  margin-left: 0.25em;
	
	  & small {
	    text-transform: uppercase;
	    letter-spacing: 0.1em;
	    color: #b3b3b3;
	    font-size: 0.875em;
	  }
	}
	
	.giftcard__instructions {
	  text-align: center;
	  margin: 0 calc(var(--gutter) / 2) var(--gutter);
	}
	
	.giftcard__actions {
	  position: relative;
	  text-align: center;
	  overflow: hidden;
	  padding-bottom: 1em;
	}
	
	.template-giftcard .action-link {
	  position: absolute;
	  left: calc(var(--gutter) / 2);
	  top: 50%;
	  font-size: 0.875em;
	  font-weight: var(--element-text-font-weight--heading);
	  display: block;
	  padding-top: 4px;
	  text-transform: uppercase;
	  letter-spacing: 0.2em;
	  margin-top: -10px;
	
	  &:hover,
	  &:focus {
	    color: var(--root-color-primary);
	  }
	}
	
	.template-giftcard .action-link__print {
	  display: inline-block;
	  vertical-align: baseline;
	  width: 17px;
	  height: 17px;
	  vertical-align: middle;
	  margin-right: 10px;
	  opacity: 1;
	  background-image: url('/cdn/s/assets/gift-card/icon-print-164daa1ae32d10d1f9b83ac21b6f2c70.png');
	  background-repeat: no-repeat;
	  background-position: 0 0;
	}
	
	.giftcard__footer {
	  text-align: center;
	  padding: calc(var(--gutter) * 2) 0;
	}
	
	#QrCode {
	  & img {
	    padding: var(--gutter);
	    border: 1px solid;
	    border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
	    border-radius: 4px;
	    margin: 0 auto var(--gutter);
	  }
	}
	
	@media only screen and (max-width: 768px) {
	  .giftcard {
	    font-size: 12px;
	  }
	
	  .giftcard-header {
	    padding: var(--gutter) 0;
	  }
	
	  .header-logo {
	    font-size: 2em;
	  }
	
	  .giftcard__border {
	    padding: calc(var(--gutter) / 2);
	  }
	
	  .giftcard__actions {
	    padding: calc(var(--gutter) / 2);
	  }
	
	  .giftcard__actions .btn {
	    width: 100%;
	    padding-left: 0;
	    padding-right: 0;
	  }
	
	  .template-giftcard .action-link {
	    display: none;
	  }
	}
	
	/*================ Small width ================*/
	@media screen and (max-width: 400px) {
	  .giftcard__amount strong {
	    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
	  }
	
	  .giftcard__wrap:before,
	  .giftcard__wrap:after {
	    display: none;
	  }
	
	  .giftcard__code {
	    font-size: 0.75em;
	  }
	
	  .giftcard__code--medium {
	    font-size: 0.65em;
	  }
	
	  .giftcard__code--small {
	    font-size: 0.55em;
	  }
	}
	
	/*================ Small height ================*/
	@media screen and (max-height: 800px) {
	  .header-logo img {
	    max-height: 90px;
	  }
	}
	
	@media print {
	  @page {
	    margin: 0.5cm;
	  }
	
	  p,
	  h2,
	  h3 {
	    orphans: 3;
	    widows: 3;
	  }
	
	  h2,
	  h3 {
	    page-break-after: avoid;
	  }
	
	  html,
	  body {
	    background-color: #fff;
	  }
	
	  .giftcard-header {
	    padding: 10px 0;
	  }
	
	  .giftcard__content,
	  .giftcard__border {
	    border: 0 none;
	  }
	
	  .site-header__logo-link img:nth-child(2),
	  .giftcard__actions,
	  .giftcard__wrap:before,
	  .giftcard__wrap:after,
	  .tooltip,
	  .add-to-apple-wallet {
	    display: none;
	  }
	
	  .giftcard__title {
	    float: none;
	    text-align: center;
	  }
	
	  .giftcard__code__text {
	    color: #555;
	  }
	
	  .template-giftcard .shop-url {
	    display: block;
	  }
	
	  .template-giftcard .logo {
	    color: #58686f;
	  }
	}
section-main-search {
    display: block;
  }

  .main-search__content {
    padding-top: 5px;

    @media only screen and (min-width: 769px) {
      padding-top: 60px;
    }
  }

  .search-bar {
    max-width: 100%;
  }

  .search-bar--page {
    max-width: 300px;
    margin-top: calc(var(--gutter) / -2);
  }

  .search-bar .element-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
  }
.map-section {
	  display: block;
	  position: relative;
	  height: 650px;
	  width: 100%;
	  overflow: hidden;

	  @media only screen and (min-width: 769px) {
	    height: 500px;
	  }
	}

	.map-section:not(.map-section--no-overlay) {
	  display: grid;

	  .map-section__content:is(:not([class*='color-scheme-'])) {
	    background-color: var(--root-color-secondary);
	    color: var(--root-color-primary);
	  }

	  .content-over-media {
	    @media only screen and (max-width: 768px) {
	      --content-over-media-column-gap: 20px;
	      --content-over-media-row-gap: 20px;

	      .content-over-media__content {
	        width: 100%;
	      }

	      .map-section__content {
	        max-width: none;
	      }
	    }
	  }
	}

	.map-section--no-overlay {
	  @media only screen and (max-width: 768px) {
	    height: auto;

	    & .map-section__content {
	      max-width: none;
	    }
	  }

	  @media only screen and (min-width: 769px) {
	    display: flex;

	    & .map-section__content {
	      min-width: 380px;
	      align-content: center;
	    }
	  }
	}

	.map-section__map {
	  position: relative;
	  width: 100%;

	  @media only screen and (max-width: 768px) {
	    aspect-ratio: 5 / 4;
	  }
	}

	.map-section__content {
	  padding: var(--gutter);
	  max-width: 380px;
	  overflow: hidden;

	  .map-section:not(.map-section--no-overlay) & {
	    border-radius: var(--roundness);
	  }

	  .map-section--no-overlay & {
	    padding: var(--size-8);

	    &[layout='right'] {
	      order: 1;
	    }

	    @media only screen and (min-width: 769px) {
	      padding: var(--size-8) var(--size-12);
	    }
	  }
	}
.modal--mobile-friendly.modal--square .newsletter--has-image.modal__centered-content--padded {
	  padding: 0;
	
	  @media only screen and (max-width: 768px) {
	    padding: 0;
	  }
	
	  & .newsletter-popup {
	    display: flex;
	    max-width: 800px;
	    min-width: 650px;
	
	    @media only screen and (max-width: 768px) {
	      max-width: none;
	      min-width: 0;
	    }
	
	    &.newsletter-popup--image-reversed {
	      flex-direction: row-reverse;
	    }
	  }
	
	  & .newsletter-popup__image-wrapper {
	    position: relative;
	    width: 50%;
	
	    @media only screen and (max-width: 768px) {
	      display: none;
	    }
	  }
	
	  & .newsletter-popup__image {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    position: absolute;
	  }
	
	  & .newsletter-popup__content {
	    --element-input-width: 100%;
	
	    padding: 40px;
	    width: 50%;
	
	    @media only screen and (max-width: 768px) {
	      padding: 40px;
	      width: 100%;
	    }
	  }
	}
	
	.newsletter-popup {
	  position: relative;
	  margin: 0 auto;
	  max-width: 520px;
	}
.newsletter-section .errors {
	  margin-left: auto;
	  margin-right: auto;
	  max-width: 520px;
	}

	.newsletter-container {
	  margin: 0 auto !important;
	  padding: 0 !important;
	}

	.newsletter-section {
    position: relative;
	  display: flex;
	  gap: 40px;
	  align-items: center;
	  padding: var(--index-section-padding) 0;

	  @media only screen and (max-width: 768px) {
	    flex-direction: column;
	    padding: 30px 0;
	  }
	}

	.newsletter-section--image-left {
	  flex-direction: row-reverse;

	  @media only screen and (max-width: 768px) {
	    flex-direction: column-reverse;
	  }
	}

	.newsletter-section__content {
	  flex: 100%;
	  max-width: 800px;
	  margin: 0 auto;

	  .newsletter-section--no-image & {
	    flex: 100%;
	  }

	  & form {
	    display: flex;
	    width: 100%;

	    .text-left & {
	      justify-content: flex-start;
	    }

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

	    .text-right & {
	      justify-content: flex-end;
	    }
	  }

	  & .newsletter__input-group {
	    margin: 0;
	  }

	  &:last-child .social-sharing {
	    margin-block-end: 0;
	  }
	}

	.newsletter-section__image {
	  width: 100%;

	  & img {
	    opacity: 1;
	    animation: none;
	    display: block;
	    margin: 0 auto;
	    object-fit: cover;
	    height: auto;
	  }
	}

	.newsletter-section__image--33 {
	  flex: 33.333% 0 0;
	}

	.newsletter-section__image--50 {
	  flex: 50% 0 0;

	  @media only screen and (max-width: 768px) {
	    max-width: 100%;
	  }
	}

	.newsletter-section__image--66 {
	  flex: 66.666% 0 0;

	  @media only screen and (max-width: 768px) {
	    max-width: 100%;
	  }
	}
.password__toolbar,
	.password__header {
	  color: var(--color-primary);
	  background: var(--color-secondary);
	}
	
	.password__toolbar {
	  padding-block: var(--size-1-5);
	}
	
	.password__header {
	  padding-block: var(--size-3);
	
	  & h1 {
	    margin-bottom: 0;
	    line-height: 0;
	  }
	}
	
	#LoginModal .modal__inner {
	  padding: var(--size-12) var(--size-12) var(--size-2-5);
	}
	
	.element-icon-shopify-logo {
	  --element-icon-width: 60px;
	  --element-icon-height: 20px;
	}
:root {
    --z-index-promo-tint: 2;
    --z-index-promo-color-overlay: 3;
    --z-index-promo-text: 3;
    --z-index-promo-content: 4;
    --z-index-promo-link: 5;
  }

  .promo-grid--space-top {
    padding-top: var(--index-section-padding);
  }

  .promo-grid--space-bottom {
    padding-bottom: var(--index-section-padding);
  }

  .promo-grid--hidden-block-images {
    @media only screen and (max-width: 768px) {
      .flex-grid__item.type-image {
        display: none;
      }
    }
  }

  .promo-grid__container {
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    border-radius: var(--roundness);
    overflow: hidden;

    &.horizontal-center {
      justify-content: center;
      text-align: center;

      & .btn {
        margin: 2px 5px;
      }
    }

    &.horizontal-left {
      & .btn {
        margin-right: 10px;
      }
    }

    &.horizontal-right {
      justify-content: flex-end;
      text-align: right;

      & .btn {
        margin-left: 10px;
      }
    }

    & .scheme-image {
      border-radius: calc(var(--roundness) + 2px);
    }
  }

  .promo-grid__slide-link {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--z-index-promo-link);

    &:hover {
      & ~ .promo-grid__content .btn:not(.btn--secondary):not(.btn--inverse) {
        background: var(--color-button-primary-light);
        transition-delay: 0.25s;
      }
    }
  }

  .promo-grid__content {
    flex: 0 1 auto;
    padding: 2em 2.5em; /*Relative to text-size*/
    position: relative;
    min-width: 200px;
    z-index: var(--z-index-promo-content);

    & p:last-child {
      margin-bottom: 0;
    }

    .vertical-top & {
      align-self: flex-start;
    }

    .vertical-center & {
      align-self: center;
    }

    .vertical-bottom & {
      align-self: flex-end;
    }
  }

  .video-interactable .promo-grid__content {
    pointer-events: none;
  }

  .type-advanced,
  .type-product,
  .type-sale_collection {
    & .rte--strong {
      line-height: 1.1;
    }

    & .rte--em {
      font: inherit;
      text-transform: lowercase;
      font-weight: bold;
    }
  }

  .type-advanced,
  .type-product {
    & .rte--strong {
      font-size: 1.8em;
      line-height: 1.1;
    }
  }

  @media only screen and (min-width: 769px) {
    .type-advanced,
    .type-product {
      & .rte--strong {
        font-size: 2.25em;
      }
    }

    .type-product {
      &.flex-grid__item--50,
      &.flex-grid__item--33 {
        & .rte--strong {
          font-size: 1.6em;
        }
      }
    }
  }

  .promo-grid__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;

    & .element-placeholder {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      max-width: none;
      width: auto;
      padding: 0;
    }
  }

  .video-interactable .promo-grid__bg:before {
    pointer-events: none;
  }

  .promo-grid__bg-image {
    z-index: var(--z-index-hero-image);
  }

  .promo-grid__text {
    position: relative;

    & .btn {
      margin-top: 2px;
      margin-bottom: 2px;
    }
  }

  /*Size adjustments when items 50% width*/
  @media only screen and (min-width: 769px) {
    .promo-grid > .flex-grid > .flex-grid__item--50 {
      & .enlarge-text {
        font-size: calc(var(--element-text-font-size--body-md) + 2px);
      }

      & .btn {
        padding: 9px 16px;
        font-size: calc(var(--element-text-font-size--body-md) + 1px);
      }
    }
  }

  /* ======================= Type: Advanced ===================== */
  .type-advanced {
    --z-index-overlay: -1;
    & .promo-grid__content {
      flex: 1 1 auto;
      padding: 7%;
    }

    & .rte--block {
      color: #fff;
      text-shadow: 0 2px 3px rgb(0 0 0 / 20%);
    }

    & .btn {
      margin-bottom: 10px;

      @media only screen and (max-width: 768px) {
        margin-bottom: 7px;
      }
    }

    & .promo-grid__content:after {
      background: radial-gradient(rgba(0, 0, 0, 0.3) 0%, transparent 60%);
      margin: -100px -200px -100px -200px;
    }
  }

  .type-advanced .horizontal-center .rte--block {
    padding: 0 10%;
  }

  .type-advanced .horizontal-left .rte--block {
    padding: 0 20% 0 0;
  }

  .type-advanced .horizontal-right .rte--block {
    padding: 0 0 0 20%;
  }

  /* ======================= Type: Sale Collection ===================== */
  .type-sale_collection {
    max-height: 600px;

    & .promo-grid__container {
      align-items: center;
    }

    & .promo-grid__content {
      padding: 0;
      margin: 7%;
      flex: 0 1 auto;
      min-width: 0;

      @media only screen and (max-width: 768px) {
        font-size: 0.9em;
      }

      @media only screen and (min-width: 769px) {
        &:not(.promo-grid__content--small-text) {
          font-size: 1.5em;
        }
      }
    }

    /*Custom typography styles*/
    & .rte--block {
      margin-bottom: 7.5px;

      &:last-child {
        margin-bottom: 0;
      }
    }

    & .rte--strong {
      position: relative;
      display: block;
      font-size: 6.5em;
      line-height: 1;
      white-space: nowrap;
      text-align: left;

      @media only screen and (max-width: 768px) {
        font-size: 6em;
      }

      & sup {
        font-size: 0.5em;
        top: -0.3em;
      }
    }

    & .rte--em,
    & .enlarge-text {
      text-align: left;
      padding-left: 8px;

      @media only screen and (max-width: 768px) {
        padding-left: 4px;
      }
    }

    /*Custom type layout for "off" when following "%"*/
    & small {
      display: inline;
      font-size: 0.4em;
      margin-left: -1.7em;
      letter-spacing: 0;
    }
  }

  .type-sale-images {
    flex: 1 1 50%;
    margin: 7% 7% 7% 3%;

    & svg {
      display: block;
    }
  }

  .type-sale-images__crop {
    overflow: hidden;
    width: 100%;
  }

  /* ======================= Type: Simple ===================== */
  .type-simple {
    --z-index-overlay: 1;
    & .promo-grid__content {
      align-self: flex-end;
      padding: calc(var(--gutter) / 1);
      @media only screen and (max-width: 768px) {
        padding: calc(var(--gutter) / 2);
      }
    }

    & .promo-grid__text {
      color: #fff;
    }

    & .promo-grid__bg:after {
      background: linear-gradient(15deg, rgba(0, 0, 0, 0.6), transparent 40%);
    }
  }

  .promo-grid__title:last-child {
    margin-bottom: 0;
  }

  /* ======================= Type: Image ===================== */
  .type-image {
    & .promo-grid__container {
      background: none;
    }

    & img,
    & a,
    & .image-wrap {
      width: 100%;
    }
  }

  /*================ Type: Banner ================*/
  .type-banner {
    & p {
      margin: 7px;
      display: inline-block;
      vertical-align: middle;
      line-height: 1.2;
    }
  }

  .type-banner__link {
    display: block;
    flex: 1 1 100%;
  }

  .type-banner__content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
  }

  .type-banner__text {
    flex: 0 1 auto;
    padding: 12px;
    display: flex;
    align-items: center;

    @media only screen and (max-width: 959px) {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  .type-banner h2 {
    margin: 10px;
  }

  @media only screen and (min-width: 769px) {
    .type-banner__text {
      padding: 20px;
    }
  }

  /*================ Type: Product ================*/
  .type-product__wrapper {
    flex: 1 1 100%;
    align-self: center;
    position: relative;
    padding: 2em 0;
    z-index: var(--z-index-promo-content);
  }

  .promo-grid__product {
    display: flex;
    align-items: center;

    .flex-grid__item--25 & {
      @media only screen and (min-width: 769px) {
        flex-direction: column-reverse;
      }
    }
  }

  .type-product__text {
    flex: 1 1 40%;
  }

  .promo-grid__product-images {
    position: relative;
    flex: 1 1 60%;

    @media only screen and (max-width: 768px) {
      padding-left: 1em;
      padding-right: 1em;
    }

    .flex-grid__item--25 & {
      @media only screen and (min-width: 769px) {
        width: 100%;
        margin: 0;
      }
    }
  }

  .promo-grid__product-text,
  .promo-grid__product-images {
    margin: 6%;
  }

  .promo-grid__product-images {
    margin-left: 0;
  }

  .type-product__image {
    position: relative;

    &:first-child {
      width: 100%;
    }

    &:nth-child(2) {
      position: absolute;
      bottom: 40px;
      right: 0;
      width: 100%;
      max-width: 40%;
    }
  }

  @media only screen and (max-width: 768px) {
    .promo-grid__product {
      flex-wrap: wrap;
    }

    .promo-grid__product-text,
    .promo-grid__product-images {
      margin: 3%;
    }

    .promo-grid__product-text {
      order: 2;
    }
  }

  .type-product__labels {
    z-index: var(--z-index-promo-text);
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-bottom: 2em;

    @media only screen and (min-width: 769px) {
      justify-content: flex-start;

      & .flex-grid__item--50,
      & .flex-grid__item--33 {
        font-size: 0.9em;
      }
    }
  }

  .flex-grid {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 100%;

    [data-center-text='true'] & {
      justify-content: center;
    }
  }

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

  .flex-grid--gutters {
    margin-top: calc(var(--gutter) / -2);
    margin-left: calc(var(--gutter) / -2);
  }

  .flex-grid__item {
    flex: 0 1 100%;
    display: flex;
    align-items: stretch;

    .flex-grid--gutters & {
      padding-top: calc(var(--gutter) / 2);
      padding-left: calc(var(--gutter) / 2);
    }

    & > * {
      flex: 1 1 100%;
    }
  }

  .flex-grid__item--stretch {
    flex: 1 1 100%;
  }

  /*Flex grid sizing from theme settings*/
  @media only screen and (min-width: 769px) {
    .flex-grid__item--25 {
      flex-basis: 25%;
    }

    .flex-grid__item--33 {
      flex-basis: 33.33%;
    }

    .flex-grid__item--50 {
      flex-basis: 50%;
    }

    .flex-grid__item--66 {
      flex-basis: 66.66%;
    }

    .flex-grid__item--75 {
      flex-basis: 75%;
    }
  }

  .background-media-text__video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;

    @media only screen and (max-width: 768px) {
      width: 300%;
      left: -100%;
    }

    & iframe,
    & video {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      pointer-events: none;

      @media only screen and (min-width: 769px) {
        height: 120%;
        max-width: none;
        left: -100%;
        height: 150%;
        width: 300%;
      }

      /*This min-width may need to change slightly depending on
	    embedded video dimensions. Can do on a per-shop basis*/
      @media screen and (min-width: 1140px) {
        width: 100%;
        height: 300%;
        left: auto;
        top: -100%;
      }
    }
  }

  .video-interactable .background-media-text__video {
    & iframe,
    & video {
      pointer-events: auto;
    }
  }

  .loaded {
    & .background-media-text__video {
      animation: zoom-fade 1s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
      transition: none;
    }
  }

  @media only screen and (min-width: 769px) {
    .background-media-text--450 .background-media-text__video {
      min-height: 450px;
    }

    .background-media-text--550 .background-media-text__video {
      min-height: 550px;
    }

    .background-media-text--650 .background-media-text__video {
      min-height: 650px;
    }

    .background-media-text--750 .background-media-text__video {
      min-height: 750px;
    }

    .background-media-text__video {
      opacity: 0;
    }
  }
.rich-text-section .background-svg--wave {
	  & .page-width {
	    @media only screen and (min-width: 769px) {
	      padding-bottom: 20px;
	    }
	  }
	}
.scrolling-text {
    font-size: var(--_font-size);
  }
.results {
    padding: 0 20px 20px;
    display: block;
    width: 100%;

    & ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    & li {
      transition: background 0.2s ease;
      padding: 10px;
      margin-bottom: 0;

      &:hover {
        background: rgba(0, 0, 0, 0.05);
      }

      & a {
        display: flex;
        align-items: center;
      }
    }
  }

  .results--queries {
    & span {
      font-weight: bolder;
    }

    & mark {
      background-color: transparent;
      font-weight: normal;
    }
  }

  .results-products__info > span {
    margin-left: 10px;
  }

  .results--products #predictive-search-products {
    margin-bottom: 20px;
  }

  .results-products__image {
    width: 100%;
    min-width: 80px;
    max-width: 80px;
    height: 80px;
  }

  .results-products__info {
    display: flex;
    flex-direction: column;
  }

  .predictive-search-results {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    overflow-y: auto;
    padding: 40px 0 0;

    & h3 {
      padding-bottom: 10px;
      border-bottom: 1px solid;
      border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));
      margin-bottom: 10px;
    }
  }

  .predictive-search-results--none {
    padding-top: 20px;
  }

  .predictive-search__no-results {
    display: block;
    width: 100%;

    &:hover {
      opacity: 0.5;
    }
  }

  .results__group-1 {
    flex: 100% 0 0;

    & > div:not(.results--queries) {
      display: none;
    }
  }

  .results__group-2 {
    flex: 100% 0 0;
  }

  .results__search-btn {
    width: 100%;
    padding: 10px;
    transition: background-color 0.2s ease;
    border: 1px solid;
    border-color: color-mix(in srgb, var(--color-primary) var(--shade-12), var(--color-secondary));

    &:hover {
      background-color: rgba(0, 0, 0, 0.05);
    }

    & .element-icon {
      width: 14px;
      height: 14px;
    }
  }

  @container (min-width: 800px) {
    .predictive-search-results {
      flex-direction: row;
      flex-wrap: nowrap;
    }

    .results {
      padding: 0 40px 20px;
    }

    .results__group-1 {
      flex: 1 0 0;

      & div:not(.results--queries) {
        display: block;
      }
    }

    .results__group-2 {
      flex: 2 0 0;

      & > div:not(.results--products) {
        display: none;
      }
    }

    .results__search-btn {
      text-align: left;
      padding: 10px 0 10px 40px;
    }
  }
/* Hero side by side layout */
	.hero__sidebyside {
	  height: 100%;
	  display: flex;
	
	  &.color-scheme-none {
	    background-color: var(--root-color-secondary);
	    color: var(--root-color-primary);
	  }
	}
	
	.hero__sidebyside-content {
	  position: relative;
    z-index: 1;
	}
	
	.hero__sidebyside-content-inner {
	  align-self: center;
	  flex: 1;
	  padding: 30px;
	}
	
	.hero__sidebyside-image {
	  overflow: hidden;
    z-index: 1;
	}
	
	.hero__sidebyside-image-link {
	  display: block;
	  height: 100%;
	}
	
	.hero__sidebyside-image--indented {
	  & .hero__image {
	    padding: 30px 30px 0;
	    object-fit: contain;
	  }
	
	  & .element-placeholder {
	    margin: 30px 30px 0;
	    height: calc(100% - 60px);
	    width: calc(100% - 60px);
	  }
	}
	
	@media only screen and (max-width: 768px) {
	  .hero__sidebyside {
	    flex-direction: column;
	  }
	
	  .hero__sidebyside-image {
	    position: relative;
	    flex: 1 1 auto;
	
	    & .hero__image,
	    & .element-placeholder {
	      position: absolute;
	      top: 0;
	      left: 0;
	    }
	  }
	
	  .hero__sidebyside-content {
	    flex: 0 1 auto;
	    display: flex;
	    order: 2;
	  }
	}
	
	@media only screen and (min-width: 769px) {
	  .hero__sidebyside-content {
	    flex: 1 1 auto;
	    display: flex;
	    max-width: 40%;
	  }
	
	  .hero__sidebyside-content-inner {
	    padding: 5vw;
	  }
	
	  .hero__sidebyside-text--right {
	    & .hero__sidebyside-content {
	      order: 2;
	    }
	  }
	
	  .hero__sidebyside-content-inner--indented {
	    .hero__sidebyside-text--left & {
	      padding-right: 0;
	    }
	
	    .hero__sidebyside-text--right & {
	      padding-left: 0;
	    }
	
	    [dir='rtl'] .hero__sidebyside-text--left & {
	      padding-right: 5vw;
	      padding-left: 0;
	    }
	
	    [dir='rtl'] .hero__sidebyside-text--right & {
	      padding-left: 5vw;
	      padding-right: 0;
	    }
	  }
	
	  .hero__sidebyside-image {
	    flex: 0 1 60%;
	  }
	
	  .hero__sidebyside-image--indented {
	    & .hero__image {
	      padding: 80px;
	      object-position: center right;
	    }
	  }
	
	  .hero__sidebyside-text--right .hero__sidebyside-image--indented .hero__image {
	    object-position: center left;
	  }
	}
.hero__image-wrapper--no-overlay:before {
    content: none;
  }
.store-availability {
	  display: flex;
	  justify-content: space-around;
	
	  & .element-icon {
	    margin: 6px 0 0;
	    width: 12px;
	    height: 12px;
	  }
	
	  & .element-icon-in-stock {
	    fill: var(--success-green);
	  }
	
	  & .element-icon-out-of-stock {
	    fill: var(--color-error);
	  }
	
	  & + .store-availability {
	    margin-top: 20px;
	  }
	}
	
	.store-availability__info {
	  flex: 0 1 90%;
	  text-align: left;
	  margin-left: 10px;
	
	  & > div {
	    margin-bottom: 5px;
	
	    &:last-child {
	      margin-bottom: 0;
	    }
	  }
	
	  & a {
	    text-decoration: underline;
	  }
	}
	
	.store-availability__small {
	  font-size: 0.8em;
	
	  & a {
	    display: block;
	    margin-top: 10px;
	  }
	}
	
	.store-availability__small--link {
	  .quick-shop-modal & {
	    display: none;
	  }
	}
.quote-icon {
    display: block;
  }

  .testimonial-stars {
    display: block;
    font-size: 16px;
    letter-spacing: 0.2em;

    @media only screen and (min-width: 769px) {
      font-size: 18px;
    }
  }

  .testimonials-slide {
    display: none;
    opacity: 0;
    padding: 0 0 55px;
    width: var(--testimonial-slide-width);

    /*Hide all but first slide to prevent page reflows prior to init*/
    &:first-child {
      display: block;
    }

    .flickity-slider & {
      display: block;
      opacity: 1;
    }

    & .testimonials-slider__text {
      transform: scale(0.95);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      background: inherit;
      color: inherit;
    }

    &.is-selected .testimonials-slider__text {
      transform: scale(1.1);
      box-shadow: var(--testimonial-box-shadow);
      position: relative;
      z-index: 10;
    }

    /* Remove box-shadow when section has an image */
    .testimonials-section--with-image &.is-selected .testimonials-slider__text {
      box-shadow: none;
    }

    @media only screen and (max-width: 768px) {
      & {
        width: 100%;
        padding: 0 0 25px;
      }

      & .testimonials-slider__text {
        transform: scale(0.86);
      }

      &.is-selected .testimonials-slider__text {
        transform: scale(1);
        box-shadow: none;
      }
    }
  }

  .testimonials-slider__text {
    padding: 30px calc(var(--gutter) / 2);
    background: var(--root-color-secondary);
    color: var(--root-color-primary);

    @media only screen and (min-width: 769px) {
      margin: 0;
      padding: 30px;
    }

    & cite {
      font-style: normal;
    }
  }

  .testimonials-slider:focus-visible .flickity-page-dots {
    outline: 3px solid var(--color-focus);
  }

  :root {
    --testimonial-image-size: var(--size-14);
    --testimonial-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --testimonial-image-radius: 0;
    --testimonial-slide-width: 33%;
    --testimonial-slideshow-max-width: none;
  }

  .testimonial-image {
    width: var(--testimonial-image-size);
    height: var(--testimonial-image-size);
    aspect-ratio: 1 / 1;

    .text-right & {
      margin-left: auto;
    }

    & .image-wrap {
      background: none;
      width: 100%;
      height: 100%;

      img {
        border-radius: var(--testimonial-image-radius);
        height: 100%;
      }
    }
  }

  .testimonial-image--round {
    --testimonial-image-radius: var(--radius-full);
  }

  .testimonials-section {
    display: block;
    padding: var(--index-section-padding) 0;
    overflow: hidden;
  }

  .testimonials-section .flickity-page-dots {
    bottom: 0;
    margin: 0;
    left: 0;
    right: 0;
    width: auto;
  }

  .testimonials-section.text-left .flickity-page-dots {
    text-align: left;
  }

  .testimonials-section.text-right .flickity-page-dots {
    text-align: right;
  }

  .testimonials-section.text-center .flickity-page-dots {
    text-align: center;
  }

  .testimonials-section__inner {
    width: 100%;
  }

  .testimonials-section__inner > [data-image-type] {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;

    img {
      object-fit: cover;
    }
  }

  .testimonials-section__image--square {
    aspect-ratio: 1 / 1;
  }

  .testimonials-section__image--portrait {
    aspect-ratio: 3 / 4;
  }

  .testimonials-section__image--landscape {
    aspect-ratio: 4 / 3;
  }

  @media only screen and (max-width: 768px) {
    .testimonials-slide .testimonials-slider__text {
      margin-left: 0;
      margin-right: 0;
    }

    .testimonials-section.text-left .testimonials-section__inner > [data-image-type] {
      margin-left: var(--page-width-padding);
      margin-right: auto;
    }

    .testimonials-section.text-right .testimonials-section__inner > [data-image-type] {
      margin-left: auto;
      margin-right: var(--page-width-padding);
    }

    .testimonials-section .flickity-page-dots {
      margin-left: var(--page-width-padding);
      margin-right: var(--page-width-padding);
    }
  }

  @media only screen and (min-width: 769px) {
    .testimonials-section__inner {
      max-width: var(--page-width);
      margin: 0 auto;
      padding: 0 var(--page-width-padding);
    }

    .testimonials-section__slideshow {
      position: relative;
    }

    .testimonials-section .flickity-page-dots {
      left: auto;
      right: auto;
      width: 100%;
    }

    .testimonials-section--with-image .testimonials-section__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
    }

    .testimonials-section--with-image.testimonials-section--layout-image_right .testimonials-section__inner {
      grid-template-areas: 'slideshow image';
    }

    .testimonials-section--with-image.testimonials-section--layout-image_left .testimonials-section__inner {
      grid-template-areas: 'image slideshow';
    }

    .testimonials-section--with-title.testimonials-section--with-image.testimonials-section--layout-image_right
      .testimonials-section__inner {
      grid-template-areas:
        'header image'
        'slideshow image';
    }

    .testimonials-section--with-title.testimonials-section--with-image.testimonials-section--layout-image_left
      .testimonials-section__inner {
      grid-template-areas:
        'image header'
        'image slideshow';
    }

    .testimonials-section__header {
      grid-area: header;
      align-self: end;
      padding: 0;
      width: 100%;
      max-width: 600px;
    }

    .testimonials-section__inner > [data-image-type] {
      grid-area: image;
      width: 80%;
    }

    .testimonials-section__slideshow {
      margin-left: auto;
      margin-right: auto;
      max-width: var(--testimonial-slideshow-max-width);
    }

    .testimonials-section--with-image .testimonials-section__slideshow {
      grid-area: slideshow;
      align-self: center;
      width: 100%;
    }

    .testimonials-section--with-title .testimonials-section__slideshow {
      align-self: start;
    }

    .testimonials-section .testimonials__author .testimonial-image {
      margin: 0;
    }
  }
.feature-row-wrapper {
	  overflow: hidden;
	  direction: ltr;
	}
	
	.feature-row {
	  margin: 0 auto;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	
	  @media (--widescreen) {
	    margin: 0 6%;
	  }
	
	  @media only screen and (max-width: 768px) {
	    flex-direction: column;
	    margin: 0;
	  }
	}
	
	@media only screen and (max-width: 959px) {
	  .feature-row--small-none {
	    display: block;
	  }
	}
	
	.feature-row__item {
	  flex: 0 1 57%;
	  margin: 0 auto;
	
	  @media only screen and (max-width: 768px) {
	    flex: 1 1 auto;
	    max-width: 100%;
	    min-width: 100%;
	  }
	}
	
	.feature-row__image {
	  display: block;
	  margin: 0 auto;
	  order: 1;
	
	  @media only screen and (min-width: 769px) {
	    order: 2;
	  }
	}
	
	.feature-row__text {
	  padding: 0;
	
	  @media only screen and (max-width: 768px) {
	    order: 2;
	    margin-top: 0;
	    padding: 30px 20px 0;
	    padding-bottom: 0; /*always last element on mobile*/
	  }
	
	  & .rte {
	    margin: 0;
	  }
	
	  & .element-button {
	    margin-top: calc(var(--gutter) / 2);
	  }
	}
	
	@media only screen and (min-width: 769px) {
	  .feature-row__text--left {
	    padding-left: calc(var(--gutter) * 2);
	    padding-right: 20px;
	  }
	
	  .feature-row__text--right {
	    padding-right: calc(var(--gutter) * 2);
	    padding-left: 20px;
	  }
	}
	
	.feature-row__item--overlap-images {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 0 0 15px;
	  margin: 0 0 0 -30px;
	
	  @media only screen and (min-width: 769px) {
	    padding: 50px 0;
	    margin: 0 auto;
	  }
	
	  & > *:first-child {
	    z-index: 1;
	    transform: translate(30px, 30px);
	
	    @media only screen and (min-width: 769px) {
	      transform: translate(50px, 50px);
	    }
	  }
	
	  & svg {
	    border: 2px solid;
	    border-color: var(--root-color-secondary);
	  }
	}
	
	.feature-row__item--overlap-images {
	  & .feature-row__first-image {
	    width: 55%;
	  }
	
	  & .feature-row__second-image {
	    width: 60%;
	  }
	}
	
	.feature-row__item--placeholder-images {
	  & .placeholder-image-wrap {
	    width: 50%;
	  }
	}
	
	.feature-row-wrapper .feature-row__images {
	  width: 100%;
	  min-width: 0;
	
	  @media only screen and (max-width: 959px) {
	    padding-top: 30px;
	  }
	}
	
	.feature-row-wrapper .feature-row__text {
	  width: 100%;
	  min-width: 0;
	
	  @media only screen and (min-width: 769px) {
	    min-width: 43%;
	    flex: 0 1 43%;
	  }
	}
	
	.feature-row--33 {
	  & .feature-row__images {
	    max-width: 50%;
	
	    @media only screen and (min-width: 769px) {
	      max-width: none;
	      flex: 0 1 33.333%;
	    }
	  }
	}
	
	.feature-row--50 {
	  & .feature-row__images {
	    max-width: 100%;
	    padding-right: 20px;
	    padding-left: 20px;
	
	    @media only screen and (min-width: 769px) {
	      max-width: none;
	      flex: 0 1 50%;
	      padding-right: 0;
	      padding-left: 0;
	    }
	  }
	}
	
	.feature-row--66 {
	  & .feature-row__images {
	    max-width: 100%;
	    padding-right: 20px;
	    padding-left: 20px;
	
	    @media only screen and (min-width: 769px) {
	      max-width: none;
	      flex: 0 1 66.666%;
	      padding-right: 0;
	      padding-left: 0;
	    }
	  }
	}
/* Shared styles */
  .text-with-icons__blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -30px;
    margin-right: -30px;

    @media only screen and (max-width: 768px) {
      flex-direction: column;
      margin: 0;
    }
  }

  .has-1-per-row .text-with-icons__block {
    width: 100%;
  }

  .has-2-per-row .text-with-icons__block {
    width: 50%;
  }

  .has-3-per-row .text-with-icons__block {
    width: 33.333%;
  }

  .has-4-per-row .text-with-icons__block {
    width: 25%;
  }

  .has-5-per-row .text-with-icons__block {
    width: 20%;
  }

  .text-with-icons__blocks .text-with-icons__block {
    display: flex;
    flex-direction: column;
    flex: none;
    padding: 30px;

    @media only screen and (max-width: 768px) {
      width: 100%;
      padding: 0 0 60px;
    }
  }

  .text-with-icons__block-icon {
    display: block;
    margin-bottom: 10px;

    & .element-icon {
      width: 70px;
      height: 70px;

      @media only screen and (max-width: 768px) {
        width: 60px;
        height: 60px;
      }
    }
  }

  .text-with-icons__button {
    display: flex;
    justify-content: center;
  }

  /* Expanse specific styles */
  .text-with-icons {
    margin-bottom: -22px;
  }

  .text-with-icons__blocks .text-with-icons__block {
    padding: 0 22px 22px;

    @media only screen and (max-width: 768px) {
      padding: 0 0 22px;
    }
  }

  .text-with-icons__button {
    padding-bottom: 20px;
  }
:root {
	  --announcement-animation-speed: 0.5s;
	}
	
.announcement-bar {
  position: relative;
  width: 100vw;            
  left: 50%;               
  margin-left: -50vw;      
  background-color: #1fa79a; 
  color: #ffffff;          /* All text inside the announcement bar is white */
  text-align: center;
  padding: 12px 0;         
  font-size: 18px;          
  font-weight: bold;        
  box-sizing: border-box;
  z-index: 20;



  a {
    color: #ffffff; /* ✅ White links */
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

html, body {
  overflow-x: hidden; /* Prevent horizontal scroll */
}
	
.announcement-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.announcement-slider__slide.is-selected {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.announcement-slider__content {
  transform: none;

  & p {
    margin: 0;
  }

  & a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #ffffff;
  }
}
@media only screen and (max-width: 768px) {
  .announcement-bar {
    font-size: 12px;  /* smaller text */
    padding: 6px 0;   /* smaller vertical padding */
  }
}
}
.toolbar {
	  position: relative;
	  font-size: calc(var(--element-text-font-size--body-md) * 0.85);
	
	  .is-light & {
	    background-color: transparent;
	    color: var(--color-sticky-nav-links);
	
	    & a {
	      color: var(--color-sticky-nav-links);
	    }
	  }
	
	  &:after {
	    position: absolute;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    content: '';
	    display: block;
	    border-bottom: 1px solid;
	    border-bottom-color: var(--color-primary);
	    width: 100%;
	    opacity: 0.15;
	
	    .is-light & {
	      border-color: var(--color-sticky-nav-links);
	    }
	  }
	}
	
	.toolbar__content {
	  display: flex;
	  justify-content: flex-end;
	  align-items: center;
	
	  &:has(.toolbar__scrolling-text) {
	    gap: 20px;
	  }
	}
	
	.toolbar__item {
	  flex: 0 1 auto;
	  padding: 0 5px;
	
	  &:first-child {
	    padding-left: 0;
	  }
	
	  &:last-child {
	    padding-right: 0;
	  }
	
	  & select,
	  & .faux-select {
	    font-size: 14px;
	    padding-top: 5px;
	    padding-bottom: 5px;
	    padding-left: 0;
	    border: 0;
	    background: transparent;
	    color: currentColor;
	  }
	}
	
	.toolbar__item--social {
	  flex: 0 1 auto;
	  padding: 0;
	
	  .toolbar__content:has(.toolbar__item--social) & {
	    @media only screen and (min-width: 769px) {
	      flex: 0 auto;
	    }
	  }
	
	  .toolbar__content:not(:has(.toolbar__scrolling-text)) & {
	    @media only screen and (max-width: 768px) {
	      display: none;
	    }
	  }
	
	  .toolbar__content:has(.toolbar__item--social:empty) & {
	    display: none;
	  }
	}
	
	.toolbar__item--multi-selectors {
	  .toolbar__content:has(.toolbar__scrolling-text) & {
	    padding-left: 0;
	  }
	}
	
	.toolbar__item--announcements {
	  flex: 1 1 auto;
	}
	
	.toolbar__social {
	  text-align: right;
	
	  & a {
	    display: block;
	    padding: 5px;
	  }
	
	  & .element-icon {
	    position: relative;
	    vertical-align: middle;
	    width: 16px;
	    height: 16px;
	  }
	
	  .toolbar__content:has(.scrolling-text__inner) & {
	    padding-top: 0.375rem;
	    padding-bottom: 0.375rem;
	    justify-content: flex-end;
	  }
	
	  .toolbar__content:has(.scrolling-text__inner:empty) & {
	    @media only screen and (max-width: 768px) {
	      justify-content: center;
	    }
	  }
	}
	
	.toolbar__scrolling-text {
	  flex: 1;
	  overflow: hidden;
	
	  @media only screen and (min-width: 769px) {
	    margin-right: auto;
	  }
	
	  .toolbar__content:has(.scrolling-text__inner:empty) & {
	    display: none;
	  }
	
	  .scrolling-text {
	    background: transparent;
	    color: inherit;
	
	    span {
	      font-size: inherit;
	      padding: 0.375rem 0;
	    }
	  }
	
	  .scrolling-text__inner {
	    margin: 0;
	  }
	}
	
	.toolbar__menu-link-list {
	  flex: 0 1 auto;
	  margin-left: auto;
	  justify-content: flex-end;
	
	  @media only screen and (max-width: 768px) {
	    display: none;
	  }
	}
.menu-link-list {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 20px;
	  margin: 0;
	}
	
	.menu-link-list__item {
	  margin: 0;
	
	  a {
	    padding-top: 0.375rem;
	    padding-bottom: 0.375rem;
	  }
	}
.social-sharing__title {
	  font-size: calc(var(--element-text-font-size--body-md) * 0.85);
	  display: inline-block;
	  vertical-align: middle;
	  padding-right: 15px;
	  padding-left: 3px;
	}
.social-sharing {
	  display: inline-flex;
	  flex-wrap: wrap;
	  gap: 10px 20px;
	
	  & .element-icon {
	    height: 18px;
	    width: 18px;
	  }
	}
	
	.blog-layout__sidebar {
	  & .social-sharing {
	    margin-bottom: 40px;
	  }
	}
	
	.social-sharing__link {
	  display: inline-block;
	  color: var(--root-color-primary);
	  border-radius: 2px;
	  margin: 0 18px 0 0;
	  text-decoration: none;
	  font-weight: normal;
	
	  &:last-child {
	    margin-right: 0;
	  }
	}
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */

  /*
  Document
  ========
  */

  /**
  Use a better box model (opinionated).
  */

  *,
  ::before,
  ::after {
    box-sizing: border-box;
  }

  /**
  1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
  2. Correct the line height in all browsers.
  3. Prevent adjustments of font size after orientation changes in iOS.
  4. Use a more readable tab size (opinionated).
  */

  html {
    font-family:
      system-ui,
      'Segoe UI',
      Roboto,
      Helvetica,
      Arial,
      sans-serif,
      'Apple Color Emoji',
      'Segoe UI Emoji'; /* 1 */
    line-height: 1.15; /* 2 */
    -webkit-text-size-adjust: 100%; /* 3 */
    tab-size: 4; /* 4 */
  }

  /*
  Sections
  ========
  */

  /**
  Remove the margin in all browsers.
  */

  body {
    margin: 0;
  }

  /*
  Text-level semantics
  ====================
  */

  /**
  Add the correct font weight in Chrome and Safari.
  */

  b,
  strong {
    font-weight: bolder;
  }

  /**
  1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
  2. Correct the odd 'em' font sizing in all browsers.
  */

  code,
  kbd,
  samp,
  pre {
    font-family:
      ui-monospace,
      SFMono-Regular,
      Consolas,
      'Liberation Mono',
      Menlo,
      monospace; /* 1 */
    font-size: 1em; /* 2 */
  }

  /**
  Add the correct font size in all browsers.
  */

  small {
    font-size: 80%;
  }

  /**
  Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
  */

  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  sub {
    bottom: -0.25em;
  }

  sup {
    top: -0.5em;
  }

  /*
  Tabular data
  ============
  */

  /**
  Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
  */

  table {
    border-color: currentcolor;
  }

  /*
  Forms
  =====
  */

  /**
  1. Change the font styles in all browsers.
  2. Remove the margin in Firefox and Safari.
  */

  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }

  /**
  Correct the inability to style clickable types in iOS and Safari.
  */

  button,
  [type='button'],
  [type='reset'],
  [type='submit'] {
    -webkit-appearance: button;
  }

  /**
  Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
  */

  legend {
    padding: 0;
  }

  /**
  Add the correct vertical alignment in Chrome and Firefox.
  */

  progress {
    vertical-align: baseline;
  }

  /**
  Correct the cursor style of increment and decrement buttons in Safari.
  */

  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }

  /**
  1. Correct the odd appearance in Chrome and Safari.
  2. Correct the outline style in Safari.
  */

  [type='search'] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }

  /**
  Remove the inner padding in Chrome and Safari on macOS.
  */

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  /**
  1. Correct the inability to style clickable types in iOS and Safari.
  2. Change font properties to 'inherit' in Safari.
  */

  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }

  /*
  Interactive
  ===========
  */

  /*
  Add the correct display in Chrome and Safari.
  */

  summary {
    display: list-item;
  }
:root {
    /* Core Sizes */
    --size-0-25: 0.0625rem; /* 1px */
    --size-0-5: 0.125rem; /* 2px */
    --size-1: 0.25rem; /* 4px */
    --size-1-5: 0.375rem; /* 6px */
    --size-2: 0.5rem; /* 8px */
    --size-2-5: 0.625rem; /* 10px */
    --size-3: 0.75rem; /* 12px */
    --size-3-5: 0.875rem; /* 14px */
    --size-4: 1rem; /* 16px */
    --size-4-5: 1.125rem; /* 18px */
    --size-5: 1.25rem; /* 20px */
    --size-5-5: 1.375rem; /* 22px */
    --size-6: 1.5rem; /* 24px */
    --size-6-5: 1.625rem; /* 26px */
    --size-7: 1.75rem; /* 28px */
    --size-7-5: 1.875rem; /* 30px */
    --size-8: 2rem; /* 32px */
    --size-8-5: 2.125rem; /* 34px */
    --size-9: 2.25rem; /* 36px */
    --size-9-5: 2.375rem; /* 38px */
    --size-10: 2.5rem; /* 40px */
    --size-11: 2.75rem; /* 44px */
    --size-12: 3rem; /* 48px */
    --size-14: 3.5rem; /* 56px */
    --size-16: 4rem; /* 64px */
    --size-18: 4.5rem; /* 72px */
    --size-20: 5rem; /* 80px */
    --size-24: 6rem; /* 96px */
    --size-28: 7rem; /* 112px */
    --size-32: 8rem; /* 128px */

    /* Text Sizes */
    --text-size-2: 0.5rem; /* 8px */
    --text-size-2-5: 0.625rem; /* 10px */
    --text-size-3: 0.75rem; /* 12px */
    --text-size-3-5: 0.875rem; /* 14px */
    --text-size-4: 1rem; /* 16px */
    --text-size-4-5: 1.125rem; /* 18px */
    --text-size-5: 1.25rem; /* 20px */
    --text-size-5-5: 1.375rem; /* 22px */
    --text-size-6: 1.5rem; /* 24px */
    --text-size-6-5: 1.625rem; /* 26px */
    --text-size-7: 1.75rem; /* 28px */
    --text-size-7-5: 1.875rem; /* 30px */
    --text-size-8: 2rem; /* 32px */
    --text-size-8-5: 2.125rem; /* 34px */
    --text-size-9: 2.25rem; /* 36px */
    --text-size-9-5: 2.375rem; /* 38px */
    --text-size-10: 2.5rem; /* 40px */
    --text-size-11: 2.75rem; /* 44px */
    --text-size-12: 3rem; /* 48px */
    --text-size-14: 3.5rem; /* 56px */
    --text-size-16: 4rem; /* 64px */
    --text-size-18: 4.5rem; /* 72px */
    --text-size-20: 5rem; /* 80px */
    --text-size-24: 6rem; /* 96px */
    --text-size-28: 7rem; /* 112px */
    --text-size-32: 8rem; /* 128px */

    /* Line */
    --line-size-none: 0px;
    --line-size-xs: 0.5px;
    --line-size-sm: 1px;
    --line-size-md: 2px;
    --line-size-lg: 4px;
    --line-size-xl: 8px;

    /* Gap */
    --gap-size-none: 0px;
    --gap-size-3xs: var(--size-0-5);
    --gap-size-2xs: var(--size-1);
    --gap-size-xs: var(--size-2);
    --gap-size-sm: var(--size-4);
    --gap-size-md: var(--size-8);
    --gap-size-lg: var(--size-12);
    --gap-size-xl: var(--size-16);
    --gap-size-2xl: var(--size-24);

    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-none: 0px;
    --radius-full: 999px;

    /* Dropshadow */
    --shadow-none: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    --shadow-sm: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
    --shadow-md: 0px 2px 4px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0px 8px 16px -4px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0px 16px 32px -6px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0px 16px 64px -12px rgba(0, 0, 0, 0.22);

    /* Font Weights */
    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;

    /* Letter Spacings */
    --letter-space-2xs: -0.05em;
    --letter-space-xs: -0.03em;
    --letter-space-sm: -0.015em;
    --letter-space-md: 0em;
    --letter-space-lg: 0.015em;
    --letter-space-xl: 0.03em;
    --letter-space-2xl: 0.05em;
    --letter-space-3xl: 0.08em;
    --letter-space-4xl: 0.12em;

    /* Line Heights */
    --line-height-2xs: 0.9;
    --line-height-xs: 1;
    --line-height-sm: 1.1;
    --line-height-md: 1.2;
    --line-height-lg: 1.5;
    --line-height-xl: 1.7;
    --line-height-2xl: 2;

    /* Color Shades */
    --shade-0: 0%;
    --shade-4: 4%;
    --shade-8: 8%;
    --shade-12: 12%;
    --shade-16: 16%;
    --shade-20: 20%;
    --shade-30: 30%;
    --shade-40: 40%;
    --shade-50: 50%;
    --shade-60: 60%;
    --shade-70: 70%;
    --shade-80: 80%;
    --shade-90: 90%;
    --shade-100: 100%;
  }
.scheme-image,
	.scheme-darken,
	.scheme-squiggle,
	.scheme-swirl,
	.scheme-dots,
	.scheme-notebook,
	.scheme-wave,
	.scheme-minimal-wave,
	.scheme-plants,
	.scheme-cold-blur,
	.scheme-warm-blur,
	.scheme-custom-texture-1,
	.scheme-custom-texture-2,
	.scheme-custom-texture-3 {
	  position: absolute;
	  width: 100%;
	  height: 100%;
	  top: 0;
	  left: 0;
	  z-index: 0;
	}
	
	[data-animate].scheme-image {
	  object-fit: cover;
	  pointer-events: none;
	  mix-blend-mode: multiply;
	  opacity: 1;
	
	  /*Specific styles on some textures*/
	
	  &[data-texture='space.jpg'] {
	    mix-blend-mode: screen;
	  }
	}
	
	[data-animate].scheme-texture--linen,
	[data-animate].scheme-texture--sand,
	[data-animate].scheme-texture--stone,
	[data-animate].scheme-texture--wildflower {
	  opacity: 0.24;
	}
	
	/*Darken is CSS, not image*/
	.scheme-darken {
	  --z-index-overlay: 1;
	  z-index: 1;
	  pointer-events: none;
	
	  &:after {
	    background-color: rgba(0, 0, 0, 0.027);
	    pointer-events: none;
	  }
	}
	
	/*
	  SVG images as backgrounds
	    - larger images are cached external assets that are only loaded when used
	 */
	.scheme-swirl {
	  background-image: url(swirl.svg);
	  opacity: 0.12;
	}
	
	.scheme-squiggle {
	  background: url("data:image/svg+xml,%3Csvg width='150' height='75' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.17'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}
	
	.scheme-dots {
	  background-image: radial-gradient(rgba(0, 0, 0, 0.15) 0.5px, transparent 2px);
	  background-size: 16px 16px;
	}
	
	.scheme-notebook {
	  background-image: url(notebook.svg);
	  opacity: 0.5;
	}
	
	.scheme-wave {
	  background-image: url(wave.svg);
	  background-size: cover;
	  opacity: 0.5;
	}
	
	.scheme-minimal-wave {
	  background-image: url(minimal-wave.svg);
	  opacity: 0.5;
	  background-size: cover;
	}
	
	.scheme-plants {
	  background-image: url(plants.svg);
	  background-size: cover;
	}
	
	.scheme-cold-blur {
	  background-image: url(cold-blur.svg);
	  background-size: cover;
	}
	
	.scheme-warm-blur {
	  background-image: url(warm-blur.svg);
	  background-size: cover;
	}
	
	.scheme-custom-texture-1 {
	  background-image: url(custom-texture-1.svg);
	  background-size: cover;
	}
	
	.scheme-custom-texture-2 {
	  background-image: url(custom-texture-2.svg);
	  background-size: cover;
	}
	
	.scheme-custom-texture-3 {
	  background-image: url(custom-texture-3.svg);
	  background-size: cover;
	}