:root {
  --font-body-xs: 8px;
  --font-body-sm: 13px;
  --font-body-md: 16px;
  --font-body-lg: 20px;
  --font-body-xl: 28px;
  --font-body-xxl: 34px;
}

*,
*::before,
*::after {
  letter-spacing: normal !important;
}

p,
body {
  font-size: var(--font-body-md);
}

.uppercase {
  text-transform: uppercase;
}

.title-wrapper--no-top-margin {
  justify-content: center;
  text-align: center;
}

.title {
  text-align: center;
}

@media screen and (max-width: 749px) {
  .title-wrapper--no-top-margin > *,
  .title > * {
    font-size: var(--font-body-lg) !important;
  }
  .title-wrapper--no-top-margin em,
  .title em {
    font-style: normal !important;
  }
  .title-wrapper-with-link {
    margin-bottom: 1.5rem !important;
  }
}

/* animation */
.shining-effect { 
  position: relative;
}
.shining-effect:after { 
  content: "";
  animation: button_animation 1.5s linear infinite;
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 40%) 50%, rgb(255 255 255 / 0%) 100%);
}

@keyframes button_animation { 
  0% {
      transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.scale-up-hor-center {
	-webkit-animation: scale-up-hor-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-hor-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-hor-center {
  0% {
    -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scale-up-hor-center {
  0% {
    -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.card__short-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  p {
    font-size: var(--font-body-sm);
    margin: 0;
  }
}

/* product recommendations */
.product-recommendations { 
  .card__short-description { 
    margin-bottom: 1rem;
  }
}

/* card product */
.product-card-wrapper {
  padding: .5rem;

  .card { 
    border: .5px solid rgb(0, 0, 0, .10);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 1.5rem 2rem;
  }

  .card__heading {
    font-size: var(--font-body-lg);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1rem;
  }
  
  .card-information {
    .price {
      font-size: var(--font-body-lg) !important;
      font-weight: 700;
    }
    s.price-item {
      font-size: var(--font-body-md) !important;
      color: rgba(17, 17, 17, 0.75);
      font-weight: 400;
    }
  }

  .badge--best-seller,
  .badge--new {
    height: 6rem;
    width: 6rem;
    padding: unset;
  }

  @media screen and (max-width: 749px) {
    .quick-add__submit {
      font-size: var(--font-body-md);
      min-height: calc(3.5rem + var(--buttons-border-width) * 2);
      --buttons-radius: 5px;
      --buttons-radius-outset: 5px;
    }
    .badge--best-seller,
    .badge--new {
      height: 4rem;
      width: 4rem;
      padding: unset;
    }
  }
}

/* slider */
.slider-buttons {
  .slider-button--next {
    .icon.icon-arrow {
      transform: rotate(0) !important;
    }
  }

  .slider-button--next:hover {
    .icon.icon-arrow {
      transform: rotate(0) scale(1.2) !important;
    }
  }

  .slider-button--prev {
    .icon.icon-arrow {
      transform: rotate(180deg) !important;
    }
  }

  .slider-button--prev:hover {
    .icon.icon-arrow {
      transform: rotate(180deg) scale(1.2) !important;
    }
  }
}

slider-component {
  &.page-width { 
    padding-left: 0;
    padding-right: 0;
  }

  .slider-buttons {
    .slider-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: 4rem;
      width: 4rem;
      z-index: 2;

      .icon {
        color: #C9C9C9;
      }

      &::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 100%;
        border-radius: 50%;
        background-color: rgb(255, 255, 255, 1);
        box-shadow: 0px 4px 4px 0px #00000040;
        z-index: -1;
      }

      &[disabled]::after {
        background-color: rgb(255, 255, 255, 0.5);
      }

      &[disabled] .icon {
        color: #C9C9C9;
      }
    }

    @media screen and (min-width: 750px) {
      .slider-button--prev {
        left: 3rem;
      }

      .slider-button--next {
        right: 3rem;
      }

      .slider-button .icon {
        height: 1.2rem;
        color: #C9C9C9;
      }
    }
  }
}

.slider-mobile-gutter {
  @media screen and (max-width: 749px) {
    .slider-buttons {
      .slider-button--prev {
        left: 0.5rem;
      }

      .slider-button--next {
        right: 0.5rem;
      }
    }

    .grid--peek.slider {
      .grid__item:first-of-type {
        margin-left: 0 !important;
      }
    }

    .slider--tablet.grid--peek.grid--1-col-tablet-down,
    .slider--mobile.grid--peek.grid--1-col-tablet-down {
      .grid__item {
        width: 100% !important;
      }
    }
  }
}

@media screen and (min-width: 750px) {
  .slider--desktop {
    --desktop-margin-left-first-item: 0 !important;

    &:after {
      padding-left: 0 !important;
    }

    .slider__slide {
      --desktop-margin-left-first-item: 0 !important;
    }
  }

  .slider--desktop.grid--5-col-desktop {
    .grid__item {
      width: calc(
        20% - var(--grid-desktop-horizontal-spacing) * 4 / 5
      ) !important;
      max-width: calc(
        20% - var(--grid-desktop-horizontal-spacing) * 4 / 5
      ) !important;
    }
  }

  .slider--desktop.grid--4-col-desktop {
    .grid__item {
      width: calc(
        25% - var(--grid-desktop-horizontal-spacing) * 3 / 4
      ) !important;
      max-width: calc(
        25% - var(--grid-desktop-horizontal-spacing) * 3 / 4
      ) !important;
    }
  }

  .slider--desktop.grid--3-col-desktop {
    .grid__item {
      width: calc(
        33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3
      ) !important;
      max-width: calc(
        33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3
      ) !important;
    }
  }

  .slider--desktop.grid--2-col-desktop {
    .grid__item {
      width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2) !important;
      max-width: calc(
        50% - var(--grid-desktop-horizontal-spacing) / 2
      ) !important;
    }
  }
}

/* cart */
cart-drawer {
  .drawer__inner {
    padding-left: 0;
    padding-right: 0;
    overflow: auto;
    border: 0;
    width: 45rem;

    .drawer__header,
    .drawer__cart-items-wrapper,
    .drawer__footer {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .drawer__header {
      background-color: rgba(13, 13, 13, 1);
      justify-content: center;

      .drawer__heading,
      .drawer__close {
        color: #fff;
      }
      .drawer__heading {
        margin-bottom: 0;
        line-height: normal;
        font-size: var(--font-body-lg);
      }
      .drawer__close {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        min-height: unset;

        .svg-wrapper {
          height: 1.5rem;
          width: 1.5rem;
        }
      }
    }

    tbody {
      border: 1px solid rgb(0, 0, 0, 0.1);
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
      border-radius: 2rem;

      .cart-item {
        margin-top: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        grid-template: repeat(2, auto) / repeat(3, 1fr);

        & + .cart-item {
          border-top: 1px solid rgb(0, 0, 0, 0.1);
        }

        .cart-item__details {
          * {
            color: #000000 !important;
          }

          .cart-item__name {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: var(--font-body-md);
          }

          .product-option {
            font-size: var(--font-body-sm);
            line-height: normal;
          }
        }

        .cart-remove--button__wrapper {
          cart-remove-button {
            margin-left: 0;

            .button {
              min-height: unset;
              min-width: unset;

              .icon-remove {
                color: #888888;
              }
            }
          }
        }

        .cart-item__quantity-wrapper {
          align-items: center;
          justify-content: space-between;
          gap: 0.5rem;
          --color-foreground: 0, 0, 0;

          .quantity-popover-container {
            max-width: unset;
            border-radius: 2rem;
            overflow: hidden;
            flex-shrink: 0;

            .quantity {
              background: #f0f0f0;
              min-height: calc((var(--inputs-border-width) * 2) + 2.8rem);
              width: 10rem;
              min-width: calc(
                10rem / var(--font-body-scale) + var(--inputs-border-width) * 2
              );

              &:after {
                box-shadow: unset;
              }

              .quantity__button {
                width: calc(3.5rem / var(--font-body-scale));
                min-width: calc(3.5rem / var(--font-body-scale));
              }
            }
          }
        }
      }
    }

    .cart__ctas {
      flex-wrap: wrap;

      .cart__checkout-button,
      .button--secondary {
        font-size: var(--font-body-md);
      }

      .cart__checkout-button {
        gap: 0.8rem;
      }

      .button--secondary {
        --color-button-text: 0, 0, 0;
      }

      @media screen and (max-width: 749px) { 
        .cart__checkout-button { 
          margin-bottom: 1rem;
        }
      }
    }

    .delivery-date {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      font-size: 1.4rem;
      text-align: center;
      color: rgb(0, 0, 0, .6);
    }

    .contact-us--wrapper {
      margin: 1.5rem;
      padding: 1.5rem;
      border: 1px solid rgb(0, 0, 0, .1);
      border-radius: 2rem;

      h3 { 
        margin: 0;
        text-align: center;
        font-weight: 700;
      }

      ul { 
        display: flex;
        justify-content: space-around;
        column-gap: .5rem;
        row-gap: 1rem;
        flex-wrap: wrap;
        padding: 0;
      }

      li { 
        list-style: none;
        display: flex;
        align-items: center;
      }

      .svg-wrapper {
        height: 2.5rem;
        width: 2.5rem;
        flex-shrink: 0;
      }

      .details-wrapper {
        display: flex;
        flex-direction: column;
        font-size: 12px;
        letter-spacing: 0;
        color: rgb(0, 0, 0, .6);
        line-height: normal;
        padding-left: .5rem;
        gap: 0;

        a {
          color: inherit;
          text-decoration: unset;
        }
      }

    }

  }
}

/* header */
.header {

  /* mega menu app */
  .tmenu_nav .tmenu_item--root > .tmenu_item_link {
    font-size: 16px !important;
    padding-top: 1rem !important;
  }

  .tmenu_collection--above {
    position: relative !important;
  }

  .tmenu_collection--above:after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgb(0, 0, 0, .5) !important;
    z-index: 1 !important;
  }

  .tmenu_collection--above .tmenu_item_text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-weight: 900 !important;
    font-size: 24px !important;
    color: #fff !important;
    z-index: 2 !important;
  }

  /* mega menu */
  // header-menu .mega-menu { 
  //   .mega-menu__list { 
  //     grid-template-columns: repeat(3,minmax(0,1fr));
  //   }
  // } 

  @media screen and (max-width: 749px) {
    & {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
    .header__heading-logo-wrapper img {
      max-width: 10rem;
    }
    .header__icon {
      .icon {
        &.icon-cart,
        &.icon-cart-empty {
          height: 2.2rem;
          width: 2.2rem;
        }
      }
      &.header__icon--search,
      .svg-wrapper {
        width: fit-content;
      }
    }
  }

  @media screen and (min-width: 750px) {
    .list-menu__item {
      padding-top: 2rem;
    }

    .header__icons { 
      align-items: center;
    }

    .button-discount { 
      min-width: calc(22rem + var(--buttons-border-width) * 2);
      --color-button: 212, 175, 55;
      color: #0D0D0D;
      border-radius: 4rem;
      margin-right: 2rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .button-discount::before,
    .button-discount::after { 
      box-shadow: unset !important;
    }

    .swym-header-launcher { 
      margin-right: .2rem;
      margin-left: .2rem;

      &, svg, .swym-header-launcher-icon { 
        height: 4.4rem !important;
        width: 2.8rem !important;
      }
    }

    .header__icon {
      .icon {
        height: 2.2rem;
        width: 2.2rem;

        &.icon-account,
        &.icon-search {
          height: 2.6rem;
          width: 2.6rem;
        }
      }
    }

    .cart-count-bubble {
      span {
        height: auto;
        line-height: normal;
      }
    }

    /* search */
    predictive-search:not([loading]) .predictive-search__loading-state,
    predictive-search:not([loading]) .predictive-search-status__loading {
      display: none !important;
    }

    @media screen and (min-width: 750px) { 
      .search-header__inline.search-modal__content { 
        padding-left: 2rem;
        padding-right: 1rem;
      }

      .search-header__inline .search__input.field__input { 
        height: 4rem;
        padding: .5rem 6rem .2rem .5rem;
        font-size: 1.4rem;
      }

      .search-header__inline .search-modal__form { 
        min-width: 26rem;
      }

      .search-header__inline .field:focus,
      .search-header__inline .field:focus-within,
      .search-header__inline .field:focus-visible,
      .search-header__inline .field:hover,
      .search-header__inline .field:before,
      .search-header__inline .field:after,
      .search-header__inline .field:hover.field:before,
      .search-header__inline .field:hover.field:after { 
        box-shadow: unset;
        outline: none;
      }

      .search-header__inline .field__input,
      .search-header__inline .field__input:focus-within { 
        border-bottom: 1px solid;
        box-shadow: unset;
      }

      .search-header__inline .field__input:focus ~ .field__label,
      .search-header__inline .field__input:not(:placeholder-shown) ~ .field__label { 
        font-size: 1rem;
        top: 23%;
        left: 0;
      }

      .search-header__inline .field__input + .field__label { 
        font-size: 1.4rem;
        top: 50%;
        transform: translateY(-50%);
        padding-bottom: 1px;
        color: rgba(17, 17, 17, 0.4);
        left: 0;
      }

      .search-header__inline .search__button { 
        width: fit-content;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
      }

      .search-header__inline .predictive-search__results-groups-wrapper { 
        flex-direction: column;
      }
    }
  }
}

/* footer */
.footer {
  .footer__blocks-wrapper {
    .newsletter-form {
      margin: 0;

      .field {
        flex-direction: column;

        &::before,
        &::after,
        .field__input:focus-visible {
          box-shadow: unset;
        }

        .field__input {
          margin-bottom: 2rem;
          border: none;
          border-bottom: 1px solid;
          padding: 1rem 0 0.5rem 0;
          background: transparent;
          font-size: var(--font-body-md);

          &:focus,
          &:not(:placeholder-shown) {
            & ~ .field__label {
              font-size: var(--font-body-sm);
              transform: translateY(-1.8rem);
            }
          }
        }

        .field__label {
          left: 0;
          font-size: var(--font-body-md);
        }
      }

      .field__button {
        width: 100%;
      }

      .opt-in--disclaimer {
        margin-top: 3.5rem;
        line-height: 120%;
        color: rgba(var(--color-foreground), 1);
        font-style: italic;
      }
    }
    .footer-block__details-content {
      localization-form {
        form {
          padding-top: 0;
          margin: 0;

          h2.caption-large {
            display: none;
            margin-top: 0;
            font-size: var(--font-body-md);
          }

          .disclosure__button {
            margin: 0;
          }

          .disclosure__item {
            .disclosure__link {
              color: rgba(var(--color-foreground), 0.75);
            }
          }
        }
      }
      & > p {
        position: relative;

        &::before {
          content: "";
          display: inline-block;
          width: 1.3rem;
          height: 1.3rem;
          background-image: url("https://cdn.shopify.com/s/files/1/0938/6118/3797/files/footer-address-icon.png?v=1746142526");
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center;
          margin-right: 0.5rem;
        }
      }
    }
  }

  @media screen and (max-width: 749px) {
    & {
      padding-top: 4rem !important;
    }

    .footer__content-top {
      padding-left: 1.5rem !important;
      padding-right: 1.5rem !important;
    }
    .footer-block.grid__item:not(:first-child) {
      margin: 0;

      .footer-block__heading {
        margin-bottom: 1rem;
      }

      .footer-block__details-content {
        margin-bottom: 2.5rem;

        .list-menu__item--link {
          padding-bottom: 0;
        }
      }
    }
  }
}

@media screen and (min-width: 750px) {
  .footer {
    .footer__blocks-wrapper {
      &.grid--4-col-tablet {
        .grid__item {
          width: calc(40% - var(--grid-desktop-horizontal-spacing) * 3 / 4);

          &:not(:first-of-type) {
            width: calc(20% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
          }
        }
      }
    }

    .footer-block__details-content {
      .list-menu__item--link {
        font-size: var(--font-body-md);
      }
    }

    .footer-block__heading {
      margin-bottom: 3.5rem;
      padding-bottom: 0;
    }
  }
}

/*=== sections styling ===*/

/* banner */
.banner {
  .banner__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    img {
      display: block;
      height: auto;
      width: 12rem;
      max-width: 100%;
      margin: 0;
    }
    p {
      margin: 0;
    }
  }

  @media screen and (max-width: 749px) {
    &.banner--content-align-mobile-center .banner__rating {
      justify-content: center;
    }
    &.banner--content-align-mobile-right .banner__rating {
      justify-content: flex-end;
    }
    .banner__box {
      display: flex;
      flex-direction: column;

      .banner__rating {
        flex-direction: column;
        order: 3;
        margin-top: 2rem;

        p {
          line-height: normal;
          font-size: var(--font-body-md);
        }

        img {
          width: 10rem;
        }
      }
      .banner__heading {
        font-size: var(--font-body-xl);
        margin-top: 0;
      }
      .banner__text p {
        line-height: 130%;
        font-size: var(--font-body-md);
      }
      .banner__text br {
        display: none;
      }
      .banner__buttons {
        order: 4;
        margin-top: 1.5rem;

        .button {
          min-height: calc(3.5rem + var(--buttons-border-width) * 2);
        }
      }
    }

    &.banner--content-align-mobile-left {
      .banner__box {
        align-items: flex-start;
      }
    }
  }

  @media screen and (min-width: 750px) {
    .banner__rating + .banner__heading {
      margin-top: 2.5rem;
    }
    .banner__buttons {
      .button {
        min-width: calc(28rem + var(--buttons-border-width) * 2);
        min-height: calc(5rem + var(--buttons-border-width) * 2);
        font-size: 1.8rem;
      }
    }
  }
}

/* collection list */
.collection-list-wrapper {
  .card__heading {
    text-decoration: underline;
  }
}

/* featured collection  */
.featured-collection {
  
  .collection-with--view__all-wrapper { 
    display: flex;
    justify-content: space-between;
  }
  
  .collection__title, 
  .title { 
    text-align: left;
    padding: 0 !important;
  }

  .collection__view-all {
    .link {
      font-style: italic;
      font-size: var(--font-body-md);
    }
    @media screen and (max-width: 749px) {
      .link {
        font-style: normal;
      }
    }
  }

  @media screen and (min-width: 750px) {
    .collection-banner--wrapper { 
      display: flex;
  
      .collection-banner { 
        width: 25%;
        flex-shrink: 0;
      }

      slider-component { 
        width: 75%;
        flex-shrink: 0;
        padding-left: 2.5rem;
        padding-right: 0;
  
        ul.grid { 
          margin-top: 0;
          margin-bottom: 0;
        }
        
        .grid__item,
        .product-card-wrapper { 
          padding-top: 0;
          padding-bottom: 0;
        }
        
        .slider-button::after {
          background-color: rgb(0, 0, 0, .75);
        }
  
        .slider-button[disabled]::after {
          background-color: rgb(0, 0, 0, 0.5);
        }
      }
  
      .collection-banner img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      @media screen and (min-width: 750px) {
        .slider-button--prev { 
          left: .5rem;
        }
        .slider-button--next {
            right: -2rem;
        }
      }
  
    }
  }

  @media screen and (max-width: 749px) { 
    .collection-banner--wrapper { 
      slider-component.page-width { 
        padding-left: 0;
        padding-right: 0;
      }

      .slider-button--prev { 
        left: -1rem !important;
      }

      .slider-button--next { 
        right: -1rem !important;
      }
    }
    .grid.product-grid .grid__item { 
      height: 100% !important;
    }
  }
}

/* multicolumn */
.multicolumn {
  .multicolumn-card__info {
    .link {
      text-decoration: underline;
      font-style: italic;
    }
  }
}

/* choice options */
.quick-add-modal__content-info {
  p.product__inventory,
  .info-wrapper *,
  .product__view-details { font-size: 14px !important; }
}

/* main product */
.product {
  div[id^="price-template--"].hidden { 
    display: block !important;
  }
  
  .price {
    line-height: normal;

    .price-item {
      font-size: calc(var(--font-heading-scale) * 3rem);
      font-weight: 700;
    }

    &.price--on-sale {
      .price__sale {
        display: flex;
        align-items: center;

        s.price-item {
          font-size: calc(var(--font-heading-scale) * 2rem);
          color: rgba(17, 17, 17, 0.4);
          padding-right: 1rem;
        }

        .discount-badge {
          border-radius: 2rem;
          background-color: rgba(255, 51, 51, 0.1);
          padding: 0.5rem 1rem;
          font-size: var(--font-body-sm);
          color: #000;
        }
      }
    }
  }

  .payments-wrapper { 
    img { 
      display: block;
      width: auto;
      height: 3rem;
      max-width: 100%;
    }
    @media screen and (max-width: 749px) { 
      img { 
        width: 100%;
        height: auto;
      } 
    }
  }

  .featured-review { 
    display: flex;
    gap: 2rem;
    align-items: center;
    border: 1px solid rgb(0, 0, 0, .25);
    border-radius: 1rem;
    padding: 1.4rem 2rem;
    
    .icon-star-container { 
      display: flex;
      align-items: center;
      margin-top: .5rem;
      font-size: 14px;
      line-height: normal;
      margin-left: -4px;
    }

    .featured-review--image { 
      flex-grow: 0;
      flex-shrink: 0;
      width: 20%;

      img { 
        display: block;
        height: auto;
        width: 100%;
        aspect-ratio: 1 / 1;
        max-width: 100%;
        border-radius: 50%;
      }
    }

    .featured-review--content { 
      .customer-name { 
        margin: 0;
      }

      .customer-review p { 
        margin-bottom: 0;
        font-size: var(--font-body-sm);
      }
    }

  }

  .product__description {
    margin-top: 0;
    color: rgba(17, 17, 17, 1);
  }

  variant-selects {
    .form__label {
      color: rgb(17, 17, 17, 1);
      font-size: var(--font-body-md);
    }

    .product-form__input--pill input[type="radio"]:checked + label {
      background-color: transparent;
      color: inherit;
      border: 1px solid rgba(13, 13, 13, 1);
      color: rgba(13, 13, 13, 1);
    }

    .product-form__input--pill
      input[type="radio"]:not(input[type="radio"]:checked)
      + label {
      border: 1px solid rgb(17, 17, 17, 0.25);
      color: rgb(17, 17, 17, 1);
    }

    .product-form-swatch__variants {
      .svg-wrapper {
        width: 1.5rem;
        display: none;

        .icon-checkmark {
          color: rgba(155, 52, 81, 1);
        }
      }
    }
  }

  .product-popup-modal__opener {
    margin: 0;
  }

  .buy-buttons--wrapper {
    & > div:not(.product-form__quantity) { 
      display: flex;
      align-items: center;

      .atw-button { 
        border: 1px solid rgba(13, 13, 13, 1) !important;
      }

      .product-form { 
        width: 100%;
      }

    }

    .quantity {
      background-color: rgba(240, 240, 240, 1);

      &::before,
      &::after {
        box-shadow: unset;
      }

      .quantity__input {
        font-weight: 600;
        padding-top: 2px;
      }

      .quantity__button .svg-wrapper {
        height: 1.5rem;
        width: 1.5rem;
      }
    }

    
  }

  .product-form__submit > span {
    position: relative;
    line-height: normal;
    padding-left: 3rem;
    font-size: var(--font-body-md);
    margin-top: 0;

    &:before {
      position: absolute;
      background: url(/cdn/shop/files/CART.png?v=1753167983) no-repeat;
      background-size: cover;
      width: 20px;
      height: 20px;
      content: "";
      left: 0;
      top: 0;
    }
  }

  .product-form__submit-with--price { 
    display: flex;
    align-items: center;

    div[id^="price-template--"].hidden { 
      display: unset !important;
    }
    .price::before { 
      content: ' - ';
      color: #fff !important;
    }
    .price * { 
      color: #fff !important;
      font-size: inherit !important;
      letter-spacing: 1px !important;
    }
    .price__container { 
      margin-bottom: 0;
    }
  }

  .inventory-wrapper {
    color: rgba(17, 17, 17, 1);

    .product__inventory {
      margin: 0 0 1rem 0;
      height: fit-content;
      gap: 1rem;

      .svg-wrapper,
      svg {
        height: 2rem;
        width: 2rem;
      }
    }

    .info-wrapper {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }
  }

  .product__accordion {
    --color-foreground: 17, 17, 17;
    color: rgb(17, 17, 17, 1);

    .accordion__title {
      font-size: var(--font-body-md);
      font-weight: 600;
    }

    .accordion__content {
      padding-left: 0;
      padding-right: 0;
    }

    .icon {
      height: calc(var(--font-heading-scale) * 1.2rem);
      width: calc(var(--font-heading-scale) * 1.2rem);
      position: absolute;
      right: 1.5rem;
      top: calc(50% - 0.6rem);
    }

    .icon-minus,
    details[open] > summary .icon-plus {
      display: none;
    }

    details[open] > summary .icon-minus {
      display: initial;
    }
  }

  .product-features--wrapper {
    display: flex;
    flex-grow: 0;
    max-width: 55%;
    width: calc(55% - var(--grid-desktop-horizontal-spacing) / 2);
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-right: 5rem;

    .product-features--item { 
      padding-left: 1rem;
      padding-right: 1rem;
    }

    img {
      display: block;
      width: 80%;
      height: auto;
      margin-left: auto;
      margin-right: auto;
    }

    .product-features--heading {
      display: block;
      text-align: center;
      line-height: 120%;
      font-weight: 700;
      margin-top: 2rem;
      font-size: 1rem;
      color: rgba(var(--color-foreground), 1);
    }

    @media screen and ( max-width: 749px ) {
      & {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        gap: 1rem;
      }

      .product-features--item { 
        width: calc(100% / 3 - 1rem);
        max-width: calc(100% / 3 - 1rem);
        padding-left: 0;
        padding-right: 0;
      }

      img { 
        width: 60%;
      }

      .product-features--heading { 
        font-size: 1rem;
      }
    }

  }
  
  .buy-buttons--wrapper { 
    .swymcs-wishlist-button {
      border: 1px solid;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  #shopify-block-AUVFGQld0ZGh6SFRzZ__loox_reviews_loox_rating_a3zPgg,
  #shopify-block-AUVFGQld0ZGh6SFRzZ__loox_reviews_loox_rating_a3zPgg
    + .product__text {
    display: inline-block !important;
    margin: 0 !important;
  }

  #shopify-block-AUVFGQld0ZGh6SFRzZ__loox_reviews_loox_rating_a3zPgg
    + .product__text
    p {
    margin: 0 !important;
  }

  #shopify-block-AUVFGQld0ZGh6SFRzZ__loox_reviews_loox_rating_a3zPgg
    + .product__text {
    padding-left: 1.5rem;
    margin-left: 1rem !important;
    border-left: 1px solid;
  }

  .product-popup-modal__button {
    color: #e30138;
  }

  .loox-v2-carousel-app .loox-v2-carousel-container.has-round-arrows { 
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  

  @media screen and (max-width: 749px) {
    media-gallery {
      slider-component {
        padding-left: 1.5rem;
        padding-right: 1.5rem;

        .slider-counter {
          display: none;
        }
      }
    }

    .product__title {
      h1 {
        font-size: var(--font-body-xl);
        font-weight: 700;
      }
    }

    .price {
      .price-item {
        font-size: var(--font-body-xl);
      }

      &.price--on-sale {
        .price__sale {
          s.price-item {
            font-size: var(--font-body-lg);
          }
        }
      }
    }

    variant-selects *,
    .accordion__content *,
    .product__description p {
      font-size: var(--font-body-sm) !important;
    }

    .buy-buttons--wrapper {
      display: grid;
      grid-template-columns: 4fr auto;
      gap: 1rem;
      
      .product-form__quantity { 
        grid-column: span 2;
      }

      .quantity {
        width: 100%;
      }

      .product-form {
        margin-top: 0;
        margin-bottom: 0;
      }

      .swymcs-wishlist-button {
        height: calc(4.5rem + var(--buttons-border-width) * 2) !important;
      }
    }

    .inventory-wrapper {
      flex-direction: column;
      gap: 1rem;

      .info-wrapper {
        margin: 0;
        gap: 0;
      }
    }

    .usp-icons--wrapper {
      width: 100%;
      max-width: 100%;

      .grid {
        max-width: 100%;
      }

      img {
        width: 60%;
      }

      .usp-icon--heading { 
        font-size: var(--font-body-sm);
      }
    }
  }

  @media screen and (min-width: 750px) {
    .product__info-wrapper { 
      background: rgba(248, 248, 248, 1);
      padding: 4rem;
    } 
    
    .product__media-wrapper { 
      padding-right: 5rem;
    }

    .product__title {
      h1 {
        font-weight: 700;
      }
    }

    .buy-buttons--wrapper {
      display: grid;
      grid-template-columns: 9fr 1fr;
      align-items: center;
      gap: 1rem;

      .product-form__input,
      .product-form,
      .product-form__submit {
        margin: 0;
      }
    }

    media-gallery {
      .svg-wrapper {
        height: 4rem;
        width: 4rem;
      }
      .slider-button .icon {
        height: 1.5rem;
        color: #1e1e1e;
      }
      .slider-button:disabled .icon {
        color: rgba(30, 30, 30, 0.25);
      }
    }
  }
}


.facets__form-vertical { 
  --color-foreground: 17, 17, 17;
  border: 1px solid rgb(var(--color-foreground), .1);
  padding: 2rem;
  border-radius: 1.5rem;
  width: 32rem !important;

  .facets__heading, 
  .facets__summary-label,
  .facets__summary span { 
    color: rgba(13, 13, 13, 1);
    font-size: var(--font-body-md);
    font-weight: 600;
  }

  .facets__label {
    & > .facet-checkbox__text,
    & > input[type=checkbox],
    & > .svg-wrapper,
    & > svg { 
      color: rgb(17, 17, 17, 1);
      font-size: var(--font-body-md);
    }
  }

  .facets__summary[aria-label*="Color"] + .facets__display-vertical { 
    
    .facets-wrap-vertical { 
      padding: 0;
    }

    .facets__list--vertical { 
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: .6rem;

      .facets__label  { 
        margin: 0;
        padding: 0;
        
        & > .facet-checkbox__text,
        & > input[type=checkbox],
        & > .svg-wrapper,
        & > svg { 
          display: none;
        }
    
        .variant-filter-swatch {
          display: inline-block !important;
          width: 100%;
          aspect-ratio: 1 / 1;
          background-size: cover;
          border: 1px solid rgba(17, 17, 17, 0.2);
          display: inline-block;
          border-radius: 50%;
        }
  
        input[type=checkbox]:checked ~ .variant-filter-swatch { 
          border: 2px solid rgba(17, 17, 17, 0.2);
  
          .svg-wrapper { 
            visibility: visible;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            width: 1.5rem;
            height: 1.5rem;
          }
        }

      }
    }

    show-more-button { 
      display: none;
    }

  }

  .facets__summary[aria-label*="Size"] + .facets__display-vertical { 

    .facets__list--vertical { 
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;

      .facets__item { 
        width: fit-content;
      }
      
      .facets__label  { 
        margin: 0;
        padding: 0;
        text-transform: uppercase;
        

        .facet-checkbox__text { 
          font-size: var(--font-body-sm);
          color: rgba(var(--color-foreground),1);
          border: 2px solid rgba(17, 17, 17, 0.25);
          padding: .8rem .8rem .5rem .8rem;
          border-radius: .6rem;
        }

        input[type=checkbox]:checked ~ .facet-checkbox__text { 
          border: 2px solid rgba(13, 13, 13, 1);
        }

        & > input[type=checkbox],
        & > .svg-wrapper,
        & > svg { 
          display: none;
        }
      }
    }

    show-more-button { 
      display: none;
    }
  }

}


/* collection page */
/* banner */
@media screen and (max-width: 749px) { 
  .collection-hero__inner { 
    flex-direction: row !important;
    align-items: center !important;
    padding-top: 2rem !important;
    paddding-bottom: 2rem !important;
    gap: 1rem;
  }

  .collection-hero__image-container {  
    width: 45%;
    aspect-ratio: 1 / 1;
    height: auto !important;
  
    img { 
      border-radius: 50%;
    }
  }
}

/* product grid */
.product-grid-container {
  .collection-hero { 
    &.collection-hero--with-image { 
      padding: 2rem 0 !important;
    }
  
    .collection-hero__title { 
      font-size: var(--font-body-xl);
      font-weight: 700;
    }
  
    .collection-hero__text-wrapper { 
      flex-basis: 85% !important;
  
      .collection-hero__description { 
        color: #111111;
      }
    }

  
    .collection-hero__image-container { 
      flex-basis: 15% !important;
      margin-left: 8rem;
      min-height: 5rem;
  
      img { 
        border-radius: 50%;
        height: auto !important;
        width: auto !important;
        top: 50% !important;
        transform: translateY(-50%);
      }
    }
  }  
}
  
/* wishlist plus */
swym-storefront-layout-as-modal .swym-storefront-layout-container { 
  overflow: hidden;
}

swym-storefront-layout-as-modal .swym-storefront-layout-body { 
  overflow-x: hidden;
  overflow-y: auto;
}


/* slideshow */
.slideshow-wrapper { 
  .slideshow__media.banner__media img { 
    display: block;
    width: 100%;
    height: auto;
  }
  .slider.slider--everywhere .slider__slide { 
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .banner:after, 
  .banner__media:after { 
    all: unset !important;
  }
  .grid--4-col-desktop .grid__item {
    width: calc(100% / 4 - 2rem);
    max-width: calc(100% / 4 - 2rem);
  }
  .slideshow__controls  > button { 
    display: none;
  }
} 

