/** Shopify CDN: Minification failed

Line 836:0 Unexpected "}"

**/
/* Fly to cart animation */
fly-to-cart {
  --offset-y: 10px;

  position: fixed;
  width: var(--width, 80px);
  height: var(--height, 80px);
  left: 0;
  top: 0;
  z-index: calc(infinity);
  pointer-events: none;
  border-radius: var(--style-border-radius-buttons-primary);
  overflow: hidden;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  opacity: 0;
  translate: var(--start-x, 0) var(--start-y, 0);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 560px) {
  fly-to-cart {
    width: var(--width, 80px);
    height: var(--height, 80px);
 } 
}

fly-to-cart.is-animating {
  animation-name: travel-x, travel-y, travel-scale;
  animation-timing-function: var(--x-timing), var(--y-timing), var(--scale-timing);
  animation-duration: 0.8s;
  animation-composition: accumulate;
  animation-fill-mode: both;
}

fly-to-cart.fly-to-cart--main {
  --x-timing: cubic-bezier(0.7, -5, 0.98, 0.5);
  --y-timing: cubic-bezier(0.15, 0.57, 0.9, 1.05);
  --scale-timing: cubic-bezier(0.85, 0.05, 0.96, 1);
}

fly-to-cart.fly-to-cart--quick {
  --x-timing: cubic-bezier(0, -0.1, 1, 0.32);
  --y-timing: cubic-bezier(0, 0.92, 0.92, 1.04);
  --scale-timing: cubic-bezier(0.86, 0.08, 0.98, 0.98);

  animation-duration: 1s;
}

fly-to-cart.fly-to-cart--sticky {
  --x-timing: cubic-bezier(0.98, -0.8, 0.92, 0.5);
  --y-timing: cubic-bezier(0.14, 0.56, 0.92, 1.04);
  --scale-timing: cubic-bezier(0.86, 0.08, 0.98, 0.98);
  --radius: var(--style-border-radius-buttons-primary);

  @media (max-width: 749px) {
    --x-timing: cubic-bezier(0.98, -0.1, 0.92, 0.5);
  }

  animation-duration: 1.2s;
}

@keyframes travel-scale {
  0% {
    opacity: var(--start-opacity, 1);
  }

  5% {
    opacity: 1;
  }

  100% {
    border-radius: 50%;
    opacity: 1;
    transform: translate(-50%, calc(-50% + var(--offset-y))) scale(0.25);
  }
}

@keyframes travel-x {
  to {
    translate: var(--travel-x, 0) 0;
  }
}

@keyframes travel-y {
  to {
    translate: 0 var(--travel-y, 0);
  }
}

.rte p {
  color:#2d2d21 !important;
}

#onetrust-button-group button {
  font-size:12px !important;
}

/* Navigation */

.mobile-nav__child-item {
    font-size: 18px !important;
}

.header-item.header-item--left.header-item--navigation .site-nav__item {
    padding: 8px;
}

.mobile-nav__item--secondary {
    margin: 15px;
}

.ss__results--products .ss__result__details__title a {
    font-family: 'GT Pressura Bold';
    line-height: 1.2 !important;
    font-size: 14px !important;
}

ul#product-grid h3.card__heading.h5
.yotpo-widget-instance svg.star-container {
  width: 10px;
}

.card-information .yotpo-bottomline:hover, .card-information .yotpo-bottomline a.text-m:hover {
    cursor: default !important;
}

div.yotpo-device-mobile .yotpo-sr-bottom-line-summary {
    flex-wrap: wrap;
    gap:1px !important;
}

.yotpo-sr-bottom-line-summary {
  flex-direction:row !important;
}

.yotpo-sr-bottom-line-text {
    font-family: GT Pressura !important;
    font-size: 12px !important;
    padding: 0 !important;
}

@media screen and (max-width:376px) {
  span.yotpo-sr-bottom-line-text.yotpo-sr-bottom-line-text--right-panel {
    line-height: 1.2 !important;
    padding-bottom: 5px;
}
}

.card__badge {
  position: absolute;
  z-index: 5;
  right: 10px;
  top: 13px;
}
span.badge.badge--top-right.color-primary {
  background: #ffcc06;
  font-weight: 400;
  padding: 4px 13px 4px 13px;
  font-size: 12px;
  text-shadow: 0 0 black;
  border-radius: 40px;
  letter-spacing: 1px;
}
.grid-product__tag.grid-product__tag--sold-out {
  display: none;
}

.grid__item.grid-product:hover .image-wrap img {
  transform: scale(1.1);
}
.search-content predictive-search {
  display: none;
}
ul.tag-list.tag-list--active-tags a.btn {
  background-color: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 25px;
  padding: 4px 10px;
  font-family: GT Pressura !important;
  font-weight: 400;
  color: #121212d9;
}
.tag--remove .icon {
  color: #000000;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
ul.tag-list.tag-list--active-tags a.btn:hover {
  box-shadow: 0 0 0 .2rem #12121266;
}

/* Search Grid list */
@media screen and (max-width:768px) {
.ss__title.h2.center.ss__title--has-results {
    font-size: 36px !important;
}}
.grid--4-col-desktop {
  display: flex;
  flex-wrap: wrap;
}
.grid--4-col-desktop li.ss__result.ss__result--products.ss__result--item.grid__item {
  width: 100%;
  margin-bottom: 25px;
  padding: 0;
}
div#searchspring-content {
  margin-bottom: 50px;
  margin-top: 20px;
  width: 100%;
  /* EXPERIMENTAL: CSS containment for CLS prevention */
  content-visibility: auto;
  contain-intrinsic-size: 0 2000px; /* Reserve space for first 8 products */
  contain: layout style; /* Isolate layout calculations */
}

/* Responsive min-heights to prevent CLS - FOR ALL PRODUCTS */
@media (max-width: 680px) {
  div#searchspring-content {
    min-height: 7220px; /* Narrow mobile: ALL products */
  }
}

@media (min-width: 681px) and (max-width: 750px) {
  div#searchspring-content {
    min-height: 7450px; /* Wide mobile: ALL products */
  }
}

@media (min-width: 751px) and (max-width: 820px) {
  div#searchspring-content {
    min-height: 9969px; /* Small tablet: ALL products - EXACT measurement */
  }
}

@media (min-width: 821px) and (max-width: 850px) {
  div#searchspring-content {
    min-height: 4150px!important; /* Mid tablet: ALL products - EXACT 840px measurement */
  }
}

@media (min-width: 851px) and (max-width: 989px) {
  div#searchspring-content {
    min-height: 10500px; /* Large tablet: ALL products + 58px buffer for timing */
  }
}

/* DESKTOP: 4 products per row layout - NETWORK-AWARE fallbacks for slow connections */
@media (min-width: 990px) and (max-width: 1099px) {
  div#searchspring-content {
    min-height: 4200px !important; /* INCREASED for slow networks - small desktop fallback */
  }
}

@media (min-width: 1100px) and (max-width: 1199px) {
  div#searchspring-content {
    min-height: 4000px !important; /* INCREASED for slow networks - medium desktop fallback */
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  div#searchspring-content {
    min-height: 3800px !important; /* INCREASED for slow networks - large desktop fallback */
  }
}

@media (min-width: 1400px) {
  div#searchspring-content {
    min-height: 3600px !important; /* INCREASED for slow networks - very large desktop fallback */
  }
}

/* Skeleton grid that matches SearchSpring layout exactly */
div#searchspring-content:not(.ss-loaded):empty {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

/* Create skeleton cards using pseudo-elements */
div#searchspring-content:not(.ss-loaded):empty::before {
  content: '';
  display: block;
  aspect-ratio: 3/4; /* Typical product card ratio */
  background: linear-gradient(
    135deg,
    #f0f0f0 25%,
    transparent 25%,
    transparent 50%,
    #f0f0f0 50%,
    #f0f0f0 75%,
    transparent 75%
  );
  background-size: 20px 20px;
  border-radius: 6px;
  animation: skeleton-shimmer 2s infinite;
}

/* Generate multiple skeleton cards */
div#searchspring-content:not(.ss-loaded):empty::after {
  content: '';
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  grid-column: 1 / -1;
}

/* Desktop: Show only first 2 rows initially (8 cards) */
@media (min-width: 990px) {
  div#searchspring-content:not(.ss-loaded):empty::after {
    background: 
      /* Row 1 */
      linear-gradient(#f0f0f0, #f0f0f0),
      linear-gradient(#f0f0f0, #f0f0f0),
      linear-gradient(#f0f0f0, #f0f0f0),
      linear-gradient(#f0f0f0, #f0f0f0),
      /* Row 2 */
      linear-gradient(#f0f0f0, #f0f0f0),
      linear-gradient(#f0f0f0, #f0f0f0),
      linear-gradient(#f0f0f0, #f0f0f0),
      linear-gradient(#f0f0f0, #f0f0f0);
    background-size: 
      calc(25% - 15px) 350px,
      calc(25% - 15px) 350px,
      calc(25% - 15px) 350px,
      calc(25% - 15px) 350px,
      calc(25% - 15px) 350px,
      calc(25% - 15px) 350px,
      calc(25% - 15px) 350px,
      calc(25% - 15px) 350px;
    background-position:
      0% 0%, 25% 0%, 50% 0%, 75% 0%,
      0% 370px, 25% 370px, 50% 370px, 75% 370px;
    background-repeat: no-repeat;
    height: 740px; /* 2 rows × 350px + 1 × 20px gap */
    border-radius: 6px;
  }
}

/* Mobile: Show only first 4 rows initially (8 cards in 2-column layout) */
@media (max-width: 989px) {
  div#searchspring-content:not(.ss-loaded):empty::after {
    grid-template-columns: repeat(2, 1fr);
    background: 
      /* Generate first 8 skeleton cards in 2-column layout */
      repeating-linear-gradient(
        0deg,
        #f0f0f0 0px,
        #f0f0f0 350px,
        transparent 350px,
        transparent 370px
      );
    height: 1700px; /* 4 rows × 350px + 3 × 20px gaps */
    border-radius: 6px;
  }
}

@keyframes skeleton-shimmer {
  0% { opacity: 0.6; }
  50% { opacity: 0.8; }
  100% { opacity: 0.6; }
}

/* Keep stable height - no reset to prevent layout shifts */

/* PERSISTENT loading state - stays until content is actually visible */
div#searchspring-content:not(.ss-content-visible):before {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, #f8f8f8 25%, #e8e8e8 50%, #f8f8f8 75%);
  background-size: 200% 100%;
  animation: ss-loading-shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 20px;
  opacity: 0.7;
  position: relative;
  z-index: 10;
}

/* Show skeleton grid while loading to maintain height */
div#searchspring-content:not(.ss-content-visible):after {
  content: '';
  display: block;
  height: calc(100% - 80px); /* Account for loading bar */
  background: 
    repeating-linear-gradient(
      0deg,
      #f8f8f8 0px,
      #f8f8f8 280px,
      #e8e8e8 280px,
      #e8e8e8 300px
    );
  opacity: 0.3;
  animation: ss-loading-shimmer 2s infinite;
}

@keyframes ss-loading-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Only hide loading when content is actually visible AND loaded */
div#searchspring-content.ss-content-visible.ss-loaded:before,
div#searchspring-content.ss-content-visible.ss-loaded:after {
  display: none;
}

/* Transition state */
div#searchspring-content.ss-content-visible:not(.ss-loaded) {
  transition: all 0.3s ease;
}

ul#product-grid .card-wrapper.product-card-wrapper {
  position: relative;
}
.ss__results .ss__result .yotpo .yotpo-bottomline {
  margin: 3px 0px;
  /* margin-top: 5px; */
}
.ss__results .ss__result .yotpo div, .ss__results .ss__result .yotpo span, .ss__results .ss__result .yotpo a {
  font-size: 12px!important;
}
ul#product-grid .ss__result .yotpo span {
  font-size: 12px;
  color: #ffcc06;
}
ul#product-grid .ss__result .yotpo span::before {
    padding-right: 2px;
    font-size: 16px;
}
ul#product-grid .ss__result .yotpo a {
  color: #2d2d2e;
  font-family: GT Pressura;
  padding-left:5px;
}
ul#product-grid .card__media img.motion-reduce {
  cursor: pointer;
  transition: 0.5s all;
}

.card__media .media.media--transparent {
    background-color: #eeeeee;
}
.card__inner {
  max-width: 279px;
  margin-bottom: 10px;
}
.card__information {
  position: relative;
  padding: 0 3px 0 0;
}
ul#product-grid .card__media img.motion-reduce:hover {
  transform: scale(1.1);
}
ul#product-grid  .media.media--transparent.media--hover-effect {
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .ss__autocomplete--target.ss__autocomplete--default {
    top: 70px !important;
  }
}
@media only screen and (min-width: 990px) {
  .ss__autocomplete--target.ss__autocomplete--default {
      top: 52px !important;
      right: 2.8% !important;
  }
}

/* Announcement Bar */
.flickity-prev-next-button {
  --icon-width: 18px;
}

.flickity-prev-next-button svg.flickity-button-icon {
  top: 50%;
  left: 50%;
  width: var(--icon-width);
  height: var(--icon-width);
  margin: calc(-1 * (var(--icon-width) / 2)) 0 0 calc(-1 * (var(--icon-width) / 2));
}

/* Highlight True Block */
.highlight-true {
  background-color: #ffcb05;
  width:fit-content;
  padding:8px;
  padding-bottom:10px;
}
.theme-block:has(.highlight-true) {
  margin-bottom: 0;
}
.text-center:has(.highlight-true) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.otto-grid-item__header {
  font-size: 1.25em !important;
  letter-spacing: 0 !important;
}

@media screen and (max-width:1024px) {
  .otto-banner .otto-header {
    font-size: 2em !important;
  }
  .otto-body {
    font-size:20px !important;
  }
  .otto-grid:has(.otto-grid-item) {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .card__inner {
    max-width: 100%;
  }
}

@media screen and (min-width:1024px) {
.otto-banner-content--center-left {
    padding-left: 50px !important;
}

.otto-banner-content--center-right {
    padding-right: 50px !important;
  text-align:right;
}
}

/* Featured Collection Products */
.collection__view-all {
    text-align: center;
    margin-top:10px;
}

.collection__view-all a {
  font-size:14px !important;
}

.grid-product__meta .yotpo-sr-bottom-line-summary svg {
    width: 12px;
}
.grid-product__meta button.yotpo-sr-bottom-line-summary.yotpo-sr-bottom-line-button {
    align-items: center !important;
}

.yotpo-sr-bottom-line-summary svg {
    margin-inline-end: 10px !important;
}
@media screen and (max-width:768px) {
  .yotpo-sr-bottom-line-summary svg {
    margin-inline-end: 4px !important;
  }
}


/* Paragraph Spacing */
.rte p, .rte-setting p {
    line-height: 1.5;
}

/* Footer */
input#Email-footer2 {
    border: 1px solid white !important;
    padding: 10px;
  max-width:250px;
  display:flex;
  color:white;
}

input#Email-footer2::placeholder {
    color: white;
    text-transform: uppercase;
}

button#newsletter-submit-footer2 {
    padding: 12px 10px;
    background-color: #ffcc06;
  color:black;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    width: 90px;
}

@media screen and (min-width:769px) {
.footer__item--menu_mL7G8W ul.no-bullets.site-footer__linklist {
    display: flex;
  flex-wrap:wrap;
}
  .footer__item--menu_mL7G8W ul li {
    margin-right:15px;
  }
}

@media screen and (max-width:768px) {
  .grid--4-col-desktop li.ss__result.ss__result--products.ss__result--item.grid__item {
    width: 100%;
  }
  .grid-product__title.grid-product__title--heading, ul#product-grid h3.card__heading.h5 {
    font-size: 14px;
  }
  div#searchspring-content {
    margin-top: 0;
  }
}
@media screen and (min-width:768px) and (max-width:1050px) {
  ul#product-grid .card__media img.motion-reduce{
    height: 100%;
  }
  #CollectionAjaxContent .page-width{
    padding: 0 20px;
  }
}

.rte a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.variant-input-wrap[name="Size"] label {
    padding: 8px 20px;
  font-weight:800;
}

.variant-input-wrap[name="Size"] input[type=radio]:checked+label:not(label.disabled) {
    background-color: black;
    color: white;
}

.template-product .collapsible-content p:not(div.footer__collapsible p) {
    margin-bottom: 0 !important;
}

a.yotpo-reviews-trademark.yotpo-reviews-by {
    display: none;
}

.template-product nav.breadcrumb {
    text-align: left !important;
}


.product-single__meta div[id*="star_rating"] .yotpo-widget-instance {
    margin-bottom: 10px;
}

.disabled {
  opacity: 1 !important;
}

.product-block .breadcrumb {
    margin-top: 0px !important;
}

.product-block:has(p.width-copy) {
    margin-bottom: 10px;
}

.size-chart__standalone {
    margin-bottom: 10px !important;
}

/* Large Image w/ Text Box Center Alignment */
.background-media-text--center .animation-cropper {
    display: flex;
    justify-content: center;
  align-items:center;
}
.background-media-text--center .background-media-text__text {
    text-align: center;
}
.background-media-text__inner:has(.background-media-text--center) {
    display:flex;
  justify-content:center;
  align-items:center;
}

.rte.background-media-text__subtext p {
    margin-bottom: 0 !important;
    font-weight: 400;
    text-shadow: none;
}

.feature-row__text .rte h3:not(.rte h3:first-child) {
    margin-top: 30px;
}

.feature-row__text .rte h3 {
  margin-bottom:10px;
}

.feature-row__item.feature-row__images {
    padding-top: 0;
}

.label {
    letter-spacing: unset;
}

.ss__autocomplete--active .ss__autocomplete--target.ss__autocomplete--default{
  width: 100vw!important;
  max-width: 740px;
  
}
@media screen and (min-width: 990px) {
  .page-content.page-content--product .page-width .grid {
    display: flex;
  }
}

/* Filter selection info styling */
.filter-selection-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 15px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
  margin-bottom: 15px;
  gap: 10px;
}

.filter-count {
  color: #333;
  font-weight: 500;
}

.filter-reset {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.filter-reset:hover {
  opacity: 0.7;
}

.filter-reset.disabled {
  color: #aaa;
  cursor: default;
  font-weight: 400;
}

/* Ensure proper spacing in filter dropdowns */

.ss__autocomplete--active .ss__autocomplete--target.ss__autocomplete--default{
  position: absolute;
  width: 100%;
  top: 51px;
}

.ss__has-results .grid--4-col-desktop {
  
  row-gap: 35px;
  column-gap: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 25px 0px 20px 20px;
  
}

@media  only screen and (max-width: 990px) {
  .ss__has-results .grid--4-col-desktop {
    grid-template-columns: 1fr 1fr;
  }
}
@media  only screen and (max-width: 786px) {
  .ss__has-results .grid--4-col-desktop {
    margin: 0px 0 20px 20px;
  }
  #searchspring-toolbar > div > div.facets-container > menu-drawer > details > summary > span.mobile-facets__open > svg > path {
    fill: black;
    stroke-width: 0;
  }
}

/* SearchSpring Product Card Fixes */
.ss__result.ss__result--products {
  position: relative;
  overflow: hidden;
}

.ss__result.ss__result--products .ss__result-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.ss__result.ss__result--products .ss__result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ss__result.ss__result--products:hover .ss__result-image {
  transform: scale(1.1);
}

.ss__result.ss__result--products .ss__result-content {
  position: relative;
  z-index: 2;
}

/* Make the entire product card clickable */
.ss__result.ss__result--products .ss__result-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
}

/* .product__thumb-item.hide,
.product__thumb-item[style*="display: none"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
} */

/* Ensure interactive elements stay above the link */
.ss__result.ss__result--products .yotpo,
.ss__result.ss__result--products .ss__result-variants,
.ss__result.ss__result--products .ss__result-colors {
  position: relative;
  z-index: 3;
}

/* Improve hover state visibility */
.ss__result.ss__result--products:hover .ss__result-title {
  text-decoration: underline;
}

.size-details-container {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #000000;
}

.size-detail {
  display: inline-block;
}
.size-detail:hover {
  cursor: pointer;
}

#shopify-section- .product-single__meta .variant__label .size-detail[data-size-display] {
  display: inline-block !important;
  font-size: 13px !important;
  color: #000000 !important;
  margin-left: 5px !important;
  font-weight: 500 !important;
  font-family: GT Pressura !important;
  text-shadow: 0 0 black !important;
  transition: opacity 0.2s ease !important;
}

/* Hide the data container */
.size-details-data {
  display: none !important;
}

/* Hide any line breaks between Size: and the detail text */
.variant__label br {
  display: none;
}
@media screen and (max-width:768px) {
.grid.grid--uniform.grid--flush-bottom {
    flex-direction: column;
}
}

/* Cart Terms Checkbox */
.rale-container {
    margin-bottom: 10px;
}

/* AE Widget Placement */
aside#ae_launcher {
    bottom: 10px!important;
    right: 100px!important;
}

/* Hide ShopPay PDP Call Out */
.shopify-payment-terms.product__policies {
    display: none;
}

ul#product-grid .card__media {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

ul#product-grid .card__media img.motion-reduce {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* AGGRESSIVE LCP optimization for product images */
  content-visibility: auto;
  contain-intrinsic-size: 280px 280px; /* Reserve space for better CLS */
  image-rendering: -webkit-optimize-contrast; /* Safari optimization */
  image-rendering: crisp-edges; /* Better rendering performance */
}

/* Critical CSS for faster first paint of product grid */
ul#product-grid .card__media {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: #f8f8f8; /* Prevent flash during load */
  border-radius: 8px; /* Pre-apply styling */
}

/* LCP optimization now handled dynamically by JavaScript */

/* Breadcrumbs */



/* Border Outline Fix */
html:not(.no-js):not(.tab-outline) :focus-visible {
    outline: unset !important;
}
/* PDP Information Updates */
@media screen and (max-width:768px) {
  .product-details-list li, .fit-feel-list li {
   font-size:14px !important;
}
  .product-details-list svg, .fit-feel-list svg {
    width: 30px !important;
    height: 30px !important;
}
}


ul.product-details-list, ul.fit-feel-list {
    list-style-type: none !important;
  margin-left:0px !important;
  margin-bottom: 0px !important;
}
.product-details-list li, .fit-feel-list li {
    display: flex;
    align-items: center;
  margin-bottom:10px;
  font-size:16px;
}
span.product-detail-title {
    margin: 0 5px 0px 10px;
    font-weight: 600 !important;
}
.product-details-list svg, .fit-feel-list svg {
    width: 35px;
    height: 35px;
}

.width-copy {
  margin-bottom:5px !important;
}

/* Move PDP Size Chart Embed */
.product-block .variant-wrapper label.variant__label[for*="option-1"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-block .variant-wrapper label.variant__label[for*="option-1"] span.variant__label-info {
    display: flex;
    justify-content: flex-end !important;
}

/* Mobile Hero Text Alignment */
@media screen and (max-width:768px) {
    .hero__text-content.vertical-center-mobile{
        vertical-align:middle;
    }

    .overlaid-header .index-section--hero:first-child .hero__text-content.vertical-center-mobile{
        padding-top:50px;
    }

    .hero__text-content.vertical-bottom-mobile{
        vertical-align:bottom;
    }

    .hero__text-content.horizontal-center-mobile{
        text-align:center;
    }

    .hero__text-content.horizontal-right-mobile{
        text-align:right;
    }

    .hero__text-content.horizontal-left-mobile{
        text-align:left;
}
}

/* Sticky ATC Styling */
div[data-essential-cart-element="title"] {
    font-family: 'GT Pressura Bold' !important;
    text-transform: uppercase !important;
}
div[data-essential-cart-element="add-to-cart-button-text"] {
    font-family: 'GT PRESSURA BOLD' !important;
}

@media screen and (max-width:768px) {
  div[data-essential-cart-element="title"], div[data-essential-cart-element="variant-select"] select {
    font-size:14px !important;
  }
  div[data-essential-cart-element="title"] {
    white-space:wrap !important;
  }
  div[data-essential-cart-element="add-to-cart-mobile-button-text"], div[data-essential-cart-element="price"] {
    font-family:'GT PRESSURA BOLD' !important;
  }
}

/* Hide Sticky ATC for AB Test */
div[data-essential-cart-element="container-desktop"], div[data-essential-cart-element="container-mobile"] {
    display: none !important;
}

/* New Locally Embed Widget */
a.lcly-primary-trigger span, button.lcly-primary-trigger {
    line-height: 1.2 !important;
    height: auto !important;
    background: unset !important;
    color: #2d2d2d !important;
    font-size: 16px !important;
    text-align: left !important;
    margin: 0 0 20px 0 !important;;
}
a#lcly-link-0 {
    font-family: 'GT Pressura' !important;
    font-size: 14px !important;
    color: #2d2d2d !important;
    padding-top: 10px;
    text-decoration: underline !important;
}
.lcly-dealer-name {
    font-size: 14px !important;
}
span.lcly-location-features, .lcly-dealer-distance {
    font-size: 12px !important;
    color: #2d2d2d !important;
}
svg.lcly-icon-check-mark, svg.lcly-icon-marker {
    fill: #2d2d2d !important;
}
.lcly-dealer {
    padding: 10px 10px 10px 32px !important;
    background-color: #eeeeee !important;
    border-radius:8px !important;
}
.lcly-dealers-wrap {
    margin-top: 0 !important;
}
.lcly-dealer:hover {
    background-color: #d6d6d6 !important;
}

.product-block:has(p.style-number-label) {
    margin-bottom: 5px !important;
}

@media screen and (max-width:1024px) {
a.otto-btn {
  color:white !important;
  background-color:#2d2d2d !important;
}
}

/* header */

.site-nav__wrapper {
  background: #f5f5f5;
  position: relative;
  z-index: 5;
}

.header-item__secondary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-item__secondary-nav a {
  font-size: 13px;
  color: #696969;
  padding: 5px 15px;
  text-transform: uppercase;
}

.header-item--locations {
  max-width: 280px;
  width: 100px;
  flex: 1 1 240px;
}

.header-item--locations details {
  position: relative;
}

.header-item--locations-label {
  min-height: 42px;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-item--locations-label > div {
  width: 0;
  flex-grow: 1;
}

.header-item--locations-label .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-inline-end: -4px;
}

.header-item--locations-label span {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header-item--locations-label span.label {
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  margin-block-end: 2px;
}

.header-item--locations-label span.label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-inline: -2px 2px;
}

.header-item--locations-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 400px;
  background: #f5f5f5;
  border: 1px solid #bbbbbb;
  border-radius: 8px;
  overflow: hidden;
  z-index: 5;
}

.header-item--locations-search {
  background: #FFF;
  padding: 16px;
  border-bottom: 1px solid var(--colorBorder);
}

.header-item--locations-search h3 {
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
  margin-block-end: 4px;
}

.header-item--locations-search p {
  font-size: 13px;
  margin-block-end: 12px;
}

.header-item--locations-search input {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  background: #f5f5f5;
  padding: 10px 16px;
  border: 0;
  border: 1px solid var(--colorBorder);
  border-radius: 6px;
}

.header-item--locations-search input::placeholder {
  opacity: 0.75;
}

.header-item--locations-dropdown ul {
  max-height: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
  scrollbar-width: thin;
  overflow: hidden auto;
}

.header-item--locations-dropdown li {
  font-weight: 500;
  font-size: 13px;
  padding: 12px 16px;
  margin: 0;
  border-bottom: 1px solid var(--colorBorder);
  cursor: pointer;
}

.header-item--locations-dropdown li:hover,
.header-item--locations-dropdown li.active {
  background: #f5f5f5;
}

.header-item--locations-dropdown li.active {
  font-weight: 700;
}

.header-item--locations-dropdown li:last-child {
  border: 0;
}

@media screen and (max-width: 768px) {
  .header-item--locations details {
    position: static;
  }

  .header-item--locations-label .icon {
    width: 16px;
    height: 16px;
  }

  .header-item--locations-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    width: 100%;
    background: #FFF;
    border-inline-width: 0;
    border-radius: 0;
  }
}

@media screen and (min-width: 769px) {
  .header-item--locations-label {
    min-height: 46px;
    padding: 8px 12px;
    background: #f5f5f5;
    border: 1px solid #bbbbbb;
    border-radius: 8px;
  }
}

.header-item--search .search__input {
  height: 46px;
  font-weight: 500;
  font-size: 14px;
  background: #ffffff;
  padding-inline: 20px 35px;
  border: 1px solid #bbbbbb;
  border-radius: 8px;
}

.header-item--search .search__input::placeholder,
.site-header__search .search__input::placeholder {
  opacity: 1;
}

.header-item--search .search__results {
  left: 0;
  width: 900px;
  background: #FFF;
  margin-top: 5px;
  border: 1px solid var(--colorBorder);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.header-item--search .predictive__screen,
.header-item--search .btn--close-search {
  display: none !important;
}

.site-header__search predictive-search form {
  width: 100%;
  height: 100%;
}

.site-header__search .search__input-wrap {
  height: 100%;
  background: #FFF;
}

.site-header__search .search__input {
  height: 100%;
  font-size: 14px;
  padding: 0 44px;
  border: 0;
}

.site-header__search .btn--search {
  right: 0;
  padding: 12px;
}

.site-header__search .search__results {
  background: #f3f4f4;
  margin: 0;
  border-top: 1px solid var(--colorBorder);
}

.site-header__search .predictive-search-results  {
  max-height: calc(100vh - 190px);
}

@media screen and (max-width: 1199px) {
  .header-item--search .search__results {
    left: -60px;
    width: 820px;
  }
}

@media screen and (min-width: 990px) {
  .header-item--search .search__results {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }

  .header-item--search .results__group-1,
  .header-item--search .results__group-2 {
    max-height: 550px;
    overflow: hidden auto;
  }
}

@media screen and (min-width: 769px) {
  .site-header__search .predictive-search-results {
    max-height: calc(100vh - 215px);
  }

  .site-header__search .results__group-1,
  .site-header__search .results__group-2 {
    overflow: hidden auto;
  }
}

.site-nav__megamenu {
  left: 0;
  padding: 0;
}

.site-nav__megamenu .grid {
  padding-inline-start: calc((100% - 1140px) / 2);
  margin: 0;
}

.site-nav__megamenu .grid__item.medium-up--four-fifths {
  background: #f5f5f5;
}

.site-nav__megamenu-level2 {
  list-style: none;
  padding: 24px 0;
  margin: 0;
}

.site-nav__megamenu-level2 a {
  font-size: 15px;
  line-height: 1.2;
  display: block;
  padding: 7px 20px;
  text-transform: uppercase;
}

.site-nav__megamenu-level3 {
  display: flex;
}

.site-nav__megamenu-level3-menu {
  width: 33.33%;
  padding: 30px;
}

.site-nav__megamenu-level3-menu h6 {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  margin-block-end: 20px;
}

.site-nav__megamenu-level3-menu ul {
  max-height: 280px;
  list-style: none;
  margin: 0;
  scrollbar-width: thin;
  overflow-x: hidden;
  overflow-y: auto;
}

.site-nav__megamenu-level3-menu li + li {
  margin-block-start: 8px;
}

.site-nav__megamenu-level3-menu a {
  font-size: 13px;
  text-transform: uppercase;
}

.site-nav__megamenu-level3-image {
  width: 66.67%;
}

.nav-drawer--opened .site-nav__link .icon-hamburger,
body:not(.nav-drawer--opened) .site-nav__link .icon-close2 {
  display: none;
}

nav-drawer-opener .site-nav__link {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  background: var(--colorBtnPrimary);
  color: var(--colorBtnPrimaryText);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  border: 0;
  border-radius: var(--buttonRadius);
}

nav-drawer-opener .site-nav__link:hover {
  background: var(--colorBtnPrimary);
  color: var(--colorBtnPrimaryText);
}

nav-drawer-opener .site-nav__link--icon .icon {
  --iconWeight: 4px;
  width: 20px;
  height: 20px;
}

nav-drawer-opener .site-nav__link .icon-close2 {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1px;
  margin: 3px;
}

@media screen and (max-width: 768px) {
  nav-drawer-opener .site-nav__link {
    font-size: 12px;
    line-height: 18px;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
  }

  nav-drawer-opener .site-nav__link--icon .icon {
    width: 18px;
    height: 18px;
  }

  nav-drawer-opener .site-nav__link .icon-close2 {
    width: 12px;
    height: 12px;
  }
}

.nav-drawer--opened .nav-drawer__mask {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer__mask {
  position:fixed;
  inset: 0;
  background-color:var(--colorModalBg);
  display:block;
  opacity:0;
  pointer-events: none;
}

.nav-drawer--opened .nav-drawer {
  opacity: 1;
  transition-delay: 0s;
  pointer-events: auto;
}

.nav-drawer--opened .nav-drawer .drawer__inner {
  transform: translate(0);
}

.nav-drawer {
  max-width: 100%;
  width: 100%;
  height: 100%;
  left: 0;
  background: transparent;
  display: block;
  transform: none;
  opacity: 0;
  transition: opacity 0s cubic-bezier(0.165,0.84,0.44,1) 0.25s;
  overflow: visible;
  box-shadow: none;
  pointer-events: none;
  z-index: 20;
}

.nav-drawer .drawer__inner {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: safe center;
  transform: translate(-100%, 0);
  transition: transform 0.25s cubic-bezier(0.165,0.84,0.44,1);
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.nav-drawer .drawer__contents {
  width: auto;
  height: auto;
  max-height: calc(100% - 80px);
  min-height: 290px;
  flex-direction: row;
  margin: 40px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  position: relative;
  pointer-events: auto;
}

@media screen and (max-height: 680px) {
  .nav-drawer .drawer__contents {
    height: calc(100% - 160px);
    margin-block: 120px auto;
  }
}

.nav-drawer .drawer__scrollable {
  flex-direction: row;
  flex-shrink: 0;
  padding: 0;
  overflow: visible;
}

.nav-drawer__main-nav {
  width: 270px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.85);
  padding: 16px 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: border-radius 0.3s cubic-bezier(.165, .84, .44, 1);
  scrollbar-width: thin;
  overflow: hidden auto;
}

.mobile-nav__utilities {
  padding-block-start: 20px;
  margin: auto 0 0;
}

.nav-drawer__subchild,
.nav-drawer__grandchild {
  width: 100%;
}

.nav-drawer__child-nav,
.nav-drawer__grandchild-nav {
  max-height: 100%;
  list-style: none;
  padding: 7px 0;
  margin: 0;
  overflow: hidden auto;
  scrollbar-width: thin;
}

.nav-drawer__collections {
  width: auto;
  padding: 20px;
}

.nav-drawer__collections h3 {
  font-family: inherit;
  font-weight: bold;
  font-size: 18px;
}

.nav-drawer__card {
  display: block;
  border: 1px solid var(--colorBorder);
  border-radius: 6px;
}

.nav-drawer__card .grid__image-ratio {
  border-radius: 5px 5px 0 0;
}

.nav-drawer__card .grid__image-ratio:before {
  padding-bottom: 45%;
}

.nav-drawer__card span {
  font-weight: bold;
  font-size: 13px;
  line-height: 15px;
  display: block;
  padding: 10px;
}

.mobile-nav__back-button {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  background: #f3f4f4;
  color: #000;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  margin-block-end: 16px;
  border: 1px solid #bbb;
  border-radius: 6px;
}

.mobile-nav__item .mobile-nav__back-button {
  margin: 10px 20px;
}

.mobile-nav__back-button svg {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
  margin-inline-end: 6px;
}

@media screen and (max-width: 989px) {
  .nav-drawer .drawer__inner {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    transform: translate(0, 100%);
    justify-content: flex-end;
  }

  .nav-drawer .drawer__contents {
    max-width: 480px;
    width: calc(100% - 24px);
    height: auto;
    min-height: auto;
    max-height: calc(100% - 96px);
    background: #FFF;
    margin: 12px auto 84px;
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
  }

  .nav-drawer .drawer__scrollable {
    transition: transform 0.3s ease-in-out;
  }

  .nav-drawer__main-nav {
    max-width: 480px;
    width: calc(100vw - 24px);
    background: #FFF;
    border-radius: 0;
    backdrop-filter: none;
  }

  .nav-drawer__subchild,
  .nav-drawer__grandchild {
    max-width: 480px;
    width: calc(100vw - 24px);
    height: 100%;
    flex-shrink: 0;
  }

  .nav-drawer:has(.nav-drawer__subchild.is-open) .drawer__scrollable {
    transform: translate(-33.3333333%, 0);
  }

  .nav-drawer:has(.nav-drawer__grandchild.is-open) .drawer__scrollable {
    transform: translate(-66.6666666%, 0);
  }

  .nav-drawer__collections h3 {
    font-size: 16px;
  }
}

@media screen and (min-width: 990px) {
  .nav-drawer:has(.nav-drawer__subchild.is-open) .nav-drawer__main-nav,
  .nav-drawer:has(.nav-drawer__grandchild.is-open) .nav-drawer__subchild {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .nav-drawer__subchild,
  .nav-drawer__grandchild {
    max-width: 510px;
    width: auto;
    flex-shrink: 0;
    background-color: #FFF;
    opacity: 0;
    border-radius: 0 10px 10px 0;
    transform: translateX(20px);
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-drawer__subchild.is-open,
  .nav-drawer__grandchild.is-open {
    border-left: 1px solid #ccc;
    opacity: 1;
    transform: translate(0);
    pointer-events: auto;
  }

  .nav-drawer__child-nav,
  .nav-drawer__grandchild-nav {
    width: 240px;
  }

  .nav-drawer__collections {
    width: 100%;
  }
}

.mobile-utilities {
  position: fixed;
  max-width: 480px;
  inset: auto 12px 12px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 6px;
  margin-inline: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  z-index: 20;
}

.mobile-utilities__item {
  flex: 1 1 25%;
}

.mobile-utilities__item a,
.mobile-utilities__item button {
  width: 100%;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 5px 4px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}

.mobile-utilities__item.active a,
.mobile-utilities__item.active button {
  background: #0d8f04;
  color: #FFF;
}

.mobile-utilities__item svg {
  --iconWeight: 4px;
  width: 20px;
  height: 20px;
}

/* cart drawer */

.cart-drawer .drawer__scrollable {
  background: #f5f5f5;
  padding-block: var(--drawer-gutter);
}

.cart-drawer .cart__item {
  background: #fff;
  padding: 12px;
  margin: 0 0 8px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.cart-shipping-bar-container:empty {
  display: none;
}

.cart-drawer .cart-shipping-bar-container {
  margin: calc(-1 * var(--drawer-gutter)) calc(-1 * var(--drawer-gutter)) var(--drawer-gutter);
}

.cart-drawer .cart-shipping-bar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px var(--drawer-gutter) 14px;
}

.cart__page .cart-shipping-bar-container {
  margin: 0 0 20px;
}

.cart__page .cart-shipping-bar__message {
  font-size: 15px;
}

.cart-shipping-bar__message {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.cart-shipping-bar__track {
  height: 6px;
  border-radius: 999px;
  background: #e8e8e8;
  overflow: hidden;
}

.cart-shipping-bar__fill {
  height: 100%;
  border-radius: inherit;
  background: var(--colorBtnPrimary);
  transition: width 0.35s ease;
}

.cart-shipping-bar--qualified .cart-shipping-bar__fill {
  background: #2e7d32;
}

.cart-shipping-bar--qualified .cart-shipping-bar__message {
  color: #2e7d32;
}

/* aside groups */

.ai-assistance-opened .ai-assistance__sticky {
  transform: translate(100%, -50%);
}

.ai-assistance__sticky {
  position: fixed;
  top: 50%;
  right: 0;
  width: 34px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  transition: all 0.3s;
  z-index: 8;
  pointer-events: auto;
}

.ai-assistance__sticky .btn {
  width: 150px;
  height: 34px;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 10px 4px;
  border-radius: var(--buttonRadius) var(--buttonRadius) 0 0;
  transform: rotate(-90deg);
  text-transform: uppercase;
}

.ai-assistance__sticky .btn svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.ai-assistance {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  align-items: flex-end;
  gap: 12px;
  padding: 40px;
  transform: translate(100%, 0);
  transition: all 0.3s;
  pointer-events: none;
  z-index: 30;
}

.ai-assistance-opened .ai-assistance {
  transform: translate(0);
}

.ai-assistance-opened .ai-assistance__mask {
  opacity: 1;
  pointer-events: auto;
}

.ai-assistance__mask {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--colorModalBg);
  opacity: 0;
  pointer-events: none;
}

.ai-assistance__inner {
  width: 400px;
  background: rgb(255 255 255 / 85%);
  padding: 24px;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  pointer-events: auto;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.ai-assistance__heading {
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  padding-block-end: 10px;
  margin-block-end: 12px;
  border-bottom: 1px solid #ccc;
}

.ai-assistance__close {
  font-weight: bold;
  font-size: 12px;
  padding: 0;
  color: red;
  text-transform: uppercase;
}

.ai-assistance__search {
  background: #f5f5f5;
  display: block;
  padding: 10px;
  margin-block-end: 12px;
  border: 1px solid var(--colorBorder);
  border-radius: 30px;
  position: relative;
}

.ai-initialized .ai-assistance__search {
  padding-block-end: 56px;
  border-radius: 10px;
}

.ai-assistance__search textarea {
  width: 100%;
  min-height: 26px;
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  background: transparent;
  display: block;
  padding: 0 6px;
  border: 0;
  border-radius: 8px;
  transition: all 0.3s;
  resize: none;
  scrollbar-width: thin;
}

.ai-assistance__search textarea::placeholder {
  opacity: 1;
}

.ai-assistance__search .btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  min-width: 36px;
  padding: 7px;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.ai-initialized .ai-assistance__search .btn {
  opacity: 1;
  pointer-events: auto;
}

.ai-assistance__search .btn.btn--loading:before {
  width: 16px;
  height: 16px;
  margin-block-start: -8px;
  margin-inline-start: -8px;
  border-width: 2px;
}

.ai-assistance__search .btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ai-initialized .ai-assistance__category {
  display: none;
}

.ai-assistance__category {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-assistance__category li {
  width: calc(50% - 6px);
  min-height: 76px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  padding: 12px;
  margin: 0;
  border-radius: 10px;
  cursor: pointer;
}

.ai-assistance__category li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-inline-end: 10px;
}

.ai-assistance__category li h3 {
  font-family: inherit;
  font-weight: bold;
  font-size: 13px;
  margin-block-end: 3px;
}

.ai-assistance__category li p {
  font-size: 12px;
  margin: 0;
}

@media screen and (max-width: 989px) {
  .ai-assistance {
    width: 100%;
    height: 100%;
    padding: 12px;
    opacity: 0;
    transform: none;
    transition: opacity 0s cubic-bezier(0.165,0.84,0.44,1) 0.25s;
    z-index: 20;
  }

  .ai-assistance-opened .ai-assistance{
    opacity: 1;
    transition-delay: 0s;
    pointer-events: auto;
  }

  .ai-assistance-opened .ai-assistance__inner {
    transform: translate(0);
    pointer-events: auto;
  }

  .ai-assistance__inner {
    position: absolute;
    inset-block-end: 84px;
    inset-inline: 0;
    max-width: 480px;
    width: calc(100% - 24px);
    max-height: calc(100% - 96px);
    background: #FFF;
    padding: 20px;
    margin-inline: auto;
    border-radius: 8px;
    transform: translate(0, calc(100% + 84px));
    transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: none;
    box-shadow: none;
    overflow: hidden auto;
    pointer-events: none;
    z-index: 1;
  }
}

/* product grid */

.product-grid,
.collection-grid {
  --grid-vertical-spacing: 8px;
  --grid-horizontal-spacing: 8px;

  display: flex;
  flex-wrap: wrap;
  row-gap: var(--grid-vertical-spacing);
  column-gap: var(--grid-horizontal-spacing);
  margin: 0;
}

.collection-grid .grid__item,
.product-grid .grid__item {
  width: calc(50% - var(--grid-horizontal-spacing) * 0.5);
  padding: 0;
  margin: 0;
}

.product-grid .grid__promotional {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .grid-1--mobile .grid__item {
    width: 100%;
  }

  .grid-3--mobile .grid__item {
    width: calc(33.3333333% - var(--grid-horizontal-spacing) *  2 / 3);
  }
}

@media screen and (min-width: 769px) {
  .product-grid,
  .collection-grid {
    --grid-vertical-spacing: 10px;
    --grid-horizontal-spacing: 10px;
  }

  .collection-grid .grid__item,
  .product-grid .grid__item {
    width: calc(33.3333333% - var(--grid-horizontal-spacing) *  2 / 3);
  }

  .grid-1--tablet .grid__item,
  .grid-1--tablet-grid .grid__promotional {
    width: 100%;
  }

  .grid-2--tablet .grid__item {
    width: calc(50% - var(--grid-horizontal-spacing) * 0.5);
  }

  .grid-4--tablet .grid__item {
    width: calc(25% - var(--grid-horizontal-spacing) *  3 / 4);
  }

  .grid-3--tablet .grid__promotional {
    width: calc(66.6666666% - var(--grid-horizontal-spacing) *  2 / 3);
  }

  .grid-4--tablet .grid__promotional {
    width: calc(50% - var(--grid-horizontal-spacing) *  3 / 4);
  }
}

@media screen and (min-width: 990px) {
  .grid-1--desktop .grid__item {
    width: 100%;
  }

  .grid-2--desktop .grid__item {
    width: calc(50% - var(--grid-horizontal-spacing) * 0.5);
  }

  .grid-3--desktop .grid__item {
    width: calc(33.3333333% - var(--grid-horizontal-spacing) *  2 / 3);
  }

  .grid-4--desktop .grid__item,
  .grid-5--desktop .grid__item,
  .grid-6--desktop .grid__item {
    width: calc(25% - var(--grid-horizontal-spacing) *  3 / 4);
  }

  .grid-7--desktop .grid__item {
    width: calc(20% - var(--grid-horizontal-spacing) *  4 / 5);
  }

  .grid-4--desktop .grid__promotional,
  .grid-5--desktop .grid__promotional,
  .grid-6--desktop .grid__promotional {
    width: calc(50% - var(--grid-horizontal-spacing) *  3 / 4);
  }
}

@media screen and (min-width: 1200px) {
  .grid-5--desktop .grid__item,
  .grid-6--desktop .grid__item {
    width: calc(20% - var(--grid-horizontal-spacing) *  4 / 5);
  }

  .grid-5--desktop .grid__promotional,
  .grid-6--desktop .grid__promotional {
    width: calc(40% - var(--grid-horizontal-spacing) *  4 / 5);
  }

  .grid-7--desktop .grid__item {
    width: calc(16.6666667% - var(--grid-horizontal-spacing) *  5 / 6);
  }
}

@media screen and (min-width: 1600px) {
  .grid-6--desktop .grid__item {
    width: calc(16.6666667% - var(--grid-horizontal-spacing) *  5 / 6);
  }

  .grid-7--desktop .grid__item {
    width: calc(14.2857143% - var(--grid-horizontal-spacing) *  6 / 7);
  }
}

/* swiper component */

swiper-component {
  display: block;
  position: relative;
}

swiper-component .swiper {
  position: static;
}

swiper-component .product-grid .grid__item,
swiper-component .collection-grid .grid__item {
  height: auto;
  margin-block-end: 10px;
  margin-inline-end: var(--grid-horizontal-spacing);
}

swiper-component .product-grid .grid__item:last-child,
swiper-component .collection-grid .grid__item:last-child {
  margin-inline-end: 0;
}

.swiper-button-next, 
.swiper-button-prev {
  --swiper-navigation-sides-offset: 0.5rem;
  width: 1.875rem;
  height: 1.875rem;
  background: var(--colorBtnPrimary);
  color: var(--colorBtnPrimaryText);
  margin-top: -0.9375rem;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.9rem rgba(0, 0, 0, 0.15);
  user-select: none;
  z-index: 3;
}

.swiper-button-prev {
  transform: scaleX(-1);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next svg, 
.swiper-button-prev svg {
  width: 1rem;
  height: 1rem;
}

@media screen and (min-width: 769px) {
  .swiper-button-next, 
  .swiper-button-prev {
    --swiper-navigation-sides-offset: 0.625rem;
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .swiper-button-next, 
  .swiper-button-prev {
    --swiper-navigation-sides-offset: 0.625rem;
    transition: 0.3s ease;
  }

  .swiper:not(:hover) .swiper-button-next, 
  .swiper:not(:hover) .swiper-button-prev {
    --swiper-navigation-sides-offset: -2.5rem;
    opacity: 0;
  }
}

@media screen and (max-width: 989px) {
  .product-grid__overflow {
    --grid-horizontal-spacing: 20px;
    width: calc(100% + 48px);
    flex-wrap: nowrap;
    gap: 10px;
    padding: 20px 24px;
    margin: -20px -24px 0;
    scroll-snap-type: x mandatory;
    overflow: auto hidden;
  }

  .product-grid__overflow .grid__item {
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .product-grid__overflow {
    width: calc(100% + 32px);
    padding-inline: 16px;
    margin-inline: -16px;
  }

  .product-grid__overflow .grid__item {
    scroll-margin-left: 65px;
  }
}

.grid-product .grid-product__content {
  min-height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.grid-product .grid-product__image-mask {
  /* border-bottom: 1px solid #e0e0e0; */
  border-radius: 6px 6px 0 0;
}

.grid-product .grid-product__link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.grid-product .grid-product__meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 14px 12px;
}

.grid-product .jdgm-widget {
  font-weight: 500;
  font-size: 13px;
  margin-block-end: 6px;
}

.grid-product .jdgm-widget:has([data-number-of-reviews="0"]) {
  display: none !important;
}

.grid-product .jdgm-widget .jdgm-prev-badge:after {
  content: '(' attr(data-number-of-reviews) ')';
}

.grid-product .jdgm-widget .jdgm-star {
  padding-inline-end: 2px !important;
}

.grid-product .jdgm-widget .jdgm-prev-badge__text {
  display: none;
}

.grid-product .grid-product__title {
  max-height: 2.5em;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.grid-product__spacer {
  margin-block-start: auto;
}

.product-offer-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 8px;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}

.product-offer-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #E31E24;
}

.product-offer-badge span {
  position: relative;
}

@media screen and (max-width: 479px) {
  .product-offer-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 48px;
    height: 48px;
    font-size: 10px;
    padding: 5px;
  }
}

.grid-product__offer {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.25;
  color: #bf031c;
  margin-block: 4px 6px;
}

.grid-product__offer svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px;
}

.grid-product__price-unit {
  font-size: 12px;
  margin-block: 8px -2px;
}

.grid-product .grid-product__price {
  font-weight: bold;
  font-size: 15px;
  color: var(--colorPrice);
  margin-block: 6px 0;
}

.grid-product .grid-product__price--sale {
  margin-inline-end: 2px;
}

.grid-product .grid-product__price--original {
  font-weight: 500;
  font-size: 90%;
  color: #a9a9a9;
  margin: 0;
}

.grid-product__buttons {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}

.grid-product__buttons .btn {
  min-width: 34px;
  padding: 7px;
  border-radius: 30px;
}

.grid-product__buttons .btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.grid-product .grid-product__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.grid-product .grid-product__badges span {
  font-size: 11px;
  line-height: 13px;
  background: #000000;
  color: #FFF;
  padding: 4px 6px;
  border-radius: 4px;
  text-transform: none;
}

.grid-product .grid-product__badges span.savings {
  background: var(--colorSaleTag);
  color: var(--colorSaleTagText);
  text-transform: uppercase;
}

.product__size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-block: -4px 10px;
}

.product__size-options label {
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  padding: 3px 6px;
  margin: 0;
  border: 1px solid var(--colorBorder);
  border-radius: 4px;
  cursor: pointer;
}

.product__size-options label span {
  text-transform: uppercase;
}

.product__size-options label:has(input:checked) {
  background: var(--colorBtnPrimary);
  color: var(--colorBtnPrimaryText);
  border-color: 1px solid var(--colorBtnPrimary);
}

.product__size-options label:has(input:disabled) {
  text-decoration: line-through;
  opacity: 0.5;
}

.grid-product__form {
  padding: 0 12px 14px;
  position: relative;
  z-index: 2;
}

.grid-product__form .product__quantity-with-button .product__quantity {
  width: 100%;
  margin: 0;
}

.grid-product__form .product__quantity .js-qty__wrapper {
  max-width: 100%;
  width: 100%;
}

.grid-product__form .product__quantity .js-qty__num {
  font-size: 15px;
  line-height: 20px;
  padding: 8px 24px;
}

.grid-product__form .product__quantity .js-qty__adjust {
  padding: 0 14px;
  cursor: pointer;
}

.grid-product__form .product__quantity .js-qty__adjust .icon {
  height: 13px;
  width: 13px;
}

.grid-product__form .add-to-cart {
  min-width: 48px;
  font-size: 15px;
  line-height: 20px;
  padding: 8px 10px;
}

[data-in-cart="false"] .grid-product__form .product__quantity, 
[data-in-cart="true"] .grid-product__form .add-to-cart {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.grid-product__form .add-to-cart.btn--loading:before {
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
}

.grid-product__form .errors {
  font-size: 11px;
  line-height: 1.125;
  padding: 6px 8px;
  margin-block: 6px 0;
}

@media screen and (max-width: 768px) {
  .grid-product.mobile-list--view .grid-product__content {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .grid-product.mobile-list--view .grid__item-image-wrapper {
    width: 140px;
    grid-row: span 2;
  }

  .grid-product.mobile-list--view .grid-product__image-mask {
    border: 0;
    border-radius: 6px 0 0 6px;
  }

  .grid-product.mobile-list--view product-form {
    align-self: flex-end;
  }
}

@media screen and (max-width: 479px) {
  .grid-product .grid-product__meta {
    padding: 12px;
  }

  .grid-product .jdgm-widget {
    margin-block-end: 6px;
  }

  .grid-product .grid-product__title {
    font-size: 13px;
  }

  .grid-product__offer {
    font-size: 12px;
  }

  .grid-product__price-unit {
    margin-block-start: 6px;
  }

  .grid-product .grid-product__price {
    font-size: 14px;
  }

  .grid-product__buttons .btn {
    min-width: 30px;
    padding: 6px;
  }

  .grid-product__buttons .btn svg {
    width: 16px;
    height: 16px;
  }

  .grid-product .grid-product__badges span {
    font-size: 11px;
    line-height: 12px;
    padding: 4px 6px;
  }

  .grid-product__form {
    padding: 0 12px 12px;
  }

  .grid-product__form .product__quantity .js-qty__num,
  .grid-product__form .add-to-cart {
    font-size: 14px;
    line-height: 18px;
  }

  .grid-product.mobile-list--view .grid__item-image-wrapper {
    width: 130px;
  }

  .grid-product.mobile-list--view .grid-product__title {
    font-size: 14px;
  }
}

@media screen and (min-width: 990px) {
  .grid-product .grid-product__meta {
    padding: 14px 14px 12px;
  }

  .grid-product__form {
    padding: 0 14px 14px;
  }
}

.category__list-item {
  width: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin-block-end: 12px;
  margin-inline-end: 12px;
  text-align: center;
}

.category__list-item:last-child {
  margin-inline-end: 0;
}

.category__list-item.active .category__list-image {
  padding: 4px;
  border: 2px solid #0d8f04;
}

.category__list-image {
  width: 60px;
  padding: 2px;
  margin-block-end: 10px;
  border: 1px solid #ccc;
  border-radius: 50%;
  overflow: hidden;
}

.category__list-image img, 
.category__list-image svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/ 1;
  display: block;
  background: #f5f5f5;
  border-radius: 50%;
}

.category__list-image img {
  object-fit: cover;
}

.category__list-item h3 {
  font-family: var(--typeBasePrimary), var(--typeBaseFallback);
  font-weight: 600;
  font-size: 11px;
  line-height: 13px;
  margin: 0;
}

.category__list .swiper-button-next, 
.category__list .swiper-button-prev {
  --swiper-navigation-sides-offset: -10px;
  top: 0;
  width: 24px;
  height: 24px;
  margin-top: 18px;
}

.category__list .swiper-button-next svg, 
.category__list .swiper-button-prev svg {
  width: 12px;
  height: 12px;
}

@media screen and (min-width: 768px) {
  .category__list-item {
    width: 82px;
  }

  .category__list-image {
    width: 68px;
  }

  .category__list-item h3 {
    font-size: 13px;
    line-height: 15px;
  }

  .category__list .swiper-button-next, 
  .category__list .swiper-button-prev {
    --swiper-navigation-sides-offset: -8px;
    width: 28px;
    height: 28px;
    margin-top: 20px;
  }

  .category__list .swiper-button-next svg, 
  .category__list .swiper-button-prev svg {
    width: 14px;
    height: 14px;
  }
}

/* testimonials */

.testimonials-section {
  overflow: hidden;
}

.testimonials-carousel,
.testimonials-summary {
  min-width: 0;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: center;
}

.testimonials-summary__rating {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.testimonials-summary__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: #f4b400;
}

.testimonials-summary__stars .rating-stars__icon {
  width: 22px;
  height: 22px;
}

.rating-stars__icon--half {
  position: relative;
  display: inline-block;
  line-height: 0;
  color: inherit;
}

.rating-stars__icon--half .rating-stars__icon-base,
.rating-stars__icon--half .rating-stars__icon-clip {
  width: 100%;
  height: 100%;
}

.rating-stars__icon--half .rating-stars__icon-base {
  color: #ddd;
}

.rating-stars__icon--half .rating-stars__icon-clip {
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  clip-path: inset(0 50% 0 0);
}

.testimonials-summary__count {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 15px;
  line-height: 1.4;
}

.testimonials-summary__count strong {
  font-weight: 700;
}

.testimonials-summary__source {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.testimonials-google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials-google-mark--lg {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.testimonials-section .swiper-wrapper {
  align-items: stretch;
}

.testimonials-section .testimonials-slide,
.testimonials-section .swiper-slide {
  width: calc(33.33% - 12px * 2 / 3);
  height: auto;
  margin-right: 12px;
  display: flex;
}

.testimonials-section .testimonials-slide:last-child,
.testimonials-section .swiper-slide:last-child {
  margin-right: 0;
}

.testimonials-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 20px 18px 18px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: none;
  quotes: none;
}

.testimonials-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.testimonials-card__stars {
  display: flex;
  gap: 2px;
  color: #f4b400;
}

.testimonials-card__stars .rating-stars__icon {
  width: 16px;
  height: 16px;
}

.rating-stars__icon--empty {
  color: #ddd;
}

.testimonials-card__meta {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.3;
  color: #9a9a9a;
}

.testimonials-card__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: #4a4a4a;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonials-card__text p {
  margin: 0;
}

.testimonials-card__author {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
}

.testimonials-carousel .swiper-button-next, 
.testimonials-carousel .swiper-button-prev {
  --swiper-navigation-sides-offset: -0.875rem;
}

@media (hover: hover) and (pointer: fine) {
  .testimonials-carousel .swiper-button-next, 
  .testimonials-carousel .swiper-button-prev {
    --swiper-navigation-sides-offset: -1rem;
  }
}

@media screen and (max-width: 989px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-summary__rating {
    font-size: 30px;
  }

  .testimonials-section .testimonials-slide, 
  .testimonials-section .swiper-slide {
    width: calc(50% - 6px);
  }
}

@media screen and (max-width: 768px) {
  .testimonials-section .page-width {
    padding-inline: 20px;
  }
}

@media screen and (max-width: 600px) {
  .testimonials-section .testimonials-slide, 
  .testimonials-section .swiper-slide {
    width: 100%;
  }
}

@media screen and (min-width: 990px) {
  .testimonials-carousel {
    padding-inline: 2px;
  }
}

/* shop by reel */

.shop-reel__grid {
  display: flex;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  overflow: auto hidden;
}

@media (pointer: coarse) and (hover: none) {
  .shop-reel__grid {
    --grid-horizontal-spacing: -50px;
    gap: 10px;
  }
}

.shop-reel__item {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 12px 0 12px 0;
  scroll-snap-align: start;
  scroll-margin: 0;
  overflow: hidden;
  cursor: pointer;
}

.shop-reel__video {
  position: relative;
  overflow: hidden;
}

.shop-reel__video:before {
  content: '';
  display: block;
  padding-block-end: 175%;
}

.shop-reel__video > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-reel__info {
  display: flex;
  flex-direction: column;
  padding: 10px 5px;
  text-align: center;
}

.shop-reel__image {
  width: 68px;
  height: 68px;
  background: #FFF;
  align-self: center;
  margin-block: -44px 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.shop-reel__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.shop-reel__title {
  max-height: 2.7em;
  font-size: 14px;
  line-height: 1.35;
  margin-block-end: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
  text-transform: none;
  overflow: hidden;
}

.shop-reel__price {
  font-size: 16px;
}

.shop-reel__price > span {
  margin-inline: 2px;
}

.shop-reel__price .price--original {
  font-size: 14px;
  opacity: 0.7;
  text-decoration: line-through;
}

.shop-reel__price .price--savings {
  font-size: 14px;
  line-height: 18px;
  background: #7a3665;
  color: #FFF;
  display: inline-block;
  padding: 2px 6px;
  margin-block-start: 4px;
  border-radius: 4px;
}

.shop-reel__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 20;
}

.shop-reel__modal.open {
  opacity: 1;
  pointer-events: auto;
}

.shop-reel__modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.15);
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 2;
}

.shop-reel__modal__close svg {
  --iconWeight: 4px;
  width: 34px;
  height: 34px;
  display: block;
}

.shop-reel__volume {
  position: absolute;
  top: 10px;
  left: calc(50% - 54px);
  width: 44px;
  height: 44px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
}

.shop-reel__volume svg {
  width: 24px;
  height: 24px;
}

.shop-reel__volume:not(.muted) .icon-volume-down, 
.shop-reel__volume.muted .icon-volume-up {
  display: none;
}

.shop-reel__modal__slider {
  width: 100%;
  height: 100%;
}

.shop-reel__modal__slider .flickity-viewport {
  height: 100% !important;
}

.shop-reel__modal__slider .flickity-button:focus {
  outline: none;
  box-shadow: none;
}

.shop-reel__modal__slide {
  width: 100%;
  height: 100%;
}

.shop-reel__modal__inner {
  width: 720px;
  display: flex;
  flex-direction: column;
  background: #FFF;
  position: relative;
}

@media screen and (min-width: 769px) {
  .shop-reel__modal__slide {
    display: flex;
    justify-content: center;
    align-items: safe center;
  }

  .shop-reel__modal__inner {
    max-height: calc(100% - 40px);
    flex-direction: row;
  }

  .shop-reel__modal__inner:before {
    content: '';
    width: 0;
    padding-bottom: 90%;
  }
}

@media screen and (min-width: 1200px) {
  .shop-reel__modal__slider {
    max-width: 1600px;
    margin-inline: auto;
  }

  .shop-reel__modal__slide {
    width: 500px;
  }

  .shop-reel__modal__slide.is-selected .shop-reel__modal__inner {
    min-width: 700px;
  }

  .shop-reel__modal__slide:not(.is-selected) .shop-reel__modal__inner {
    width: 45%;
    max-height: calc(100% - 120px);
  }

  .shop-reel__modal__slide:not(.is-selected) .shop-reel__modal__inner:before {
    padding-bottom: 180%;
  }

  .shop-reel__modal__slide:not(.is-selected) .shop-reel__modal-media {
    width: 100%;
  }

  .shop-reel__modal__slide:not(.is-selected) .shop-reel__modal-info, 
  .shop-reel__modal__slide:not(.is-selected) .shop-reel__volume {
    display: none;
  }
}

.shop-reel__modal-media,
.shop-reel__modal-info {
  width: 50%;
}

.shop-reel__modal-media {
  position: relative;
}

.shop-reel__modal-media > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-reel__modal-info > * {
  flex-shrink: 0;
}

.shop-reel__modal-image {
  width: 180px;
  display: block;
  margin-block-end: 20px;
}

.shop-reel__modal-title {
  max-height: 2.7em;
  font-size: 20px;
  line-height: 1.35;
  font-weight: bold;
  margin-block-end: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
  text-transform: none;
  overflow: hidden;
}

.shop-reel__modal-price {
  font-size: 16px;
  font-weight: bold;
  color: green;
  margin-block-end: 10px;
}

.shop-reel__modal-price .price--original {
  font-weight: 400;
  font-size: 14px;
  color: red;
  margin-inline-end: 4px;
  text-decoration: line-through;
}

.shop-reel__modal-price .price--savings {
  font-weight: 400;
  font-size: 14px;
  color: var(--colorTextBody);
}

.shop-reel__modal-price .price--savings strong {
  color: green;
}

.shop-reel__modal-description {
  font-size: 14px;
}

.shop-reel__modal-url {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  padding: 12px 20px;
}

.shop-reel__modal-url[disabled] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .shop-reel__modal {
    background: #FFF;
    padding: 0;
  }

  .shop-reel__modal__inner {
    width: 100%;
    height: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .shop-reel__modal__close,
  .shop-reel__volume {
    width: 42px;
    height: 42px;
    background: #FFF;
    color: #000000;
    border: 1px solid #ccc;
    border-radius: 50%;
  }

  .shop-reel__modal__close {
    top: 12px;
    right: 12px;
  }

  .shop-reel__modal__close svg {
    width: 28px;
    height: 28px;
  }

  .shop-reel__volume {
    top: 64px;
    left: auto;
    right: 12px;
  }

  .shop-reel__modal-media, 
  .shop-reel__modal-info {
    width: 100%;
  }

  .shop-reel__modal-media {
    flex: 1 1 0;
    height: 0;
  }

  .shop-reel__modal-media > * {
    height: 100%;
    object-fit: contain;
  }

  .shop-reel__modal-info {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 10px;
    padding: 15px;
  }

  .shop-reel__modal-image {
    width: 64px;
    grid-row: 1 / 3;
    margin-block-end: 0;
  }

  .shop-reel__modal-title {
    font-size: 15px;
    margin-block-end: 2px;
  }

  .shop-reel__modal-price {
    font-size: 14px;
    grid-column: 2 / 3;
    margin: 0;
    order: 4;
  }

  .shop-reel__modal-price .price--original {
    font-size: 13px;
  }

  .shop-reel__modal-buttons {
    grid-area: 1 / 3 / 3 / 4;
  }

  .shop-reel__modal-url {
    font-size: 13px;
    line-height: 16px;
    padding: 10px 14px;
  }
}

@media screen and (min-width: 769px) {
  .shop-reel__modal-info {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 24px;
    overflow: hidden auto;
  }

  .shop-reel__modal-buttons {
    position: sticky;
    bottom: -25px;
    background: #FFF;
    padding: 10px 24px 24px;
    margin: auto -24px -24px;
  }
}

/* section tabs */

.section-header.text-left .section-tabs__inner {
  justify-content: flex-start;
}

.section-header.text-right .section-tabs__inner {
  justify-content: flex-end;
}

.section-tabs__inner {
  display: flex;
  justify-content: safe center;
  margin-block-start: 10px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 40px;
  scrollbar-width: thin;
  overflow: auto hidden;
}

.section-tabs__inner:only-child {
  margin-block-start: 0;
}

.section-tab {
  flex-shrink: 0;
  scroll-snap-align: start;
}

.section-tabs--buttons .section-tab {
  min-width: 90px;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  background-color: #FFF;
  padding: 7px 21px;
  margin: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.section-tabs--buttons .section-tab.active {
  background-color: #000;
  color: #FFF;
  border-color: #000;
}

.section-tabs--bullets .section-tab {
  font-weight: 600;
  font-size: 21px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  opacity: 0.65;
  position: relative;
}

.section-tabs--bullets .section-tab.active {
  opacity: 1;
}

.section-tabs--bullets .section-tab svg,
.section-tabs--bullets .section-tab img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-inline-end: 10px;
}

.section-tabs--bullets .section-tab img {
  object-fit: contain;
}

.section-tabs--bullets .section-tab:first-child {
  padding-inline-start: 0;
}

.section-tabs--bullets .section-tab:last-child {
  padding-inline-end: 0;
}

.section-tabs--bullets .section-tab:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: #8d8d8d;
  transform: translate(-3px, -3px);
  border-radius: 10px;
}

.section-tabs--bullets .section-tab:first-child:before {
  display: none;
}

.section-tabs-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(40px);
  opacity: 0;
  pointer-events: none;
}

.section-tabs-content.is-visible {
  position: relative;
  transform: translate(0);
  opacity: 1;
  transition: all 0.5s;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .section-tabs__inner {
    padding-inline: 20px;
    margin-inline: -20px;
    scrollbar-width: none;
  }

  .section-tabs--bullets .section-tab {
    font-size: 19px;
    padding: 0 20px;
  }
}

/* featured collection */

.featured-collection {
  background: #f3f4f4;
  overflow: hidden;
}

.featured-collection__inner {
  position: relative;
}

.featured-collection__banner > * {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.featured-collection__banner img {
  border-radius: 10px;
}

.featured-collection__grid {
  width: 100%;
}

.featured-collection__grid .swiper {
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .featured-collection .page-width {
    padding-inline: 20px;
  }
}

@media screen and (min-width: 990px) {
  .featured-collection__inner {
    flex-direction: row;
  }

  .featured-collection__banner {
    width: calc(35% - 6px);
  }
}

@media screen and (min-width: 1200px) {
  .featured-collection__banner {
    width: calc(30% - 6px);
  }
}

/* Featured collections: Layout 2 */

.featured-collection-list .grid {
  margin-left: -20px;
  margin-bottom: -20px;
}

.featured-collection-list .grid__item {
  padding-left: 20px;
  margin-bottom: 20px;
}

.card-collection {
  height: 100%;
  background: var(--color-background);
  color: var(--color-foreground);
  display: block;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.card-collection__info {
  padding: 30px;
  position: relative;
}

.card-collection__info h3 {
  font-size: 28px;
  margin-block-end: 4px;
}

.card-collection__info p {
  font-size: 16px;
  margin-block-end: 10px;
}

.card-collection__info .btn-text {
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
}

.card-collection.list--view {
  min-height: 240px;
  display: flex;
}

.card-collection.list--view.image--first {
  justify-content: flex-end;
}

.card-collection.list--view.content--middle {
  align-items: center;
}

.card-collection.list--view.content--bottom {
  align-items: flex-end;
}

.card-collection.list--view:before {
  content: '';
  width: 0;
  padding-bottom: 50%;
}

.card-collection.list--view .card-collection__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: transparent;
}

.card-collection.list--view.image--second .card-collection__image {
  left: auto;
  right: 0;
}

.card-collection.list--view .card-collection__image image-element,
.card-collection.list--view .card-collection__image img {
  width: 100%;
  height: 100%;
}

.card-collection.list--view .card-collection__image img {
  object-fit: contain;
  object-position: bottom right;
}

.card-collection.list--view .card-collection__info {
  max-width: 380px;
  width: 75%;
  padding: 38px;
}

.card-collection.grid--view {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-collection.grid--view.text-center {
  align-items: center;
}

.card-collection.grid--view.text-right {
  align-items: flex-end;
}

.card-collection.grid--view.image--first {
  flex-direction: column-reverse;
}

.card-collection.grid--view .card-collection__image {
  order: 1;
}

.card-collection.grid--view .card-collection__info {
  max-width: 360px;
}

.card-collection.grid--view.image--second .card-collection__info {
  padding-bottom: 10px;
}

@media screen and (max-width: 989px) {
  .card-collection__info {
    padding: 24px;
  }

  .card-collection__info h3 {
    font-size: 22px;
  }

  .card-collection__info p {
    font-size: 15px;
  }

  .card-collection__info .btn-text {
    font-size: 12px;
  }

  .card-collection.list--view .card-collection__info {
    padding: 24px;
  }
}

@media screen and (max-width: 768px) {
  .card-collection.list--view {
    min-height: 210px;
  }
}

/* seo - richtext */

.collection-richtext {
  margin-top: 60px;
}

.collection-richtext__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 610px;
  overflow: hidden;
}

.collection-richtext.is-open .collection-richtext__inner {
  max-height: none;
}

.collection-richtext__info {
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .collection-richtext__inner {
    flex-direction: row;
  }

  .collection-richtext__info {
    width: 60%;
  }

  .collection-richtext__table {
    width: 40%;
  }
}

@media screen and (min-width: 990px) {
  .collection-richtext__inner {
    gap: 40px;
  }

  .collection-richtext__info {
    width: 75%;
    font-size: 15px;
  }

  .collection-richtext__table {
    width: 35%;
  }
}

.collection-richtext .rte ol, 
.collection-richtext .rte p, 
.collection-richtext .rte table, 
.collection-richtext .rte ul {
  margin-bottom: 15px;
}

.collection-richtext__category {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--colorBorder);
}

.collection-richtext__category a {
  width: 50%;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.25;
  padding: 8px;
  border-bottom: 1px solid var(--colorBorder);
  text-decoration: underline;
}

.collection-richtext__category a:nth-child(odd) {
  border-right: 1px solid var(--colorBorder);
}

.collection-richtext__category a:last-child, 
.collection-richtext__category a:nth-last-child(2):not(:nth-child(even)) {
  border-bottom: 0;
}

.collection-richtext__table h6 {
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: none;
}

.collection-richtext__table table td {
  font-size: 13px;
  padding: 8px 12px;
}

.collection-richtext__table table td a {
  font-weight: 500;
  color: #7a3665;
}

.collection-richtext__table .note-text {
  font-size: 13px;
  margin-block: 10px 0;
}

.collection-richtext__toggle {
  font-weight: bold;
  font-size: 15px;
  padding: 0;
  margin: 15px 0 0;
  text-decoration: underline;
}

/* product media modal */

.product__media-modal-opener {
  margin-top: 15px;
  text-align: center;
}

.product__media-modal-opener button {
  font-weight: 500;
  font-size: 15px;
  color: #2162a1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-media-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.product-media-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: safe center;
  align-items: safe center;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
}

.product-media-modal__inner {
  width: calc(100% - 40px);
  height: calc(100% - 100px);
  background: #FFF;
  padding: 45px 25px 25px;
  border-radius: 10px;
  position: relative;
  overflow: hidden auto;
}

.product-media-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.product-media-modal__close svg {
  --iconWeight: 4px;
  width: 34px;
  height: 34px;
}

.product-media-modal__heading {
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: none;
}

.product-media-modal__tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--colorBorder);
}

.product-media-modal__tab {
  font-size: 15px;
  line-height: 20px;
  color: #858585;
  padding: 0 0 10px;
  border-bottom: 2px solid transparent;
  margin: 0 0 -2px;
}

.product-media-modal__tab.is-active {
  color: var(--colorTextBody);
  border-bottom-color: var(--colorTextBody);
}

.product-media-modal__tab-content .grid {
  row-gap: 22px;
}

@media screen and (min-width: 769px) {
  .product-media-modal__inner {
    width: calc(100% - 60px);
  }
}

@media screen and (min-width: 990px) {
  .product-media-modal__inner {
    width: calc(100% - 80px);
    padding: 45px;
  }
}

@media screen and (min-width: 1280px) {
  .product-media-modal__tab-content .medium-up--two-thirds {
    width: 70%;
  }

  .product-media-modal__tab-content .medium-up--two-sixths {
    width: 30%;
  }
}

.product-media-modal__video {
  max-width: 950px;
  margin-inline: auto;
}

.product-media-modal__video video {
  width: 100%;
  height: auto;
  display: block;
}

.product-media-modal__video h6 {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0;
  margin: 15px 0 0;
  text-transform: none;
}

.product-media-modal__video-thumb {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  cursor: pointer;
}

.product-media-modal__video-thumb:last-child {
  margin-bottom: 0;
}

.product-media-modal__video-thumb .image {
  max-width: 160px;
  width: 40%;
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
}

.product-media-modal__video-thumb .image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 0.5625;
  object-fit: cover;
}

.product-media-modal__video-thumb .icon-play {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.35);
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -16px 0 0 -16px;
  padding-left: 2px;
  border-radius: 50%;
}

.product-media-modal__video-thumb .text {
  max-height: 3.75em;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.25;
  flex: 1 1 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media screen and (min-width: 990px) {
  .product-media-modal__video h6 {
    font-size: 18px;
  }

  .product-media-modal__heading {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.product-media-modal__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-media-modal__image-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-media-modal__image-thumb {
  border: 2px solid var(--colorBorder);
  cursor: pointer;
}

.product-media-modal__image-thumb.active {
  border-color: var(--colorTextBody);
}

.product-media-modal__image-thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

@media screen and (min-width: 480px) and (max-width: 768px),
       screen and (min-width: 1280px) {
  .product-media-modal__image-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .product-media-modal__image img {
    aspect-ratio: 1 / 0.5;
  }
}

.product-offers h6 {
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: none;
  text-transform: uppercase;
}

.product-offers ul {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 12px;
  overflow: auto hidden;
  scrollbar-width: thin;
}

.product-offers ul li {
  min-width: 180px;
  flex: 1 0 40%;
  font-size: 13px;
  padding: 12px 16px;
  margin-bottom: 0;
  position: relative;
  background: #f5f5f5;
  border: 1px dashed #bbb;
  border-radius: 6px;
}

.product-offers ul li svg {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 32px;
  height: 32px;
  margin-top: -16px;
}

.product-single__offer {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  background: #ffe5e8;
  color: #bf031c;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  margin-block: -6px 20px;
}

.product-single__offer svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px;
}

.product__social-sharing {
  display: flex;
}

.product__social-sharing > label {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
  margin-right: 10px;
}

.product__social-sharing .social-sharing__link {
  display: inline-flex;
  padding-block: 4px;
}

.product__social-sharing .social-sharing__title {
  display: none;
}

@media screen and (max-width: 989px) {
  .product-offers ul li {
    flex: 1 0 60%;
    font-size: 12px;
    padding-block: 10px;
  }
}

delivery-countdown {
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-block: 18px 16px;
}

delivery-countdown svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

delivery-countdown .delivery-message {
  margin: 0;
}

delivery-countdown .delivery-countdown {
  font-weight: 700;
  background: #0d8f042e;
  color: #0d8f04;
  padding: 2px 8px;
  margin-inline: 2px;
  border-radius: 4px;
}

delivery-countdown .delivery-day {
  color: #0d8f04;
}

.product__rich-media img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.multi-icon__text-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.multi-icon__text {
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background-color: #d3d3d3;
  color: #333;
  border-radius: 4px;
}

.multi-icon__text img {
  width: 16px;
  height: 13px;
  display: block;
}

.product-block:has(+ .product-block--tab) {
  margin: 0;
}

.product-block:has(+ .product-block--tab) .product__richtext.show--divider {
  padding-block-end: 24px;
  border-bottom: 1px solid var(--colorBorder);
}

.product__richtext.show--divider {
  padding-block-start: 20px;
  border-top: 1px solid var(--colorBorder);
}

.product__richtext h3 {
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
  margin-block-end: 15px;
  text-transform: uppercase;
}

.product__richtext .rte {
  font-size: 15px;
  line-height: 1.5;
}

.product__richtext .rte h1,
.product__richtext .rte h2,
.product__richtext .rte h3 {
  font-family: inherit;
  font-weight: bold;
  margin-block-end: 10px;
  text-transform: none;
}

.product__richtext .rte h1 + p,
.product__richtext .rte h2 + p,
.product__richtext .rte h3 + p {
  margin-block-start: 10px;
}

.product__richtext .rte h1{
  font-size: 20px;
}

.product__richtext .rte h2 {
  font-size: 18px;
}

.product__richtext .rte h3 {
  font-size: 16px;
}


.product__richtext table td {
  font-size: 15px;
}

.product__richtext table td:first-child {
  font-weight: 600;
  background: #f5f5f5;
}

#judgeme_product_reviews {
  min-width: 100%;
}

#judgeme_product_reviews .jdgm-rev-widg {
  background: #FFF;
  padding: 24px 16px;
  border: 1px solid var(--colorBorder);
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  #judgeme_product_reviews .jdgm-rev-widg {
    padding: 32px 24px;
  }
}

.footer__republic-separator {
  background: linear-gradient(135deg, orange 35%, white calc(35% + 1px), white 65%, green calc(65% + 1px), #128807 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-block-start: -60px;
  position: relative;
  overflow: hidden;
}

.footer__republic-separator .divider {
  min-width: 1400px;
  width: 100%;
  height: 40px;
  filter: drop-shadow(0 -3px 0 black);
}

.footer__republic-separator .divider:first-child {
  margin-block-start: -2px;
  transform: scaleY(-1);
}

.footer__republic-separator .divider:last-child {
  margin-block-end: -2px;
}

.footer__republic-separator .divider:first-child path {
  fill: #FFF;
}

.footer__republic-inner {
  height: 120px;
  position: relative;
}

.site-footer__chakra {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  margin-left: -105px;
  margin-top: -105px;
  transform: scale(0.5);
}

@media screen and (max-width: 768px) {
  .footer__republic-separator {
    background: linear-gradient(140deg, orange 35%, white calc(35% + 1px), white 65%, green calc(65% + 1px), #128807 100%);
  }

  .footer__republic-separator .divider {
    min-width: 1340px;
  }

  .footer__republic-inner {
    height: 80px;
  }

  .site-footer__chakra {
    transform: scale(0.375);
  }
}

.footer-background img {
  width: 100%;
  height: auto;
  min-height: 300px;
  display: block;
  filter: brightness(0.5);
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .footer-background img {
    min-height: 240px;
  }
}

.main-collection__list .collection-item {
  background: #FFF;
  border: 1px solid var(--colorBorder);
}

.template-page .page-width--narrow {
  max-width: 1280px;
}

.main-page--rte {
  font-size: 16px;
  line-height: 1.65;
}

.main-page--rte p {
  line-height: 1.65;
}

.main-page--rte h1,
.main-page--rte h2,
.main-page--rte h3,
.main-page--rte h4,
.main-page--rte h5,
.main-page--rte h6 {
  line-height: 1.25;
  letter-spacing: 0;
  margin-block-end: 15px;
  text-transform: none;
}

.main-page--rte h1 {
  font-size: 28px;
}

.main-page--rte h2 {
  font-size: 24px;
}

.main-page--rte h3 {
  font-size: 22px;
}

.main-page--rte h4 {
  font-size: 20px;
}

.main-page--rte h5 {
  font-size: 18px;
}

.main-page--rte h6 {
  font-size: 16px;
}

.main-page--rte li img {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .main-page--rte {
    font-size: 15px;
  }

  .main-page--rte h1 {
    font-size: 24px;
  }
  
  .main-page--rte h2 {
    font-size: 22px;
  }
  
  .main-page--rte h3 {
    font-size: 20px;
  }
  
  .main-page--rte h4 {
    font-size: 18px;
  }
  
  .main-page--rte h5 {
    font-size: 16px;
  }
  
  .main-page--rte h6 {
    font-size: 15px;
  }
}

#appstle-loyalty-button {
  max-height: 50px;
  z-index: 20;
}

#appstle-loyalty-button.appstle_show_points .loyalty_widget_available_points {
  display: none;
}

@media screen and (max-width: 768px) {
  #appstle-loyalty-button {
    bottom: 84px !important;
    max-height: 48px;
  }

  #appstle-loyalty-button.appstle-loyalty-right {
    right: 12px !important;
  }
}

#shopify-buyer-consent-modal {
  margin-block-start: 12px;
}

#shopify-buyer-consent-modal.hidden {
  display: none;
}

.theme-block .rte {
  font-size: 15px;
}

.theme-block .rte h3 {
  font-size: 19px;
  margin-block: 28px 16px;
}

.rte__seo-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
  margin: 0;
}

.rte__seo-links ul li {
  display: flex;
  margin: 0;
}

.rte__seo-links ul li:not(:last-child):after {
  content: '|';
  margin: 0 6px;
}

.faqs {
  position: relative;
  z-index: 1;
}

.faqs .page-width {
  max-width: 1000px;
}

.faqs.has-background-image:before {
  content: '';
  background: url('/cdn/shop/files/background-pattern.webp?v=1773731893');
  position: absolute;
  inset: 0;
  opacity: 0.075;
  filter: brightness(1) grayscale(1) contrast(1);
  z-index: -1;
}

shopify-accelerated-checkout-cart {
  --shopify-accelerated-checkout-button-block-size: 46px;
  --shopify-accelerated-checkout-button-inline-size: 46px;
  --shopify-accelerated-checkout-inline-alignment: space-between;
  display: block;
  margin-block-start: 10px;
}

.delivery-date-picker {
  display: block;
  margin-block-end: 18px;
}

.delivery-date-picker label {
  font-weight: 600;
  font-size: 14px;
}

.delivery-date__toggle {
  display: flex;
  align-items: center;
  background: #f5f7f7;
  border: 1px solid var(--colorDrawerBorder);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.delivery-date__toggle .icon-calender {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-inline-start: 16px;
}

.delivery-date__toggle input {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  flex: 1;
  padding: 10px 40px 10px 16px;
  border: 0;
}

.delivery-date__toggle input::placeholder {
  opacity: 1;
}

.delivery-date__toggle .collapsible-trigger__icon {
  right: 6px;
}

.delivery-date-picker.is-open .delivery-date__calendar {
  opacity: 1;
  pointer-events: auto;
}

.delivery-date__calendar {
  position: absolute;
  bottom: calc(100% + var(--drawer-gutter));
  left: var(--drawer-gutter);
  background: #FFF;
  padding: 10px;
  border: 1px solid var(--colorBorder);
  border-radius: 6px;
  opacity: 0;
  transition: 0.15s ease;
  pointer-events: none;
  z-index: 1;
}

.delivery-date__calendar .flatpickr-calendar {
  box-shadow: none;
}

.flatpickr-calendar .flatpickr-current-month {
  font-size: 18px;
  line-height: 24px;
  padding-block: 5px;
}

.flatpickr-calendar .flatpickr-current-month input.cur-year {
  font-weight: 700;
  color: var(--colorBodyText);
}

.flatpickr-calendar .flatpickr-months .numInputWrapper span {
  display: none;
}

.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg, 
.flatpickr-calendar .flatpickr-months .flatpickr-next-month svg {
  display: block;
}

.flatpickr-calendar span.flatpickr-weekday {
  font-size: 13px;
  color: var(--colorBodyText);
}

.flatpickr-calendar .flatpickr-day {
  font-weight: 600;
  font-size: 13px;
}

.flatpickr-calendar .flatpickr-day.prevMonthDay, 
.flatpickr-calendar .flatpickr-day.nextMonthDay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.flatpickr-calendar .flatpickr-day.flatpickr-disabled, 
.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover {
  color: #ccc;
}

.flatpickr-calendar .flatpickr-day.nextMonthDay:is(:nth-child(7n + 1)), 
.flatpickr-calendar .flatpickr-day.nextMonthDay:is(:nth-child(7n + 1)) ~ .nextMonthDay {
  display: none;
}

.collection-header {
  padding: 38px 0;
}

@media screen and (min-width: 769px) {
  .collection-header {
    padding: 48px 0;
  }  
}

.variant-wrapper:not(:has(.variant-input:not(.hide))) {
  display: none;
}

all-category-section {
  display: block;
}

all-category-section.open .all-category__list-container {
  height: var(--list-height);
}

.all-category__list-container {
  height: var(--item-height, 250px);
  transition: 0.3s ease-in-out;
  overflow: hidden;
}

.all-category__list {
  --grid-gutter: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--grid-gutter);
  padding-block-end: 28px;
}

.all-category__list-item {
  width: calc(33.33% - var(--grid-gutter) * 2 / 3);
  background: #FFF;
  border: 1px solid var(--colorBorder);
  border-radius: 6px;
  text-align: center;
}

.all-category__list-image {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.all-category__list-image img, 
.all-category__list-image svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/ 1;
  display: block;
  background: #f5f5f5;
}

.all-category__list-image img {
  object-fit: cover;
}

.all-category__list-item h3 {
  font-family: var(--typeBasePrimary), var(--typeBaseFallback);
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  padding: 12px 8px;
  margin: 0;
}

.all-category__list-button {
  margin-block-start: 40px;
}

.all-category__list-button .btn {
  font-size: 16px;
  padding: 10px 30px;
  text-transform: capitalize;
}

@media screen and (min-width: 560px) {
  .all-category__list-item {
    width: calc(25% - var(--grid-gutter) * 3 / 4);
  }
}

@media screen and (min-width: 769px) {
  .all-category__list {
    --grid-gutter: 10px;
  }

  .all-category__list-container {
    height: var(--item-height, 350px);
  }

  .all-category__list-item {
    width: calc(20% - var(--grid-gutter) * 4 / 5);
  }
}

@media screen and (min-width: 990px) {
  .all-category__list-item {
    width: calc(16.6666667% - var(--grid-gutter) * 5 / 6);
  }

  .all-category__list-item h3 {
    font-size: 15px;
    line-height: 18px;
    padding: 14px 8px;
  }
}

@media screen and (min-width: 1200px) {
  .all-category__list-item {
    width: calc(12.5% - var(--grid-gutter) * 7 / 8);
  }
}

.clamp-content__container {
  max-height: 108px;
  transition: max-height 0.3s ease;
  position: relative;
  overflow: hidden;
}

clamp-content:has(.clamp-content__toggle:not(.hide)):not(.open) .clamp-content__container:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 46px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 247, 0) 100%);
}

clamp-content.open .clamp-content__container {
  max-height: var(--content-height, none);
}

.clamp-content__toggle {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin-block-start: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ZoomContainer {
  pointer-events: none;
}

.zoomWindow {
  border-radius: 6px;
}

.collection-grid__wrapper .product-grid .grid__item {
  order: var(--order);
}

.collection-content:has(input[name="filter.v.availability"][value="1"]:checked) .grid-product.product--sold-out,
.search-content:has(input[name="filter.v.availability"][value="1"]:checked) .grid-product.product--sold-out {
  display: none !important;
}

.promotional-banner {
  width: 100%;
  height: 100%;
  background: #FFF;
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.promotional-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}

.brand-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-background, #FFF);
  color: var(--color-foreground, #000);
  border: 1px solid var(--colorBorder);
  border-radius: 8px;
  overflow: hidden;
}

.brand-item__image {
  position: relative;
}

.brand-item__image:before {
  content: '';
  display: block;
  padding-bottom: 45%;
}

.brand-item__image .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.brand-item__image .placeholder-svg {
  background: #e1e1e1;
  padding: 0;
}

.brand-item__image .placeholder-svg img {
  filter: grayscale(1);
}

.brand-item__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 7% 23%;
}

.brand-item__title {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 16px 10px;
  text-align: center;
}

.brand-item__title span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .brand-item__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .brand-item__image img {
    padding: 7% 20%;
  }

  .brand-item__title {
    font-size: 13px;
    padding: 0 12px 8px;
  }
}

.multicolumn {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .multicolumn .page-width {
    padding-inline: 20px;
  }
}

.multicolumn .swiper {
  overflow: visible;
}

.multicolumn-item {
  width: 100%;
  height: 100%;
  background: var(--color-background);
  color: var(--color-foreground);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--colorBorder);
  border-radius: 8px;
  overflow: hidden;
}

.multicolumn-item__image .image-wrap {
  background-color: #e1e1e1;
  padding: 0;
}

.multicolumn-item__image .image-wrap:before {
  content: '';
  display: block;
  padding-bottom: var(--aspect-ratio, 56.25%);
}

.multicolumn-item__image .image-wrap--portrait:before {
  padding-bottom: 125%;
}

.multicolumn-item__image .image-wrap--square:before {
  padding-bottom: 100%;
}

.multicolumn-item__image .image-wrap--wide:before {
  padding-bottom: 45.25%;
}

.multicolumn-item__image .image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.multicolumn-item__image .placeholder-svg img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  filter: grayscale(1);
  padding: 15%;
}

.multicolumn-item__info {
  flex: 1;
  padding: 18px;
}

.multicolumn-item__title {
  font: inherit;
  font-weight: bold;
  font-size: 19px;
  line-height: 1.25;
  margin-block-end: 4px;
}

.multicolumn-item__info .rte {
  font-size: 15px;
  margin-block: 0;
}

.multicolumn-item__info .btn {
  font-size: 15px;
  line-height: 18px;
  padding: 5px 15px;
  margin-block-start: 12px;
}

.offers-drawer {
  background: #dae5dd;
}

.offers-drawer .drawer__fixed-header {
  flex-shrink: 0;
  background: transparent;
  border: none;
}

.offers-drawer .drawer__header {
  padding-block: 16px;
}

.offers-drawer .drawer__title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #064230;
  margin: 0;
  text-transform: none;
}

.offers-drawer .drawer__title svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.offers-drawer .offers-drawer__subtitle {
  font-size: 14px;
  display: block;
  margin-block-start: 2px;
}

.offers-drawer .drawer__scrollable {
  padding: 2px 20px 20px;
  background: transparent;
}

@media screen and (min-width: 769px) {
  .offers-drawer .drawer__scrollable {
    padding: 2px 24px 24px;
  }
}

.offers-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offers-drawer__item {
  margin: 0;
  overflow: hidden;
}

.offers-drawer__ticket {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  min-height: 102px;
  background-color: #fff;
  border: 1px solid var(--colorBorder);
  border-radius: 10px;
}

.offers-drawer__ticket:before,
.offers-drawer__ticket:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  background-color: #dae5dd;
  margin-block-start: -15px;
  border: 1px solid var(--colorBorder);
  border-radius: 50%;
}

.offers-drawer__ticket:before {
  left: -20px;
}

.offers-drawer__ticket:after {
  right: -20px;
}

.offers-drawer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 18px 22px;
  border-right: 2px dashed var(--colorBorder);
}

.offers-drawer__icon img,
.offers-drawer__icon svg {
  width: 60px;
  height: auto;
  display: block;
}

.offers-drawer__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 14px 28px 14px 22px;
}

.offers-drawer__tag {
  font-size: 15px;
  line-height: 1.15;
  font-weight: bold;
  margin-block: 0 2px;
}

.offers-drawer__message {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: #000000;
  margin-block: 0 8px;
}

.offers-drawer__message p {
  line-height: 1.35;
  margin-block: 4px;
}

.offers-drawer__shop {
  font-size: 12px;
  line-height: 16px;
  padding: 3px 12px;
  text-transform: uppercase;
}

.offers-page {
  background: #f4f4f4;
}

.offers-page__header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--colorBorder);
  padding-block: 24px 28px;
  margin-block: 0;
}

.offers-page__header.text-left .breadcrumb {
  text-align: left;
}

.offers-page__description {
  max-width: 500px;
  display: inline-block;
  font-size: 15px;
  line-height: 1.4;
  color: #666;
  margin: 0;
}

.offers-page__tabs-row .section-tabs__inner {
  background: #FFFFFF;
  padding: 12px 16px;
  margin: 0;
  scroll-padding-left: 48px;
  scrollbar-width: none;
}

.offers-page__tabs-row .section-tabs--bullets .section-tab {
  font-weight: 700;
  font-size: 19px;
  line-height: 25px;
  opacity: 1;
}

.offers-page__tabs-row .section-tabs--bullets .section-tab.active {
  color: #0d8f04;
}

.section-tabs--bullets .section-tab img,
.section-tabs--bullets .section-tab svg {
  width: 36px;
  height: 36px;
}

@media screen and (min-width: 769px) {
  .offers-page__tabs-row .section-tabs__inner {
    padding-inline: 24px;
    scroll-padding-left: 80px;
  }
}

@media screen and (min-width: 990px) {
  .offers-page__tabs-row .section-tabs__inner {
    padding-inline: 40px;
  }
}

@media screen and (min-width: 1681px) {
  .offers-page__tabs-row .section-tabs__inner {
    padding-inline: calc(((100% - 1680px) / 2) + 40px);
    scroll-padding-left: calc(((100% - 1680px) / 2) + 40px);
  }
}

.offers-page__panels .section-tabs-content {
  scroll-margin-block-start: 120px;
}

.offers-page__panels .section-tabs-content:not(.is-visible) {
  display: none;
}

.offers-page__product.is-offer-hidden {
  display: none !important;
}

.offers-page__info {
  max-width: 500px;
  margin: 0 auto 32px;
  text-align: center;
}

.offers-page__title {
  line-height: 1.125;
}

.offers-page__title .rte p {
  font: inherit;
}

.offers-page__products {
  margin-top: 8px;
}

.offers-page__empty,
.offers-page__no-products {
  text-align: center;
  margin: 32px 0;
  color: #666;
}