/** Shopify CDN: Minification failed

Line 2717:4 Unexpected ")"

**/
.section-gap {
  padding-top: var(--section-gap-top, 3.75rem);
  padding-bottom: var(--section-gap-bottom, 3.75rem);
}

:where([class*="color-scheme-"]) {
  background-color: rgba(var(--background-color));
  color: rgba(var(--text-color));
}
.is-show {
  display: none;
}

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

.page--width {
  display: block;
  width: 100%;
  padding-inline: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.media-ratio {
  display: block;
  position: relative;
  width: 100%;
  background: rgba(var(--background-color-media));
  overflow: hidden;
}

.media-ratio::after {
  content: "";
  height: 0;
  display: block;
  padding-top: var(--media-ratio);
}

.media-ratio :is(iframe, video, .placeholder-svg, img, model-viewer) {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* localization Design */

.disclosure_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 110;
  transition: all .3s ease-in-out;
}

.disclosure_wrapper:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--background-color-overlay));
  opacity: var(--overlay-color-opacity);
}

.disclosure__button[aria-expanded="true"] + .disclosure_wrapper {
  opacity: 1;
  pointer-events: none;
}

.disclosure .disclosure__list {
  background-color: rgba(var(--background-color), 0.6);
  color: rgba(var(--text-color));
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  max-width: 21.25rem;
  border-radius: 0.25rem;
  padding: 1.25rem;
}

.disclosure__button {
  display: flex;
  width: 100%;
  align-items: center;
  column-gap: 0.6rem;
  padding: 0.3rem;
  font-size: var(--text-small);
  color: rgb(var(--text-color));
}

.disclosure__button .icon-caret {
  width: 0.8rem;
}

/* ============================ */
.close-localization {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgb(var(--text-color));
  padding: 0.4rem;
  border-radius: 50%;
  z-index: 1;
}

.close-localization span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-localization svg {
  width: 100%;
  height: 100%;
}

.disclosure_wrapper.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.localization-content {
  background-color: rgb(var(--background-color));
  padding: 2rem;
  width: 100%;
  max-width: 90%;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.localization-content-item {
  display: block;
  position: relative;
  margin-top: 1.6rem;
  font-size: var(--text-small);
}

.localization-content-item .disclosure__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 13rem;
  overflow-y: auto;
  background-color: rgb(var(--background-color));
  border: 0.06rem solid rgb(var(--border-color));
  color: rgb(var(--text-color));
  z-index: 1;
  padding: 0.5rem;
  border-top: 0rem;
}

.localization-content-item
  .disclosure__list
  .disclosure__item
  + .disclosure__item {
  margin-top: 0.25rem;
}

.localization-content-item .disclosure__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: var(--text-small);
}

.localization-content-item .disclosure__list a:is(.is-active, :hover) {
  background: rgb(var(--foreground-color));
}

.localization-content-item .disclosure__list a:is(.is-active) svg {
  opacity: 1;
}

.localization-content-item .disclosure__list a svg {
  margin-left: auto;
  width: 0.75rem;
  height: 0.75rem;
  min-width: 0.75rem;
  opacity: 0;
}

.localization-label {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  color: rgb(var(--text-color));
}

.localization-content-item .disclosure__button {
  padding: 0.9rem;
  border: 0.06rem solid currentColor;
  justify-content: space-between;
  white-space: nowrap;
  overflow: hidden;
}

/* ============================ */

.height--full {
  height: calc(100vh - 2rem);
}

.height--auto {
  height: auto;
}

.height--300 {
  height: 18.75rem;
}

.height--350 {
  height: 21.875rem;
}

.height--450 {
  height: 28.125rem;
}

@media (min-width: 768px) {
  .desktop-height--full {
    height: calc(100vh - 2rem);
  }
  .desktop-height--auto {
    height: auto;
  }
  .desktop-height--450 {
    height: 24.125rem;
  }
  .desktop-height--550 {
    height: 32.375rem;
  }
  .desktop-height--650 {
    height: 38.625rem;
  }
  .desktop-height--750 {
    height: 45.875rem;
  }
}

@media (min-width: 1201px) {
  .desktop-height--450 {
    height: 20.125rem;
  }
  .desktop-height--550 {
    height: 30.375rem;
  }
  .desktop-height--650 {
    height: 40.625rem;
  }
  .desktop-height--750 {
    height: 50.875rem;
  }
}

.tab-nav {
  display: flex;
  grid-gap: 1.3rem;
  flex-wrap: wrap;
}

.tab-nav-link {
  display: block;
  color: rgba(var(--text-color), 0.4);
  transition: all 0.3s ease;
}

.tab-nav-link:is(.is-active, :hover) {
  color: rgba(var(--text-color));
}

.featured-collection-section .product-card-list,
.collection-product--results .product-card-list {
  grid-row-gap: 1.9rem;
}

.product-card-wrapper {
  display: block;
}

.product-card-media {
  position: relative;
  overflow: hidden;
}

.product-card-media img {
  display: block;
  transition: all 0.3s ease-in-out;
  background-color: rgb(var(--background-color-media));
}

.product-card-media:hover .product-card--img {
  opacity: 1;
}

.product-card-media:has(.product-card-hover--img):hover
  .product-card-hover--img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.product-card-hover--img {
  display: block;
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
}

.lazyloaded:not(.product-card-hover--img) {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 1, 1),
    filter 0.4s cubic-bezier(0.4, 0, 1, 1), 0.4s cubic-bezier(0.4, 0, 1, 1);
}

.product-card-buttons {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* max-width: calc(100% - 1rem); */
  margin: 0 auto;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.product-card-buttons .product-form {
  margin-left: auto;
}

.product-card-buttons .product-form .main-product-form {
  padding: 0rem;
}

.product-card-buttons .product-variant--picker {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.product-card-buttons .product-variant--picker + .product-variant--picker {
  margin-top: 0.6rem;
}

.product-select-option {
  position: relative;
}

.select-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(var(--background-color));
  padding: 0.22rem 0.5rem;
  font-size: var(--text-xsmall);
  border-radius: 10rem;
  border: 0.06rem solid rgba(var(--border-color));
}

.product-select-list {
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: rgba(var(--background-color));
  color: rgba(var(--text-color));
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  width: 100%;
  min-width: 6.2rem;
  overflow: hidden;
  font-size: var(--text-xsmall);
  max-height: 8.5rem;
  overflow-y: auto;
  padding: 0.3rem;
  gap: 0;
}

.product-select-list li label {
  display: block;
  cursor: pointer;
  padding: 0.25rem 1.1rem;
  border-radius: 0.25rem;
}

.product-select-list li:hover label,
.product-select-list li input:checked ~ label {
  /* background-color: rgba(var(--text-color), 0.1); */
  background-color:#8ABC8680;
}

.product-select-option:is(.is-active, :hover) .product-select-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-select-option .product-select-list {
  pointer-events: none;
  gap: 0;
}

.product-select-list .product-swatch-item {
  flex: 0 0 100%;
}

.product-select-list .product-swatch-item + .product-swatch-item {
  margin-top: 0.1rem;
}

.product-select-list input {
  white-space: nowrap;
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  width: 0.06rem;
  height: 0.06rem;
  margin: -0.06rem;
  padding: 0;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
}

.product-select-list input:focus-visible ~ label {
  border-color: currentColor;
  outline: none;
  box-shadow: inset 0 0 0 0.063rem;
}

.product-card-buttons .quick-add {
  margin-left: auto;
  overflow: hidden;
  word-break: break-word;
}

.quick-add,
.quick-view-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(var(--background-color));
  color: rgba(var(--text-color));
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  padding: 0.4rem;
  box-shadow: 1px 2px 2px #00000014;
}


.quick-view-button-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  transition: all 0.4s ease;
}

/* .quick-add svg {
  width: 0.8rem;
  height: 0.8rem;
  vertical-align: middle;
} */

.quick-add svg {
    width: 13px;
    vertical-align: middle;
}

.quick-add span[data-add-to-cart-text],
.quick-view-main-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-view-button-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  vertical-align: middle;
}

.index-options-card
  :is(.product-card--text, .product-card-buttons, .article-post-content) {
  display: none;
}

.product-card-wrapper:is(.card-true) {
  background-color: rgba(var(--background-color));
  border-radius: var(--rounded-card);
  overflow: hidden;
}

.product-card-wrapper:is(.card-true).border-true,
.product-card-wrapper:not(.card-true).border-true .product-card-media {
  border: 0.06rem solid rgba(var(--border-color));
  border-radius: var(--rounded-card);
}

.product-card-wrapper:not(.card-true) .product-card-media {
  border-radius: var(--rounded-card);
}

.product-card-wrapper:is(.card-true) .product-card--text {
  padding: 1rem;
}

.product-card-wrapper:is(.card-true) .product-card-title {
  margin: 0;
}

.product-card--text {
  font-size: var(--text-small);
}

.product-card--text > * {
  margin-top: 0.5rem;
}

.product-card--text variant-set-option {
  display: block;
  margin-bottom: 0.4rem;
}

.product-card-vendor {
  font-size: var(--text-small);
}

.product-information--inner .product-card-vendor {
  margin-bottom: 0.938rem;
}

.product-card--text .product-variant--picker {
  display: inline-flex;
  /* margin-top: 0.4rem; */
  margin-bottom: 0rem;
}

.product-card--text:is(.text-align-center)
  .product-price-list
  product-sale-price {
  justify-content: center;
}

.product-card--text:is(.text-align-right)
  .product-price-list
  product-sale-price {
  justify-content: flex-end;
}

.product-card-title {
  display: block;
}

.product-price-list {
  display: block;
  margin-top: 0.13rem;
}

.product-price-actual {
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
  flex-wrap: wrap;
}

.product-price-list product-sale-price {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
}

.product-compare-price {
  text-decoration: line-through;
  color: rgba(var(--text-color));
}

.product-variant--picker,
.product-variant--picker ul {
  display: flex;
  align-items: center;
  grid-gap: 0.6rem;
  flex-wrap: wrap;
}

.product-variant--item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.188rem 0rem;
}

.product-variant--item > input {
  white-space: nowrap;
  border-width: 0;
  /* clip: rect(0, 0, 0, 0);
  width: 0.06rem;
  height: 0.06rem; */
  margin: -0.06rem;
  padding: 0;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.product-variant--item
  > input:is([type="checkbox"], [type="radio"]):is(:disabled, .disabled) {
  pointer-events: auto;
  cursor: pointer;
}

.product-swatch .product-variant--item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  position: relative;
  cursor: pointer;
  background: var(--background-color-swatch);
  box-shadow: inset 0rem 0rem 0.1rem rgb(var(--text-color), 0.2);
}

.main-product-variant-selector .product-swatch .product-variant--item:is(.swatch-circle) span {
  width: 2.4rem;
  min-width: 2.4rem;
  height: 2.4rem;
}

.main-product-variant-selector  li.swatch-circle span.small-swatches.swatch-variant-color {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
}
.main-product-variant-selector  li.swatch-circle span.medium-swatches.swatch-variant-color {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
}
.main-product-variant-selector  li.swatch-circle span.large-swatches.swatch-variant-color {
    width: 3.5rem;
    min-width: 3.5rem;
    height: 3.5rem;
}

.main-product-variant-selector .product-swatch .product-variant--item span {
    width: 3rem;
    height: auto;
    aspect-ratio: 48/24;
}

li.product-variant--item.swatch-color.swatch-square span.large-swatches.swatch-variant-color {
    width: 4rem;
}
li.product-variant--item.swatch-color.swatch-square span.medium-swatches.swatch-variant-color {
    width: 3rem;
}
li.product-variant--item.swatch-color.swatch-square span.small-swatches.swatch-variant-color {
    width: 2.5rem;
    aspect-ratio: 48/15;
}

.product-swatch .product-variant--item span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.063rem solid rgba(var(--border-color));
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.disclosure-accordion-content .filter-variant-item {
  display: flex;
  align-items: center;
  font-size: var(--text-small);
}

.disclosure-accordion-content .filter-variant-item span {
  margin-right: 1rem;
  border-radius: 50%;
  padding: 0.13rem;
  transition: all 0.3s ease-in-out;
}

.disclosure-accordion-content
  .product-variant--item:hover
  .filter-variant-item
  span {
  scale: 1.1;
}

.product-variant--item .filter-variant-item span::after {
  border-radius: 50%;
}

.product-variant--item input:checked + .filter-variant-item span::after {
  opacity: 1;
  transform: scale(1.3);
  border-radius: 50%;
}

.product-variant--item input:checked + span::after {
  opacity: 1;
}

.product-variant--item.swatch-circle :is(span),
.product-variant--item.swatch-circle span::after {
  border-radius: 50%;
}

.product-variant--item.swatch-circle input:checked + span {
  padding: 0.13rem;
}

.product-variant--item.swatch-circle input:checked + span::after {
  transform: scale(1.2);
}

.product-variant--item.swatch-square span::after {
  bottom: calc(0% - 0.3rem);
  border: 0;
  border-bottom: 0.13rem solid rgba(var(--border-color));
  border-radius: 0;
  height: 0.13rem;
  pointer-events: none;
}

.product-variant--item.swatch-square :is(span) {
  width: 2.188rem;
  height: 0.75rem;
  border-radius: 0rem;
}

.product-select--box .product-variant--item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 4rem;
  padding: 0.6rem;
  height: 2.4rem;
  border-radius: 0.25rem;
  background-color: rgba(var(--background-color-input));
  color: rgba(var(--text-color-input));
  border: 0.06rem solid rgba(var(--border-color));
  transition: all 0.3s ease;
  font-size: var(--text-small);
  position: relative;
}

.product-select--box .product-variant--item input:hover + span,
.product-select--box .product-variant--item input:checked + span {
  background-color: rgba(var(--text-color-input));
  color: rgba(var(--background-color-input));
}

/* .product-variant--picker .product-variant--item input.disabled + span {
  text-decoration: line-through;
  opacity: 0.5;
  border: 0.063rem dashed;
} */
.product-variant--picker .product-variant--item input.disabled + span {
  text-decoration: line-through;
  border: 0.063rem dashed rgba(0, 0, 0, 0.5);
}

.product-inventory--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.6rem;
  background-color: rgba(var(--success-background-color));
  color: rgba(var(--success-text-color));
  border-radius: 10rem;
  font-size: var(--text-xsmall);
}

countdown-timer-block,
localization-wrapper {
  display: block;
}

.label-text {
  text-transform: var(--label-text-transform);
  font-weight: var(--label-font-weight);
  margin-bottom: 0.5rem;
}

.quantity-elements {
  display: inline-flex;
  position: relative;
  /* border: 0.06rem solid rgba(var(--border-color)); */
  border: 0.06rem solid #103934;
  border-radius: 0.25rem;
  background-color: rgba(var(--background-color-input));
  color: rgba(var(--text-color-input));
}

.quantity-elements .quantity-input {
  display: inline-flex;
  padding: 0;
  width: 3.125rem;
  height: 2.75rem;
  text-align: center;
  border: 0;
  justify-content: center;
  background: transparent;
  font-size: var(--text-small);
  margin: 0;
  outline: 0;
}

.quantity-elements button {
  display: flex;
  padding: 0;
  margin: 0;
  border: 0;
  justify-content: center;
  align-items: center;
  width: 2.125rem;
  height: 2.75rem;
  cursor: pointer;
  background: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s ease-in-out;
}

.quantity-elements button.disabled {
  cursor: not-allowed;
}

.quantity-elements button svg {
  pointer-events: none;
  width: 0.5rem;
}

.media-width--large {
  max-width: 67.5rem;
}

.media-width--medium {
  max-width: 50rem;
}

.media-width--small {
  /* max-width: 40.625rem; */
  max-width:474px;
}

.content-overlay {
  display: flex;
  flex-direction: column;
  grid-row-gap: 1.3rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.content-m-top--left {
  justify-content: flex-start;
  align-items: flex-start;
}

.content-m-top--center {
  align-items: center;
  justify-content: flex-start;
}

.content-m-top--right {
  justify-content: flex-start;
  align-items: flex-end;
}

.content-m-middle--left {
  justify-content: center;
  align-items: flex-start;
}

.content-m-middle--center {
  justify-content: center;
  align-items: center;
}

.content-m-middle--right {
  justify-content: center;
  align-items: flex-end;
}

.content-m-bottom--left {
  justify-content: flex-end;
  align-items: flex-start;
}

.content-m-bottom--center {
  justify-content: flex-end;
  align-items: center;
}

.content-m-bottom--right {
  justify-content: flex-end;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .content-top--left {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .content-top--center {
    align-items: center;
    justify-content: flex-start;
  }

  .content-top--right {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .content-middle--left {
    justify-content: center;
    align-items: flex-start;
  }

  .content-middle--center {
    justify-content: center;
    align-items: center;
  }

  .content-middle--right {
    justify-content: center;
    align-items: flex-end;
  }

  .content-bottom--left {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .content-bottom--center {
    justify-content: flex-end;
    align-items: center;
  }

  .content-bottom--right {
    justify-content: flex-end;
    align-items: flex-end;
  }
}

.underline--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(currentColor, currentColor) 0 min(100%) / 100%
    0.06rem no-repeat;
  transition: background-size 0.5s ease;
  background-position-x: left;
  color: rgba(var(--text-color));
  margin-left: 0.5rem;
  padding: 0.219rem;
  line-height: 1.2;
}

:is(.underline--link, .rte a:not(.button)):hover {
  background-size: 0 0.06rem;
  background-position-x: right;
}

.underline--link::before {
  animation: IconFlash 1.2s ease infinite;
  background-color: currentColor;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 0.55rem;
  left: 0.06rem;
  transform: translateY(0%) translateX(-0.6rem);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

@keyframes IconFlash {
  0%,
  10% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90%,
  to {
    opacity: 1;
  }
}

.link-arrow {
  width: 0rem;
  height: 0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transform-origin: 100% 50%;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

.underline--link:hover:before {
  transform: translateY(-50%) scale(0);
}

.underline--link:hover .link-arrow {
  transform: none;
  width: 1rem;
  height: 1rem;
  margin-left: 0.4rem;
}

.product-information--inner a:not([class]),
.drawer a:not([class]),
.footer-copyright-wrapper a:not([class]),
:is(.section-title, .description, .shipping-tax, .multi-image-with--text-content, .video-title, .multi-collections--title, .newsletter-title, .slideshow-title, .recently-view-products-main, .countdown-title, .contact-us-title, .scrolling-content--title, .scrolling-text, .media-gallery-title, .rich-text--heading) a:not([class]),
.underline {
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 0.03em;
  background-position: 0 1.1em; 
  transition: background-size 0.5s cubic-bezier(.3, 1, .3, 1);
}

.product-information--inner a:not([class]):hover,
.drawer a:not([class]):hover,
.footer-copyright-wrapper a:not([class]):hover,
:is(.section-title, .description, shipping-tax, .multi-image-with--text-content, .video-title, .multi-collections--title, .newsletter-title, .slideshow-title, .recently-view-products-main, .countdown-title, .contact-us-title, .scrolling-content--title, .scrolling-text, .media-gallery-title, .rich-text--heading) a:not([class]):hover,
.underline:hover {
  background-position-x: right;
  background-size: 0 0.063rem;
}

.product-card-wrapper .product-card-title a {
  background: transparent;
}

/*! marquee */

.scrolling-text--wrapper {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 100%;
}

.marquee-true.direction-left .scrolling-text-marquee--slide,
.scrolling-text--wrapper.marquee-true .scrolling-text-marquee--slide {
  animation: scroll-left var(--duration) linear infinite;
  animation-play-state: running;
}

.marquee-true.direction-right .scrolling-text-marquee--slide {
  animation: scroll-right var(--duration) linear infinite;
  animation-play-state: running;
}

.scrolling-text-marquee--slide {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex: 0 0 auto;
  width: max-content;
}

.scrolling-text-marquee--slide > * {
  padding: 0 var(--marquee-gap);
}

.scrolling-text {
  color: rgba(var(--text-color));
  display: -webkit-box;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
}

.bg-image-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-image-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    var(--background-color-overlay) / var(--overlay-color-opacity)
  );
}

.bg-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.text-highlight {
  display: block;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 0.06rem;
  -webkit-text-stroke-color: rgba(var(--text-color));
}

@keyframes scroll-left {
  0% {
    transform: translate3d(calc(-100% * 1), 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(calc(-200% * 1), 0, 0);
  }
}

@keyframes scroll-right {
  0% {
    transform: translate3d(calc(-200% * 1), 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(calc(-100% * 1), 0, 0);
  }
}

.main-heading {
  display: grid;
  padding-bottom: 1rem;
  word-break: break-word;
}

.main-heading .section-title {
  margin-bottom: 0;
}

.main-heading .section-title + :is(p, .section-description, .description) {
  margin-top: 0.5rem;
}
.section-title {
  word-break: break-word;
}

.section-description {
  margin-bottom: 0.9rem;
}

.social-shares {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.social-icons li {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.social-icons--link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(var(--text-color));
  padding: 0.25rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.social-icons.large .social-icons--link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-icons .social-icons--link:hover {
  transform: translateY(-0.313rem);
}

.social-icons--link > svg {
  position: relative;
  min-width: 20px;
  width: 20px;
  height: 20px;
}
.social-icons--link svg path {
  fill:#EEE2CE;
}
drawer-mobile-menu .social-icons--link svg path{
  fill:#103934
}
.social-icons--link.linkedin > svg{
  width:36px;
  height:36px;
  
}
.double-label {
  position: relative;
}

.double-label .checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.facets-category-options-item.disabled .facets-filters-options-label,
.double-label .checkbox.disabled + .facets-filters-options-label {
  text-decoration: line-through;
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.facets-filters-options-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem;
  font-size: var(--text-small);
  color: rgb(var(--text-color));
  border: 0.06rem solid rgb(var(--text-color));
  border-radius: 10rem;
  transition: 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.facets-filters-options-label span {
  display: block;
  position: relative;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.facets-filters-options-label:before {
  content: "";
  position: absolute;
  top: -0.06rem;
  left: -0.06rem;
  width: calc(100% + 0.13rem);
  height: calc(100% + 0.13rem);
  border-radius: 10rem;
  background-color: rgb(var(--text-color));
  -webkit-clip-path: inset(calc(100% - 0rem) 0rem 0rem 0rem round 10rem);
  clip-path: inset(calc(100% - 0rem) 0rem 0rem 0rem round 10rem);
  transition: clip-path 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}
.facets-filters-options-label:hover:before,
.double-label .checkbox:checked ~ .facets-filters-options-label:before {
  -webkit-clip-path: inset(0 0 0 0 round 10rem);
  clip-path: inset(0 0 0 0 round 10rem);
}
.facets-filters-options-label:hover span,
.double-label .checkbox:checked ~ .facets-filters-options-label span {
  transform: translate3d(0, -150%, 0);
}
.facets-filters-options-label:after {
  content: attr(title);
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 100% 50%;
  transform: translate3d(0, 150%, 0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  color: rgb(var(--background-color));
}
.facets-filters-options-label:hover:after,
.double-label .checkbox:checked ~ .facets-filters-options-label:after {
  transform: translateZ(0);
}

.price-rangebar-input-group {
  display: flex;
  align-items: center;
  gap: 1.375rem;
  flex-wrap: wrap;
}

.price-range-bar .facets-range {
  height: 0.3rem;
  border: 0;
  background: rgb(var(--foreground-color));
  flex: 0 0 100%;
}

.facets-range .noUi-connect {
  background: rgb(var(--text-color));
}

.facets-availability {
  display: flex;
  grid-gap: 1.3rem;
  align-items: center;
}

.sidebar .facets-drawer-results {
  display: none;
}

.accordion {
  display: block;
}

.sidebar .accordion,
.sidebar .facets-availability {
  border-top: 0.06rem solid rgb(var(--border-color));
}

.sidebar .product-swatch {
  padding-left: 0.3rem;
}

.facets-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-small);
  padding: 1.3rem 0rem;
  font-weight: var(--label-font-weight);
  text-transform: var(--label-text-transform);
}

.disclosure-accordion .facets-heading svg {
  transition: all 0.3s ease-in-out;
}

.disclosure-accordion[open] .facets-heading svg {
  transform: rotate(45deg);
}

.price-range-bar .noUi-horizontal .noUi-handle {
  width: 1rem;
  height: 1rem;
  right: -1rem;
  border-radius: 50%;
  background: rgb(var(--text-color));
  box-shadow: none;
  border: 0;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.price-range-bar .noUi-horizontal .noUi-handle:hover {
  transform: scale(1.1);
}

.price-range-bar .noUi-horizontal .noUi-handle-upper {
  right: 0rem;
}

.price-range-bar .noUi-handle:after,
.price-range-bar .noUi-handle:before {
  content: none;
}

.input-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  padding: 0.625rem 1rem;
  min-width: 0;
  border-radius: min(0.25rem, 10rem);
  border: 0rem solid rgb(var(--text-color), 0.12);
  max-width: 9rem;
  background-color: rgb(var(--foreground-color));
}

.input-price > .input {
  -webkit-appearance: textfield;
  appearance: textfield;
  background: none;
  border: none;
  width: 100%;
  margin-left: 0.13rem;
  padding: 0;
  font-size: var(--text-small);
  box-shadow: none;
}

.table-wrapper {
  margin-bottom: 1.5rem;
  overflow-y: auto;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

table,
td,
th {
  border: 0;
  vertical-align: middle;
}

td,
th {
  padding: 0.875rem 0.625rem;
}

.size-chart-table {
  margin-top: 0rem;
}

.size-chart-table tr :is(th, td) {
  border-bottom: 0.063rem solid rgb(var(--border-color));
  font-size: var(--text-small);
}

.sizechart-content p {
  font-size: var(--text-small);
}

.size-chart--img {
  margin: 2.5rem 0rem;
}


/* Pagination */
.pagination-wrapper {
  text-align: center;
  margin-top: 1.875rem;
}

.pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-list > li {
  flex: 1 0 1.6rem;
  max-width: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.3rem;
}

.pagination-list>li:is(:first-child, :last-child) {
  margin: 0 1.5rem;
}

.pagination-item {
  color: rgb(var(--foreground-color));
  color: rgba(var(--text-color));
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 2rem;
  width: 100%;
  padding: 0rem;
  text-decoration: none;
  transition: border-color 0.2s ease;
  border-bottom: 0.19rem solid transparent;
}

.pagination-item:is(.pagination-item--current, :hover) {
  border-bottom: 0.19rem solid rgb(var(--border-color));
}

.pagination-list li :is(.pagination-item--prev, .pagination-item--next) {
  border: 0;
}

.pagination-item .icon-caret {
  height: 0.625rem;
}

.pagination-item--next .icon-caret {
  margin-right: -0.2rem;
  transform: rotate(-90deg);
}

.pagination-item--prev .icon-caret {
  margin-right: -0.2rem;
  transform: rotate(90deg);
}

.loading-infinite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  width: 2rem;
  vertical-align: middle;
}

.loading-infinite .loading {
  width: 100%;
  height: 100%;
  animation: rotate 3s infinite linear;
}

.loading-infinite .circle-primary {
  stroke-dasharray: 283;
  stroke-linecap: round;
  stroke: rgb(var(--text-color));
}

.loading-infinite .circle-secondary {
  stroke: rgb(var(--text-color), 0.1);
}

@keyframes rotate {
  from {
    transform: rotate(135deg);
    stroke-dashoffset: 283;
  }
  to {
    transform: rotate(495deg);
    stroke-dashoffset: 0rem;
  }
}

/* Availability Drawer Css */

.availability-product {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.availability-product-img {
  width: 7.625rem;
  height: 8.813rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

.availability-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.availability-listing--item {
  padding: 2.125rem 0rem;
  border-top: 0.063rem solid rgb(var(--border-color));
  gap: 0.875rem;
}

.availability-listing--item:last-child {
  border-bottom: 0.063rem solid rgb(var(--border-color));
}

.availability-product--text {
  flex: 1;
}

.availability-status {
  flex: 0 0 auto;
  max-width: 8.75rem;
  min-width: 8.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.availability-status svg {
  width: 0.938rem;
  min-width: 0.938rem;
}

.availability-cont--wrapper title {
  font-size: var(--text-base);
}

.availability-info {
  font-size: var(--text-small);
  display: block;
  color: rgb(var(--text-color), 0.5);
}

/* Availability Drawer Css End */

/* ================ */

.main-product-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.main-product-wrapper .main-product-media-wrapper {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.main-product-wrapper .main-product-tab-content,
.main-product-wrapper .product-information--wrapper {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 2rem;
}

.main-product-wrapper .main-product-tab-content {
  padding-top: 0rem;
}

.main-product-media-wrapper {
  user-select: none;
}

.product-media-template5 .slider-controls {
  left: 1.875rem;
  right: unset;
}

.main-product-form {
  padding-top: 0.625rem;
}
.atc-wrapper {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  grid-gap: 0.9rem;
}

.add-to-cart-text {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.atc-wrapper .button {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin: 0;
}

.atc-wrapper .button > span {
  width: 100%;
}

.atc-wrapper .button span svg {
  width: 0.875rem;
  height: 0.875rem;
  display: inline-block;
  min-width: 0.875rem;
  vertical-align: baseline;
  margin-right: 0.313rem;
}

.atc-wrapper .button .product-price-main {
  margin-left: auto;
}

.atc-wrapper .shopify-payment-button {
  width: 100%;
  flex: 0 0 100%;
}

.product-media-template1 .complementary-product {
  margin-top: 2.5rem;
}

.complementary-product {
  padding-top: 2.7rem;
}

.recommendations-product-heading {
  font-size: var(--text-large);
  margin-bottom: 0.75rem;
  width:100%;
  /* max-width: calc(100% - 5.375rem); */
}

.complementary-product .slider-controls {
  position: absolute;
  top: 1rem;
  right: 0;
}

.complementary-product .swiper-button {
  background: transparent;
  color: rgb(var(--text-color));
  width: 1.5rem;
  height: 1.5rem;
  border: none;
}

.complementary-product .swiper-button:after {
  font-size: var(--text-base);
}

.complementary-product .slider-controls .swiper-button-lock {
  display: none;
}

:is(.related-products-wrapper, .recently-view-products-wrapper) {
  position: relative;
}

.product-accordion-item:not(:first-child) .product-accordion {
  border-top: 0.063rem solid rgb(var(--border-color));
}

.product-accordion-item:last-child .product-accordion {
  border-bottom: 0.063rem solid rgb(var(--border-color));
}

.product-accordion-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-grow: 1;
  padding: 1.125rem 0rem;
}
details.product-accordion.accordion-details .accordion-content {
  padding-bottom: 2rem;
}

.product-accordion .accordion-arrow {
  transition: all 0.3s ease-in-out;
}

.product-accordion[open] .accordion-arrow {
  transform: rotate(45deg);
}

.recommendations-slider-item {
  display: block;
  align-items: flex-start;
  gap: 1rem;
}

.recommendations-slider.swiper-horizontal .recommendations-slider-item {
  flex-direction: column;
  gap: 0.2rem;
}

.recommendations-slider-item:not(:last-child) {
  margin-bottom: 0.625rem;
}

.recommendations-product-img {
  width: 8.75rem;
  min-width: 8.75rem;
  height: 8.75rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--rounded-card);
}

.recommendations-product-img .recommendations--img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.recommendations-product-content {
  font-size: var(--text-small);
}

.add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  background: rgb(var(--background-color));
  border-radius: 10rem;
}

product-content-element {
  display: block;
}

.tab {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.tab-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgb(var(--text-color), 0.5);
  font-size: var(--text-small);
}

product-content-element .tab-link {
  text-decoration: underline;
  color: rgb(var(--text-color));
}

.tab-link.is-active {
  color: rgb(var(--text-color));
  text-decoration: underline;
  text-underline-offset: 0.188rem;
}

.tab-link .tab-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  min-width: 0.5rem;
  background: currentColor;
  border-radius: 50%;
  vertical-align: middle;
}

product-content-element .tab-link .tab-dot {
  display: none;
}

.drawer-tab--text:not(.is-active) {
  display: none;
}

.drawer-tab--text > :is(p, ul, ol, span) {
  font-size: var(--text-small);
}

.drawer-tab--text :is(p, ul, ol, span) li {
  margin-bottom: 0.5rem;
}

.drawer-tab-content .drawer-tab--text p strong {
  margin-bottom: 0.313rem;
  display: block;
}

.tab-image-box {
  margin: 1.25rem 0;
}

.title-small {
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}

.contact-information li {
  font-size: var(--text-small);
  margin-bottom: 1.25rem;
}

.ask-question-form .input {
  font-size: var(--text-small);
}

.pickup-availability {
  display: block;
}

.pickup-available-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 0rem 0.625rem;
}

.pickup-available-header > svg {
  min-width: 1.25rem;
  width: 1.25rem;
  margin-top: 0.125rem;
}

.availability-desc {
  max-width: 17.188rem;
  margin: 0rem;
}

.availability-content--text .view-store {
  padding: 0.188rem;
  margin-top: 0.5rem;
}

.delivery-info-coontent {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.delivery-info-coontent li {
  display: flex;
  align-items: flex-start;
  flex: 0 0 100%;
  max-width: calc(50% - 0.625rem);
  gap: 0.75rem;
}

.delivery-info-coontent .check-icon {
    display: inline-block;
    width: 1.2rem;
    min-width: 1.2rem;
    padding-top: 0;
}

.delivery-info-coontent .check-icon svg {
  width: 100%;
}

.delivery-info-coontent .check-icon svg path {
  stroke: currentcolor;
}

/* Add To Cart Drawer */

.free-shipping-bar {
  margin-bottom: 2rem;
}

.progress-bar {
  position: relative;
  overflow: hidden;
  height: 0.375rem;
  border-radius: 0rem;
  background-color: rgba(var(--text-color), 0.06);
}

.free-shipping-bar-message {
  margin-bottom: 0.6rem;
}

.progress-bar .progress {
  position: relative;
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: 0rem;
  background-image: linear-gradient(
    90deg,
    #8ABC86,
    #8ABC86
  );
  transition: var(--transition);
}

.cart-product {
  display: flex;
  width: 100%;
  align-items: stretch;
  margin-bottom: 1.25rem;
  gap: 1.25rem;
  position: relative;
  margin-top: 1.25rem;
}

.cart-product-image {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 9.375rem;
  height: 9.375rem;
  overflow: hidden;
  border-radius: var(--rounded-card);
}

.cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.cart-product-image:hover img {
  transform: scale(1.1);
}

.cart-product-info {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  gap: 0.3rem;
  flex: 1;
}

.cart-product-options {
  display: inline-flex;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgb(var(--text-color), 0.5);
}

.cart-product-options + .cart-product-options:before {
  content: "/";
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.188rem;
}

.cart-product-options dt {
  display: none;
}

.product-quantity-wrapper {
  margin-top: auto;
}

.cart-product-info .quantity-elements {
  border-radius: 10rem;
}

.cart-product-info .quantity-elements:hover {
  /* background: rgba(var(--text-color-input));
  color: rgba(var(--background-color-input)); */
}

.cart-product-info .quantity-elements .quantity-input {
  width: 1.8rem;
  height: 1.8rem;
}

.cart-product-info .quantity-elements button {
  width: 1.6rem;
  height: 1.8rem;
}

.remove-product {
  margin-left: auto;
  align-self: flex-end;
  padding: 1rem 0;
  min-width: 4.2rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-loader {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-remove {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0rem;
}
.remove-product a.cart-remove:hover {
  text-decoration: underline;
}

.cart-remove svg {
  width: 1rem;
  height: 1rem;
}

.product-recommendations {
  display: block;
  position: relative;
  padding-top: 1.25rem;
  margin-top: 1.875rem;
  border-top: 0.063rem solid rgb(var(--border-color));
}

.product-recommendations--title {
  max-width: calc(100% - 6.875rem);
  margin-bottom: 0.6rem;
}

.product-recommendations .slider-controls {
  position: absolute;
  top: 1.3rem;
  right: 0;
}

.product-recommendations .slider-controls .swiper-button {
  background: transparent;
  width: 1.5rem;
  height: 1.5rem;
  color: rgb(var(--text-color));
  border: none;
}

.product-recommendations .slider-controls .swiper-button::after {
  font-size: var(--text-small);
}

.recommendations-slide {
  display: flex;
  gap: 0.8rem;
}

.product-scroll-image {
  height: 13.25rem;
  overflow: hidden;
  margin-bottom: 0.6rem;
  border-radius: var(--rounded-card);
}

.product-scroll-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.product-scroll-image .addToCart-icon {
  width: 1.625rem;
  min-width: 1.625rem;
  height: 1.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--text-color));
  color: rgb(var(--background-color));
  border-radius: 50%;
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  padding: 0.2rem;
}

.modal-dialog-cart--navtabs {
  padding: 1.1rem 0rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 0.063rem solid rgb(var(--border-color));
  border-bottom: 0.063rem solid rgb(var(--border-color));
}

.modal-dialog-button {
  display: flex;
  align-items: center;
  font-size: var(--text-small);
  gap: 0.6rem;
  padding: 0.188rem 0rem;
}

.modal-dialog-button svg {
  width: 1.25rem;
  min-width: 1.25rem;
}

.modal-dialog-button:hover {
  text-decoration: underline;
}

.cart-dialog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: visibility 300ms ease;
  visibility: hidden;
  height: 100%;
  width: 100%;
}

.cart-dialog:is(.is-visible)::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.063rem);
  /* opacity: 0; */
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cart-dialog.is-visible {
  visibility: visible;
}

.cart-dialog-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  background: rgb(var(--background-color));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  padding: 3rem;
  box-sizing: border-box;
  max-width: var(--drawer-width);
}

.cart-dialog.is-visible .cart-dialog-wrapper {
  transform: translateY(0);
}

.cart-dialog-label {
  margin-bottom: 1rem;
}

.cart-dialog-wrapper .cart--close {
  display: block;
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}

.cart-dialog-wrapper .cart--close close-btn {
  padding: 0.5rem;
}

.cart-dialog .input {
  font-size: var(--text-base);
}

.discount-with-total {
  padding: 0.6rem 0rem;
}

.discount-amout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: rgb(var(--text-color));
  color: rgb(var(--background-color));
  padding: 0.438rem 0.375rem;
  border-radius: 10rem;
  margin: 1rem 0;
}

.total-amount > div {
  margin-top: 0.5rem;
}

.action-wrapper {
  gap: 1rem;
  margin-bottom: 1rem;
}

.action-wrapper .button {
  flex: 1;
  max-width: calc(100% - 1rem);
}

.shipping-tax-wrapper {
  margin-top: 16px;
}

.continue-shopping {
  padding: .38rem 0rem;
  display: inline-block;
  background-position: 0 2em;
}

/* Empty Cart */

.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  padding: 4vh 0;
  height: 100%;
}

.cart-drawer-empty-inner {
  align-self: center;
  max-width: 24rem;
  margin: 0 auto;
}

.cart-empty-icon {
  margin-bottom: 1.3rem;
}

.cart-drawer-empty .cart-empty-title {
  margin-bottom: 0.625rem;
}

.cart-drawer-empty .button {
  margin-top: 2rem;
}

.cart-login-wrapper {
  margin: 2rem 0;
}

.cart-title-login {
  margin-bottom: 0.5rem;
}

.cart-drawer-empty-collections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.875rem;
}

.cart-empty-collections-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--roounded-block);
}

.cart-empty-collections-item img {
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-empty-collections-item:hover img {
  transform: scale(1.1);
}

.cart-empty-collections-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--background-color));
  transition: all 0.3s ease-in-out;
  padding: 0.6rem;
}

.giftwrap {
  font-size: var(--text-small);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.giftwrap .input-option {
  appearance: none;
  width: 1.3rem;
  height: 1.3rem;
  background: rgb(var(--background-color-input));
  color: rgb(var(--background-color-input));
  border: 0.063rem solid rgb(var(--border-color));
  cursor: pointer;
  display: inline-block;
  margin: 0;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.2s;
  vertical-align: top;
  border-radius: 0.25rem;
  flex: 0 0 auto;
}

.giftwrap .input-option:is([type="checkbox"], [type="radio"]):checked {
  background: rgb(var(--text-color-input));
}

.giftwrap .input-option:is([type="checkbox"], [type="radio"]):before {
  content: "";
  display: block;
  position: absolute;
  border: 0.094rem solid currentColor;
  border-left: 0rem;
  border-top: 0rem;
  width: 0.3rem;
  height: 0.6rem;
  left: 0.4rem;
  top: 0.2rem;
  transform: rotate(43deg);
}

/* Password Page */

.password-header {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.063rem solid rgb(var(--border-color));
  padding: 2.75rem 0rem;
}

.password-main .password-header {
  justify-content: space-between;
}

.password-body {
  height: calc(100vh - 7rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-content {
  width: 100%;
  max-width: 32rem;
  text-align: center;
}

.password-title {
  margin: 2.5rem 0rem 1rem;
}

.password-text {
  margin: 0 0 1.25rem;
}

.password-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.3, 1);
}

.close-popup {
  background: transparent;
  border: 0;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.password-popup:is(:target, .is-visible) {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.password-popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  background-color: rgba(var(--background-color));
  color: rgba(var(--text-color));
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.3, 1);
  height: 100%;
  transform: scale(0.95);
  padding: 3.125rem;
  text-align: center;
}

.password-popup:is(:target, .is-visible) .password-popup-inner {
  transform: scale(1);
}

.password-popup-inner > *:not(.close-popup) {
  width: 100%;
  max-width: 36.25rem;
  margin-left: auto;
  margin-right: auto;
}

.password-popup-inner > *:not(:last-child) {
  margin-bottom: 1.375rem;
}

#scroll-to-top {
  z-index: 9;
  position: fixed;
  bottom: var(--scroll-top-position);
  height: 3.375rem;
  width: 3.375rem;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.back-to-top--left {
  left: 1.5rem;
}

.back-to-top--center {
  left: 50%;
}

.back-to-top--right {
  right: 1.5rem;
}

#backtoscroll-value {
  height: calc(100% - 0.375rem);
  width: calc(100% - 0.375rem);
  background-color: var(--scroll-top-background);
  color: var(--scroll-top-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

#backtoscroll-value svg {
  transform: rotate(-90deg);
}

.product-card-list .product-card--text {
  padding-left: 4px;
}

product-card.product-card-wrapper.zoom-image--effect .product-card-media img.product-card-hover--img {
    transition: all ease .5s;
    transform: translateY(10px) scale(1.1);
    opacity: 0;
    clip-path: none;
}
product-card.product-card-wrapper.zoom-image--effect .product-card-media:hover img.product-card-hover--img {
    transform: translateY(0px) scale(1.0);
    opacity: 1;
}
ul.list-view li {
    padding: .49rem 0;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid rgb(var(--text-color),.12);
    align-items: center;
}
ul.list-view {
    flex-direction: column;
    gap: 0;
}
.show-background {
    padding: 0.875rem;
    background-color: rgba(var(--foreground-color));
}
subscription-popup.modal-wrapper.subscription-popup.newsletter-without-img .modal-content {
    max-width: 32.625rem;
}
ul.delivery-info-coontent {
    border-radius: var(--rounded-card);
}
ul.list-view li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
ul.list-view li:first-child {
    padding-top: 0;
}
.collection-list--card {
    position: relative;
}
.collection-list--grid {
    gap: 1rem;
}
/* .collection-list--card {
    width: calc(20% - 0.8rem);
} */
.collection-card--img {
    position: relative;
    /* border-radius: var(--rounded-card); */
    overflow: hidden;
}

@media (min-width: 1025px) {
  .product-card-buttons {
    bottom: 0rem;
    /* max-width: calc(100% - 3rem); */
    transform: translateY(120%);
    padding-inline:20px;
  }
  .product-card-wrapper:hover .product-card-buttons {
    bottom: 0.8rem;
    transform: translateY(0%);
  }
  .product-card-wrapper:not(:hover)
    .quick-view-button-icon:not(:focus-visible) {
    pointer-events: none;
    opacity: 0;
    transform: scale(0);
  }
  .select-option {
    padding: 0.4rem 0.8rem;
  }
  .quick-add,
  .quick-view-button-icon {
    min-width: 2.2rem;
    width: 2.2rem;
    height: 2.2rem;
  }
  .quick-view-button-icon {
    top: 0.8rem;
    right: 0.8rem;
  }
  .product-card-wrapper:not(:hover)
    .product-card-buttons
    .product-variant--picker {
    transform: scale(0.8);
  }
}

@media (min-width: 992px) {
  .page--width {
    padding-inline: max(
      3.3rem,
      50vw - var(--scrollbar-width, 0rem) / 2 - var(--page-width) / 2
    );
  }
  .main-heading {
    padding-bottom: 2rem;
  }
  .main-heading .section-title + :is(p, .section-description, .description) {
    margin-top: 0.9rem;
  }
  .swiper-button {
    width: 2.375rem;
    height: 2.375rem;
  }
  .product-card-wrapper:is(.card-true) .product-card--text {
    padding: 1.3rem 1.875rem;
  }
  :is(
      .featured-collection-section,
      .related-products-wrapper,
      .recently-view-products-wrapper,
    )
    .slider-controls {
    position: absolute;
    top: -4.2rem;
    right: 0;
  }
  .main-product-wrapper .main-product-media-wrapper {
    flex: 1;
    max-width: 40%;
  }
  .main-product-wrapper:has(.product-media-template1) :is(.main-product-tab-content, .main-product-wrapper .main-product-media-wrapper, .product-information--wrapper) {
    position: sticky;
    top: 2rem;
  }
  .main-product-wrapper .main-product-tab-content,
  .main-product-wrapper .product-information--wrapper {
    flex: 1 1;
    max-width: 30%;
    padding: 3rem;
  }
  .recommendations-slider {
    max-height: 27.5rem;
  }
  .featured-collection-section .main-heading {
    max-width: calc(100% - 10rem);
  }

  .cart-empty-collections-title {
    transform: translateY(0.625rem);
    opacity: 0;
  }
  .cart-empty-collections-title:hover {
    transform: translateY(0rem);
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .close-localization {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    padding: 0.7rem;
  }
  .close-localization::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 0.05rem solid rgb(var(--text-color));
    position: absolute;
    border-radius: 10rem;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.3, 1, 0.3, 1);
    opacity: 0;
  }

  .close-localization:hover:before {
    transform: scale(1.1);
    opacity: 1;
  }

  .close-localization span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--foreground-color));
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
  }

  .close-localization:hover span:before {
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .localization-content {
    padding: 4rem;
    max-width: 31rem;
    transform: translateY(1.875rem);
  }
  .disclosure_wrapper.is-active .localization-content {
    transform: translateY(0rem);
  }
  .complementary-product .slider-controls {
    top: 2.8rem;
  }
}

@media (max-width: 991px) {
  .recently-view-products-wrapper .slider-controls {
    margin-top: 1rem;
  }
  .close-localization {
    background: rgb(var(--foreground-color));
    border-radius: 50%;
  }
  .quick-view-button-icon svg {
    width: 0.7rem;
    height: 0.7rem;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-height--full {
    height: calc(100vh - 2rem);
  }
  .mobile-height--auto {
    height: auto;
  }
  .mobile-height--300 {
    height: 18.75rem;
  }
  .mobile-height--350 {
    height: 25.875rem;
  }
  .mobile-height--400 {
    height: 35rem;
  }
  .mobile-height--450 {
    height: 44.125rem;
  }
  .cart-product-image {
    max-width: 5rem;
    height: 6rem;
    min-width: 5rem;
  }
  .featured-collection-section .swiper {
    margin-bottom: 1.5rem;
  }

  .cart-dialog-wrapper {
    padding: 2rem 1rem;
  }
  .product-scroll-image {
    height: 10rem;
  }
  .modal-dialog-cart--navtabs {
    padding: 1rem 0rem;
    gap: 1rem;
  }
  .cart-drawer-empty {
    padding: 3vh 0;
    max-width: 18rem;
    margin: 0 auto;
    height: auto;
  }
  .drawer > div[data-product-info] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .localization-content {
    max-width: 100%;
    align-self: flex-end;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
  }
  .disclosure_wrapper.is-active .localization-content {
    transform: translateY(0%);
  }
  .localization-content-item .disclosure__list {
    top: unset;
    bottom: calc(100% - 1.6rem);
  }
  .complementary-product {
    padding-top: 1rem;
  }
  .product-price-list product-sale-price {
    font-size: var(--text-small);
  }
  .recommendations-product-img {
    width: 100%;
    min-width: 100%;
    height: 12rem;
  }
  .collection-product--results .product-card-list {
    grid-gap: var(--grid-gap);
  }
}

custom-search{
  position:relative;
}
custom-search .predictive-search-results-wrapper{
  position:absolute;
  top:100%;
  left:0;
  background:white;
 
}
custom-search .predictive-search-results-wrapper.active{
  padding:12px 18px;
  min-width:330px;
}
custom-search .predictive-search-results-wrapper.active .predictive-search-content > * {
  display:block !important;
}
custom-search .clear-search{
  background:unset !important;
}
.header-inline-icons .user, .header-inline-icons .cart, .header-inline-icons .search  {
  padding:10px;
  height:fit-content;
  background:#E1DCD6;
  border-radius:8px;
}
custom-search .search-input-field{
  border:unset !important;
  padding:unset !important;
}
custom-search .custom-predictive-search{
  border:1px solid #8ABC86;
  border-radius:8px;
  padding:10px 12px;
  background:#E1DCD6;
  margin: unset !important;
}
custom-search .predictive-search-loading:not(.hidden){
  min-width:330px;
  padding:12px 18px;
  min-height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
}
custom-search .search-button--wrapper .clear-search{
  display:flex;
  align-items:center;
  justify-content:center;
}
custom-search input{
  /* font-size:14px !important; */
}
main-header.background-header-color custom-search .custom-predictive-search , main-header.background-header-color .header-inline-icons .user, main-header.background-header-color .header-inline-icons .cart, main-header.background-header-color .header-inline-icons .search {
  background:white;
}
main-header .header-inline-icons .search svg path{
  fill:#8ABC86;
}
@media(min-width:1440px){
  custom-search input{
    min-width:400px;
  }
}
@media(min-width:990px){
   body.template-product .featured-product--grid .product-information--wrapper{
    width:45%;
    flex:unset !important
  }
}
@media(min-width:1280px){
  body.template-product .featured-product--grid .product-information--wrapper{
    width:45%;
    flex:unset !important
  }
  product-card .swym-advanced-wishlist-collections-container{
    left:unset !important;
    top: 4rem !important;
    right: 0.8rem !important;
  }
  .menu-link{
     font-size:16px !important;
  }
  .footer-newsletter-title{
    display:flex;
    flex-wrap:nowrap !important;
    flex-direction:row;
    gap:52px !important;
  }
  
  .announcement-bar-content *{
    font-size:18px;
  }
   .announcement-block {
    padding-right:unset !important;

   }
  .announcement-block .swiper-slide{
    display:flex;
    justify-content:end;
  }
  .announcement-bar-text {
    width:fit-content;
  }
  .header-inline-icons .search{
    display:none;
  }
}
@media(max-width:768px){
  .inline-mobile{
  display:flex;
  flex-wrap:unset !important;
  gap:16px;
}
    .button-text{
    font-size:16px;
  }
  .footer-newsletter-head{
    text-align:left;
  }
  .list-style-none.header-icons{
    display:flex !important;
    align-items:center;
  }
  body .swym-advanced-header-icon, body #swym-advanced-header-icon, body #swym-advanced-header-icon-mobile{
    display:none !important;
  }
  .header-icons .user{
    display:flex !important;
  }
  custom-search{
    display:none;
  }
.header-inline-icons .user, .header-inline-icons .cart, .header-inline-icons .search  {
  padding:4px;
}
.custom-footer-logo{
  margin-bottom:32px !important;
}
}
custom-search input::placeholder {
  color: #103934;
}
.scrolling-content--grid.always_show .collection-card--content{
  opacity:1 !important;
  transform:translateY(0) !important;
}
.scrolling-content--card .collection-card--title {
  font-weight: 400 !important;
  text-transform: capitalize !important;
}
footer{
  --border-color: 64, 97, 93

}
.footer-contact-icon>svg{
  width:24px !important;
  height:24px !important;
}
.custom-footer-logo{
  margin-bottom:52px;
}
.custom-footer-bg-image{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:2;
}
.custom-footer-bg-image img{
width:100%;
height:100%;
object-fit:cover;
}
.footer-newsletter > .page--width{
  z-index:3;
  position:relative
}
.image-testi img{
  width:100%;
}
.main-heading .section-title, .multi-image-with--text-item *{
  text-transform:none;
}
.image-testi, .image-testi img{
  height:80%;
  object-fit:cover;
}
.footer-links{
  width:100%;
}
/* .footer-copyright-wrapper{
  border-top:1px solid #40615D !important;
}
.footer-brand{
  border-right:1px solid #40615D !important;
} */
 .title-link{
  font-size:18px;
  margin-bottom:20px;
  text-transform:uppercase;
 }
 .air-weeve-menu ul {
  display:flex;
  flex-direction:column;
  gap:20px;
 }
 .air-weeve-menu ul li a{   
  font-size:16px;
  transition:all 500ms ease;
 }
 .air-weeve-menu ul li a:hover{
  color:#89BD85;
 }

 .megamenu-promotions-text{
  font-size:24px;
 }
 #swym-anchor{
  right:unset !important;
  left:20px;
  z-index:9 !important;
 }
.swym-background-color{
  border-radius:999px;
}
.product-sticky-bar{
  z-index:10 !important;
}

:is(.collection-tab-section, .testimonial-section) .swiper-button {
  border-radius: 999px;
  background: #eee2ce;
  color: black;
  border-color: #eee2ce;
}
.media-ratio{
  background-color:#F8F3EA !important;
}
cart-drawer .quantity-elements{
  height:auto !important;
}

@media (max-width:768px) {
  .Avada-Faqs_Button {
    z-index: 10 !important; 
  }

  .slideshow-title {
    text-wrap-style: balance;
  }

  .page--width {
    padding-inline: 1.24rem !important;
  }

  .slideshow-button-wrapper {
    gap: 12px !important;
  }

  
  .rich-text-section .description.rich-text--text.text-lg{
    font-size:16px;
  }
  .rich-text-section .description.rich-text--text.text-lg p{
  max-width: 326px;
  }

  .button {
    padding: 14px 32px;
  }
}

#overlay {
  position: fixed; 
  display: block; 
  width: 100%; 
  height: 100%; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color:rgba(30, 17, 0, 40%); 
  z-index: 2; 
  cursor: pointer; 
}

.with-color-overlay .scrolling-content-wrapper {
  z-index: 5;
}

.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

@media (min-width: 600px) {
  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }
}

.slideshow-button-wrapper  {
  place-content: center;
}

@media (max-width:768px) {
  .restock-rocket-button-container-float-right.custom-restock .restock-rocket-button-product {
    font-size: 12px;
  }
}

.restock-rocket-button-container-float-right.custom-restock .restock-rocket-button-product {
  height: 44px;
  border-radius: 0.25rem;
  text-align: center;
  padding-block: unset;
}
  
.restock-rocket-button-container-float-right.custom-restock {
    position: relative;
    top: unset;
    right: unset;
    transform: unset;
    transform-origin: unset;
}

/* slider-complementary .swiper-slide {
  width: fit-content !important;
} */

product-card .quick-add:hover:before {
    opacity: 1;
    /* background-color: rgba(var(--button-text-color)); */
    background-color: rgb(var(--button-background-color));;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0);
    -webkit-transition-timing-function: 
cubic-bezier(.2, 1, .3, 1);
    transition-timing-function: 
cubic-bezier(.2, 1, .3, 1);
}

product-card .quick-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(var(--button-text-color));
    color: rgb(var(--button-text-color));
    text-align: center;
    transition: all .5s 
ease-in-out;
    z-index: 1;
    overflow: hidden;
}
product-card .quick-add:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    /* background-color: rgb(var(--button-background-color)); */
    background-color: rgba(var(--button-text-color));
    z-index: -1;
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform .3s, opacity .3s, background-color .3s;
    transition: transform .3s, opacity .3s, background-color .3s;
}

/* product-card .quick-add [data-add-to-cart-text]:hover {
    color: rgba(var(--button-background-color));
    color: rgba(var(--button-text-color));
    background: inherit;
    border: .063rem solid rgba(var(--button-background-color));
} */

@media (max-width:769px) {
  .product-information--wrapper .air-weeve-form-product product-form.product-form {
    grid-row-start: 2;
    grid-column: span 2;
  }
  .product-information--wrapper .air-weeve-form-product .product-quantity-wrapper {
    
  }
  .product-information--wrapper .air-weeve-form-product {
    display: grid;
    grid-template-columns: min-content 1fr;
  }
}
.section-custom-tab-related-recent .slider-controls .swiper-button{
  border:unset !important;
}

@media (min-width:768px) {
  .product-information--wrapper button.swym-add-to-wishlist-view-product {
    min-width: 48px;
    pointer-events:unset !important;
    opacity:1 !important;
  }

}

.product-information--wrapper button.swym-add-to-wishlist-view-product {
      display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: .625rem;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    border-radius: var(--rounded-button);
    background-color: rgb(var(--button-background-color));
    color: rgb(var(--button-text-color));
    border: .063rem solid rgba(var(--button-border-color));
    text-align: center;
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    letter-spacing: var(--text-letter-spacing);
    text-transform: var(--button-text-transform);
    padding: .4rem;
    line-height: 1.6;
    transition: all .5s 
ease-in-out;
    min-height: auto;
    z-index: 1;
    height: auto;
    overflow: hidden;
}

/* .product-card-list .product-card-media img {
  mix-blend-mode: darken;
} */
 product-card .select-option{
    border:1px solid #103934;
 }
 
 .multi-collections-arrow:hover{
  background:#103934 !important;
  color:white;
 }
 .multi-collections--wrapper .countdown-wrapper {
    justify-content:start;
 }
.megamenu-items .megamenu-promotions-text > * {
 transition: all .6s 
ease;
}
.megamenu-items:hover .megamenu-promotions-text > * {
 color: rgba(var(--button-background-color));
}

@media (min-width:768px) {
  /* main-header .menu-promotions-link {
    height: 344px;
  } */
   .megamenu-items:not(:last-of-type) .menu-promotions-link .menu-promo-image img {
    height: 289px;
  }
}

.atc-wrapper .button:hover path {
  stroke: #8abc86 !important;
}
.atc-wrapper .button:hover {
    background: rgba(var(--button-text-color));
    transition: all .5s 
    ease;
    color: #8abc86 !important;
}

.atc-wrapper .button:before {
  content: unset;
}
.menu-promotions-link .menu-promo-image img{
  object-fit:cover;
}

/* QUICK VIEW PRODUCT */
@media (min-width:768px) {
  quick-view product-gallery-media,
  quick-view product-gallery-media img {
    max-height: 48vh;
    object-fit: contain !important;
  }
}

/* BUTTON HOVER */

.button:before {
  content: unset !important;
}

/* PRODUCT CARD */

.product-form--error-message-wrapper span {
  color: white  !important;
}
.product-form--error-message-wrapper {
      position: absolute;
    width: 100%;
    left: 0px;
    background: #103934 !important;
    padding-inline: 12px;
    bottom: 100px;
    text-align: center;
    text-wrap-style: balance;
}

product-card.product-card-wrapper .product-card-media {
  border-radius: 5px !important;
}
cart-drawer quantity-element{
  background-color:white !important;
}
form #wsaui-submit-btn{
  background-color: #103934 !important;
  color:#8ABC86 !important;
  transition:all 500ms ease;
}
form #wsaui-submit-btn:hover{
  color: #103934 !important;
  background-color:#8ABC86 !important;
}
.footer-newsletter-form .form-control+.alert{
  color:#8ABC86 !important;
  background-color:#103934 !important
}
subscription-popup .modal-content{
  clip-path:unset !important;
}