: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;
  font-style: normal !important;
}


@font-face {
  font-family: "Cerebri Sans Pro";
  src: url("/cdn/shop/files/gempages_Cerebri_Sans_Pro.ttf?v=1743183822")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kalinda Script";
  src: url("/cdn/shop/files/Kalinda_Script.ttf?v=1745201868")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clevon Demo";
  src: url("/cdn/shop/files/ClevonDemo-Regular.ttf?v=1745202152")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.cerebri-sans-pro {
  font-family: "Cerebri Sans Pro" !important;
}

.kalinda-script {
  font-family: "Kalinda Script" !important;
}

.clevon {
  font-family: "Clevon Demo" !important;
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  --font-heading-family: "Clevon Demo";
}

p,
body,
.rte,
.subtitle,
.text-body,
.link,
.customer a {
  --font-body-family: "Cerebri Sans Pro";
}

p,
body,
.rte {
  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-xl) !important;
  }
  .title-wrapper--no-top-margin em,
  .title em {
    font-style: normal !important;
  }
  .title-wrapper-with-link {
    margin-bottom: 1.5rem !important;
  }
}

/* animations */

/* card , collection & product */
.card__heading {
  --font-heading-family: "Cerebri Sans Pro";
}

/* card product */
.product-card-wrapper {
  .card__heading {
    font-size: var(--font-body-md);
    font-weight: 600;
    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-md) !important;
      font-weight: 600;
    }
    s.price-item {
      font-size: var(--font-body-md) !important;
      color: rgba(17, 17, 17, 0.75);
      font-weight: 400;
    }
  }
  .card__short-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1rem;

    p {
      font-size: var(--font-body-sm);
      margin: 0;
    }
  }
  .badge--best-seller,
  .badge--new {
    height: 4.5rem;
    width: 4.5rem;
    padding: unset;
  }

  .quick-add__submit {
    font-size: 1.8rem;
  }
  
  .swym-wishlist-collections-v2 { 
    position: relative !important;
    z-index: 2;
  }

  .swym-wishlist-collections-v2::after { 
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 120%;
    width: 120%;
    background-color: #fff !important;
    border-radius: 50% !important;
    z-index: -1;
  }

  @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 {
  .slider-buttons {
    .slider-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: 4rem;
      width: 4rem;
      z-index: 2;

      .icon {
        color: rgba(155, 52, 81, 1);
      }

      &::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        width: 100%;
        border-radius: 50%;
        background-color: rgb(255, 255, 255, 1);
        z-index: -1;
      }

      &[disabled]::after {
        background-color: rgb(255, 255, 255, 0.5);
      }

      &[disabled] .icon {
        color: rgba(155, 52, 81, 0.25);
      }
    }

    @media screen and (min-width: 750px) {
      .slider-button--prev {
        left: 6rem;
      }

      .slider-button--next {
        right: 6rem;
      }

      .slider-button .icon {
        height: 1.2rem;
        color: rgba(155, 52, 81, 1);
      }
    }
  }
}

.slider-mobile-gutter {
  @media screen and (max-width: 749px) {
    .slider-buttons {
      .slider-button--prev {
        left: .8rem;
      }

      .slider-button--next {
        right: .8rem;
      }
    }

    .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;

    cart-drawer-items {
      overflow: visible;
    }

    #CartDrawer-CartErrors { 
      color: red;
      text-align: center;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .cart-item .loading__spinner { 
      padding-top: 0 !important;
    }

    .drawer__header,
    .drawer__cart-items-wrapper,
    .drawer__footer {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .drawer__header {
      background-color: #9b3451;
      justify-content: center;

      .drawer__heading,
      .drawer__close {
        color: #fff;
      }
      .drawer__heading {
        font-family: var(--font-body-family);
        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);
            font-family: var(--font-body-family);
          }

          .product-option {
            font-size: var(--font-body-sm);
          }
        }

        .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));
              }
            }
          }
        }

      }
    }

    .drawer__footer {

      margin: 1.5rem;
      border: 1px solid rgb(0, 0, 0, .1);
      border-radius: 2rem;
      
      .cart-drawer__footer * { 
        font-family: var(--font-body-family) !important;
        color: rgba(17, 17, 17, 0.6) !important;
      }
      
      .cart-drawer__footer { 
        border-bottom: 1px solid rgb(0, 0, 0, .1);
        margin-bottom: 2rem;
      }

      .totals__total,
      .totals__total-value { 
        font-size: var(--font-body-lg);
      } 

      .totals__total-value { 
        color: rgba(17, 17, 17, 1) !important;
      }

    }

    .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;
      }
    }

    /* contact us, delivery */ 
    .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;

      * { 
        font-family: var(--font-body-family) !important;
      }

      h3 { 
        margin: 0;
        text-align: center;
        color: rgba(155, 52, 81, 1);
        font-weight: 700;
      }

      ul { 
        display: flex;
        justify-content: space-around;
        gap: .5rem;
        padding: 0;
      }

      ul 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: 14px;
        letter-spacing: 0;
        color: rgb(0, 0, 0, .6);
        line-height: normal;
        padding-left: .5rem;
        gap: .5rem;
      }

      .details-wrapper a { 
        color: inherit;
      }

      @media screen and (max-width: 749px) {
        ul {
          flex-wrap: wrap;
          justify-content: center;
          gap: 1.5rem;
        }
        
        ul li { 
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: .5rem;
        }

        .details-wrapper {
          display: flex;
          flex-direction: column;
        }
      }
    }

    /* product upsell */
    .cart-drawer__recommendations { 
      margin-top: 0;
      margin-bottom: 0;

      * { 
        font-family: var(--font-body-family) !important;
      }

      .product-recommendations  { 
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cart-upsell-item__inner { 
        flex-direction: column;
      }

      .cart-upsell-item__media-wrapper { 
        width: 100%;
      }
    }
  }
}

/* header */
.header {
  .cart-count-bubble { 
    position: absolute;
    background-color: rgb(var(--color-button));
    color: rgb(var(--color-button-text));
    height: 1.7rem !important;
    width: 1.7rem !important;
    border-radius: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: .9rem;
    bottom: 0.3rem;
    left: 2.2rem;
    line-height: normal;
    border: 1px solid rgb(255, 255, 255, .75);
  }

  .swym-header-launcher {
    display: none !important; 
  }

  @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: 2rem;
          width: 2rem;
        }

        &.icon-search {
          height: 2.4rem;
          width: 2.4rem;
        }
      }

      &.header__icon--search,
      .svg-wrapper {
        width: fit-content;
      }
    }
  }

  @media screen and (min-width: 750px) {
    .list-menu__item {
      padding-top: 2rem;
      font-family: "Cerebri Sans Pro" !important;
    }

    .header__icons { 
      align-items: center;
    }

    .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;
      }
    }
  }
}

/* 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("/cdn/shop/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__view-all {
    .link {
      font-style: italic;
      font-size: var(--font-body-md);
    }
    @media screen and (max-width: 749px) {
      .link {
        font-style: normal;
      }
    }
  }
}

/* multicolumn */
.multicolumn {
  .multicolumn-card__info {
    .link {
      text-decoration: underline;
      font-style: italic;
    }
  }
}

/* main product */
product-info > .page-width { 
  padding-left: 0;
  padding-right: 0;
}

.product {
  .price {
    line-height: normal;

    .price-item {
      font-size: calc(var(--font-heading-scale) * 3.2rem);
      font-weight: 600;
    }

    &.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;
        }
      }
    }
  }

  .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: 2px solid rgba(155, 52, 81, 1);
      color: rgb(17, 17, 17, 1);
    }

    .product-form__input--pill
      input[type="radio"]:not(input[type="radio"]:checked)
      + label {
      border: 2px 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;
      gap: 6px;

      .atw-button { 
        border: 1px solid #9B3451 !important;
      }

      .product-form { 
        width: 100%;
      }

      .product-form__submit > span {
        position: relative;
        line-height: normal;
        font-size: 18px;
        letter-spacing: 2px !important;
        padding-left: 3rem;
        margin-top: 4px;

        &:before {
          position: absolute;
          background: url(/cdn/shop/files/cart-icon.png?v=1746410600)
            no-repeat;
          background-size: cover;
          width: 20px;
          height: 20px;
          content: "";
          left: 0;
          top: -3px;
        }
      }

    }

    .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;
      }
    }

    /* swym */
    .swymcs-wishlist-button { 
      border: 1px solid;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

  }

  .inventory-wrapper {
    display: flex;
    color: rgba(17, 17, 17, 1);

    .product__inventory {
      margin: 0;
      height: fit-content;
      gap: 1rem;

      .svg-wrapper,
      svg {
        height: 2rem;
        width: 2rem;
      }
    }

    .info-wrapper {
      display: flex;
      flex-direction: column;
      margin-left: 5rem;
      gap: 1rem;
    }
  }

  .product__accordion {
    --color-foreground: 17, 17, 17;
    color: rgb(17, 17, 17, 1);

    .accordion__title {
      font-family: var(--font-body-family);
      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;
    width: 45%;
    max-width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-right: auto;
    padding-left: 4rem;
    padding-right: 4rem;

    .product-features--item { 
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .product-features--image { 
      background-color: #9B3451;
      padding: 1rem;
      width: 40%;
      margin-left: auto;
      margin-right: auto;
      border-radius: 50%;

      img {
        display: block;
        height: auto;
        width: 100%;
      }
    }

    .product-features--heading {
      display: block;
      text-align: center;
      line-height: 120%;
      font-weight: 600;
      margin-top: 2rem;
      font-size: 1.4rem;
    }
  }

  @media screen and (max-width: 749px) {
    media-gallery {
      slider-component {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-left: 0 !important;
        margin-right: 0 !important;

        .slider-counter {
          display: none;
        }

        .product-media-container .media { 
          padding-top: calc(1 / 1.0002222222222221 * 100%) !important
        }
      }
    }

    .product__info-wrapper  { 
      padding-left: 1.5rem ;
      padding-right: 1.5rem;
    }

    .product__title {
      h1 {
        font-size: var(--font-body-lg);
      }
    }

    div[id^="price-template"] {
      margin-bottom: 0;

      .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 p,
    .product__description p {
      font-size: var(--font-body-sm) !important;
    }

    .product__info-container .product__description { 
      margin-top: 1rem;
    }

    .buy-buttons--wrapper {
      display: grid;
      grid-template-columns: 4fr auto;

      .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;
      }
    }

    .product-features--wrapper {
      display: flex;
      flex-grow: 0;
      width: 100%;
      max-width: 100%;
      margin-top: 2rem;
      margin-bottom: 1rem;
      padding-left: 1rem;
      padding-right: 1rem;

      .product-features--item { 
        padding-left: .5rem;
        padding-right: .5rem;
      }

      .product-features--image { 
        background-color: #9B3451;
        padding: 1rem;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 50%;

        img {
          display: block;
          height: auto;
          width: 100%;
        }
      }

      .product-features--heading {
        margin-top: 1rem;
        font-size: 1.2rem;
      }
    }
  }

  @media screen and (min-width: 750px) {
    .product__title {
      h1 {
        font-size: calc(var(--font-heading-scale) * 3.2rem);
        font-style: italic;
      }
    }

    .buy-buttons--wrapper {
      display: grid;
      grid-template-columns: auto 8fr auto;
      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);
      }
    }
  }
}

/* quick add modal */
.quick-add-modal { 

  .product__info-wrapper { 
    margin-top: 0;
  }

  .usp-icons--wrapper,
  .inventory-wrapper { 
    display: none;
  }

  .product__title h2 { 
    font-size: var(--font-body-xl);
    font-weight: 700;
    font-family: var(--font-body-family);
  }

  .product__view-details { 
    font-size: var(--font-body-md);
  }

}


.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 { 
    color: #9B3451;
    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*="Shades"] + .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 #9b3451;
        }

        & > input[type=checkbox],
        & > .svg-wrapper,
        & > svg { 
          display: none;
        }
      }
    }

    show-more-button { 
      display: none;
    }
  }

}


/* collection page */
.collection-hero { 
  .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%;
    }
  }
}

/* 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;
  }
} 


/* shade */
.shade-wrapper { 
  .title { 
    margin-top: 0;
  }

  .shade-media img { 
    display: block;
    width: 100%;
    height: auto;
  }

  .splide:not(.is-overflow) {
    .splide__track { 
      padding: 0 !important;
    }

    .splide__list { 
      justify-content: center;
    }
  }

  .splide__pagination { 
    bottom: -4.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    background: #efefef;
    border-radius: 2rem;
    padding: .5rem 1rem;
  }

  .splide__pagination__page { 
    background-color: rgba(155, 52, 81, .25);
    height: .8rem;
    width: .8rem;
  }

  .splide__pagination__page.is-active { 
    background-color: rgba(155, 52, 81, 1);
  }
}



/* password page*/
.email-signup-banner .email-signup-banner__heading { 
  font-size: 42px;
  text-transform: capitalize;
}

.email-signup-banner .newsletter__subheading > p, 
.email-signup-banner .field__label { 
  font-size: 18px;
  line-height: normal;
}

@media screen and (max-width: 749px) { 
  .email-signup-banner .banner__box { 
    padding-left: 2rem;
    padding-right: 2rem;
  }
}