/** Shopify CDN: Minification failed

Line 92:49 Unexpected "\".drawer__inner\""
Line 1538:99 Unexpected "last"

**/
.overflow-hidden {
  overflow: hidden !important;
}

.drawer {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(var(--color-foreground), 0.5);
  transition: visibility var(--duration-default) ease;
}

.drawer.active {
  visibility: visible;
}

.drawer__inner .drawer__contents .cart-item__quantity .original-price {
  font-weight: 400;
}

.drawer__inner {
  height: 100%;
  width: 500px;
  max-width: calc(100vw - 3rem);
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-default) ease;
  background-color: #F2F2F2 !important;
  border-radius: 15px 0 0 15px;
}

.drawer.active .drawer__inner {
  margin-left: auto;
  position: relative;
  z-index: 999999;
  transform: translate(0);
}

.drawer__inner-empty {
  flex-grow: 1;
  padding: 0 1.5rem;
  background-color: rgb(var(--color-background));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

/* cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
} */

/* cart-drawer.is-empty .drawer__header {
  display: none;
} */

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}



.drawer.animate.active .cart-drawer__overlay:not(".drawer__inner") {
  display: block !important;
  background: #00000080 !important;
}

.drawer__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(26, 26, 26, 0.10);
  background-color: #f2f2f2;
  padding: 10px 10px 10px 20px;
  height: max-content;
}

.drawer__close {
  height: auto;
  width: auto;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 0;

}
.cart-drawer__empty-content {
  .button {
      background: #913AA7;

      &:hover {
        background: #682878;
      }
  }
}

.drawer__close svg {
  height: 30px;
  width: 30px;
  padding: 10px;
}

.drawer__close svg path {
  fill: #1A1A1A;
}

.drawer__heading {
  margin: 0;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 1;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  color: #1A1A1A;
}

.drawer__heading span {
  opacity: 0.75;
  padding-left: 6px;
  font-weight: 400;
}


.cart-drawer__warnings .drawer__close {
  margin-right: 5px;
}


.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drawer__footer {
  background-color: #FFF;
  box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.06);
  /* border-top: 0.1rem solid rgba(var(--color-foreground), 0.2); */
  padding: 20px;
}

cart-drawer-items.is-empty+.drawer__footer {
  display: none;
}

.drawer__footer>details {
  margin-top: -1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer>details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 0;
}

.drawer__footer>details+.cart-drawer__footer {
  padding-top: 1.5rem;
}

.cart-drawer__footer {
  padding-bottom: 10px;
}

cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  /* width: 100vw; */
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
  /* z-index: 1; */
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}
.cart-drawer .drawer__cart-items-wrapper  {
  .product-item {
    .product-item-price-compare {
      color: #913AA7 ;
    }
    button {
      box-shadow: none;
      outline: none;
      border: none;
      background:transparent ;
    }
    .bundle-wrapper-item {
      .row:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.10);
      } 
      .col-left {
        img {
          max-height: 60px;
        }
      }
      
    }
  }
}
.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: rgb(var(--color-base-background-1));
}

cart-drawer-items {
  padding: 10px;
  overflow: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.is-empty .cart-drawer__form {
  display: none;
}

.is-empty cart-drawer-items {
  flex: unset;
  display: none;
}

.cart-item__totals .cart-item__price-wrapper .price {
  color: #1A1A1A !important;
  font-size: 16px;
  font-weight: 600;
}
.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices .discount-price {
  color: #913AA7 !important;
}
.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices:has(.visually-hidden) .price {
  color: #1A1A1A !important;
}
.cart-drawer .cart-item__price-wrapper:has(:not(.discount-price)){
    color: #1A1A1A !important;
}

.cart-items .quantity__input {
  font-size: 12px;
  font-weight: bold;
}

.setup_qunatity .quantity__input {
  width: 100%;
  max-width: 44px;
}

.qun_reg_price {
  color: #1A1A1A;
  opacity: var(--o-opactiy-75);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .drawer__inner {
    overflow: scroll;
  }
}

.cart-drawer .cart-item {
  display: grid;
  grid-template: repeat(2, auto) / repeat(4, 1fr);
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 20px;
  background-color: #fff;
}

.cart-drawer .cart-item.redeem-product-item .cart-item__price-wrapper {
  display: none;
}

.cart-drawer .cart-item__media {
  grid-row: 1 / 3;
  margin-right: 15px;
  width: 100%;
}

.cart-drawer .cart-item__image {
  max-width: 100%;
  min-width: auto;
  width: 90px;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}


.cart-drawer .cart-item .loading-overlay {
  right: 5px;
  padding-top: 2.5rem;
}

.cart-drawer .cart-items td {
  padding: 0;
}

/* .cart-drawer .cart-item > td + td {
  padding-left: 1rem;
} */

.cart-drawer .cart-item__details {
  width: auto;
  grid-column: 2 / 4;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  margin: 5px 0 10px;
  max-width: fit-content;
}

.cart-drawer .item_propertise {
  margin: 10px 0;
}
.cart-drawer .item_propertise .property-row {
  display: flex;
}
.cart-drawer .item_propertise .property-row dd {
  margin: 0 0 0 5px;
  font-size: 12px;
}
.cart-drawer .item_propertise .property-row dt {
  font-weight: 600;
  font-size: 12px;
}

.cart__contents .cart-items .cart-item__free {
  display: block;
  margin: 0;
  font-size: 13px;
  color: #913AA7;
}

.cart-drawer .cart-item__totals:has(.cart-item__free) * {
  margin: 0 !important;
}

.cart-drawer .cart-item__totals:has(.cart-item__free) {
  margin: 5px 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: row-reverse;
}

/* .cart-drawer .cart-item__totals:has(.qun_reg_price) .discount-price {
  color: #913AA7 !important;
} */

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-direction: row-reverse;
  align-items: center;
  min-width: 110px;
  width: 100%;
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  margin-top: 0;
  padding-top: 0;
  grid-column: 2 / 12;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 10px;
}

.cart-drawer .cart-items .cart-item__quantity dl {
  margin: 0;
  width: calc(50% - 5px);
}

.cart-drawer .cart-items .cart-item__quantity dl select {
  border: none;
  outline: none;
  color: #1A1A1A;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  cursor: pointer;
  background-image: none;
  background-color: transparent;
  padding: 0 10px;
  min-height: 32px;
  height: auto;
}

.cart-drawer .cart-items .product-option-label {
  font-size: 11px;
  line-height: normal;
  display: flex;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.cart-drawer .cart-items cart-remove-button {
  justify-content: flex-end;
  margin: -9px -10px 0 0;
}

.cart-drawer .cart-items cart-remove-button button {
  min-width: 3.5rem;
  min-height: 3.5rem;
  background: transparent;
}

.cart-drawer .cart-items .cart-item__quantity dl .product-option {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  padding: 0 10px;
  min-height: 32px;
  background-position: calc(100% - 13px) 12px;
  background-size: 9px;
  background-repeat: no-repeat;
  cursor: pointer;
    color: #1A1A1A;
}

.cart-drawer .cart-items .cart-item__quantity dl .product-option:has(select) {
  background-image: url("/cdn/shop/files/cart_chevron_down_arrow.png?v=1732221479");
  padding: 0;
}
.cart-drawer .cart-items .cart-item__quantity dl .product-option select {
  background: none; 
}
.cart-drawer__footer>*+* {
  margin-top: 1rem;
}

.cart-drawer .totals {
  justify-content: space-between;
}

.cart-drawer .price {
  line-height: 1;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 1rem auto;
  text-align: left;
}

.cart-drawer .product-option dd {
  word-break: break-word;
}


.product-option:not(.cart_bundle_items .product-option) {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.cart-drawer details[open]>summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  max-width: none;
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul>li {
  flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul>li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul>li {
    flex-basis: calc(100% / 3 - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul>li:first-child:nth-last-child(2),
  .drawer__footer #dynamic-checkout-cart ul>li:first-child:nth-last-child(2)~li,
  .drawer__footer #dynamic-checkout-cart ul>li:first-child:nth-last-child(4),
  .drawer__footer #dynamic-checkout-cart ul>li:first-child:nth-last-child(4)~li {
    flex-basis: calc(50% - 0.5rem) !important;
  }
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
  height: 4px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

/* New Css */


.cart-product-head {
  padding: 30px 0 30px;
}

.is-empty .cart-product-head {
  padding: 0;
}

.cart-product-head .you-may-title {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.cart__ctas {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
}

.cart-drawer .cart__checkout-button,
.continue_shopping_button {
  min-height: 45px;
  padding: 5px 15px;
  width: 100%;
  color: #913AA7;
  border-radius: 100px;
  border: 1px solid rgba(145, 58, 167, 0.25);
  background: rgba(145, 58, 167, 0.15);
  font-size: 13px;
  letter-spacing: 1px;
}

.cart-drawer .cart__checkout-button {
  background: #913AA7;
  color: #fff;

  &:hover {
    background: #682878;
  }
}

body.gradient.home.index.azoproducts-gdpr.acsb-keynav.overflow-hidden.carDrawer-active {
  overflow-y: hidden !important;
}

.drawer.animate.active.is-empty .cart-drawer__collection {
  display: none !important;
}

/* #CartDrawer {
  width: 100%;
} */
.cartDrawer_Remove {
  background: transparent;
  color: #000;
}

.cartDrawer_Remove:hover {
  background: transparent;
}
.cartRecomendationProduct h5 {
  color: #1A1A1A;
  font-size: 14px;
  line-height: 120%;
  margin-bottom: 10px;
}
.cartRecomendationProduct .product-meta-column .price span {
  font-weight: 500 !important;
}

@media (max-width: 767px) {

  .cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card h4 {
    min-height: auto !important;
  }


  .cart-item__quantity-wrapper .quantity {
    max-width: 90px;
  }

  .cart-item__quantity-wrapper .quantity__button {
    border: none !important;
    width: 22px;
    padding: 2px 0px !important;
  }

  .cart-product-head .product-card-wrapper .quick-add form button {
    padding: 0 2rem 0 !important;
  }



  .overflow-hidden .fixed-sticky-cart {
    z-index: 99;
  }
}

@media (max-width: 425px) {


  .discount-message {
    padding: 10px 10px !important;
  }
}

.cart-item {
  padding: 0 1.5rem;
}

.overflow-hidden ::part(acsb-trigger) {
  z-index: 99 !important;
}

.overflow-hidden .needsclick {
  z-index: 111 !important;
}

/* Bundle product add to cart */

.cart-drawer .bundle-product .cart-item__quantity {
  margin-top: -39px;
}

.bundle-product .subscription-product {
  display: none;
}

.bundle-product {
  padding: 0 1.5rem;
  background: #faf3fa !important;
}

.discount-message {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  background: #f1ddf0;
  margin-top: 10px;
  font-weight: 400;
  color: #913AA7;
  font-size: 14px;
  text-align: center;
}

.cart-drawer .product-subscription-section {
  width: 100%;
  max-width: 331px;
  margin-left: auto;
  margin-bottom: 0;
}

.cart-drawer .product-subscription-section.quantity_max .quantity_max_text {
  gap: 4px;
  margin: 10px 0 0;
  display: flex;
  align-items: flex-start;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
    color: #1A1A1A;
}

.cart-drawer .product-subscription-section.quantity_max .quantity_max_text svg {
  margin: -.5px 0 0 0;
}

@media (max-width: 575px) {
  .discount-message {
    width: 75%;
  }
}

@media (max-width: 425px) {
  .cart-item__quantity-wrapper {
    gap: 30px;
  }
}




/* CART DRAWER START */


/* Drawer */

.cart-item__quantity-wrapper .quantity {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  max-width: 100%;
  height: 32px;
  align-items: center;
  overflow: hidden;
}

.cart-item__quantity-wrapper .quantity__input {
  height: auto;
  border: none;
}

.cart-item__quantity-wrapper .quantity__button {
  background-color: transparent !important;
  border-radius: 0;
  height: inherit;
  outline: none !important;
  color: #121212 !important;
}

.cart-item__quantity-wrapper .quantity__button svg {
  width: 9px;
}

.cart-item__quantity-wrapper .quantity__button:hover,
.cart-item__quantity-wrapper .quantity__button:focus,
.cart-item__quantity-wrapper .quantity__button:focus-visible {
  color: #121212 !important;
  background-color: transparent !important;
  outline: none !important;
}

.cart-item__quantity cart-remove-button .button {
  min-width: 0px;
  min-height: 0px;
  background-color: transparent;
  color: #121212;
}

.cart-item__quantity-wrapper .quantity__button[name='plus'] {
  border: 0;
}

.cart-item__quantity-wrapper .quantity__button:hover {
  background-color: #f2f2f2 !important;
  border: 0 !important;
}

.cart__contents cart-remove-button .button:not([disabled]):hover {
  color: #121212 !important;
}

.cart__contents .cart-items .cart-item__name {
  max-width: 100%;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}


.cart-drawer__footer h2 {
  font-size: 24px !important;
}

.cart-drawer__footer .totals {
  display: flex;
}
.cart-drawer .cart-drawer__empty-content {
  color: #1A1A1A;
}



.cart-drawer__footer .totals__subtotal {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #1A1A1A;
}

.cart-drawer__footer .totals__subtotal span {
  padding-left: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  opacity: 0.75;
  text-transform: uppercase;
}

.cart-drawer__footer .totals__subtotal-value {
  margin-bottom: 0px;
  color: #913AA7;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.cart-drawer .cart__checkout-button {
  width: 100%;
}

@media (max-width: 749px) {
  .cart-item__quantity cart-remove-button .button {
    min-width: 3.5rem;
  }
}

/* Cart page */
.cart__contents .cart-item__quantity-wrapper cart-remove-button:after {
  display: none;
}

.cart__contents .cart-items td {
  border: none;
}

.cart__contents .cart-item__quantity-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: calc(50% - 5px);
}

.cart__contents .cart-item__quantity-wrapper.reddem-free-gift-wrapper .quantity__input {
  pointer-events: none;
}


cart-items .title-wrapper-with-link {
  margin-bottom: 45px;
}

cart-items .title-wrapper-with-link .title {
  font-size: calc(20px + 26 * (100vw - 320px) / 1120);
}

@media (max-width: 991px) {
  .cart__contents {
    margin-right: 0rem !important;
  }
}

@media (max-width: 767px) {
  .cart__footer-wrapper .cart__footer {
    padding: 1rem 0 1rem;
  }

  cart-items .title-wrapper-with-link {
    margin-bottom: 30px;
  }
}



@media (max-width: 575px) {
  .cart-drawer .drawer__inner {
    max-width: calc(100vw);
    height: calc(100% - 40px);
    border-radius: 15px 15px 0 0;
    margin-top: 40px;
  }

  .cart-product-head .cartRecomendationProduct .product-card-wrapper {
    max-width: 100%;
  }

  /* .cart-product-head .product-card-wrapper .quick-add {
    padding: 0px 10px 12px 10px;
  } */

  .cart-product-head .product-card-wrapper .quick-add form button {
    min-width: 120px;
  }

  .cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card h4 {
    min-height: 110px;
  }

  .cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card h4 {
    font-size: 14px;
  }

  .cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card {
    padding: 1rem 10px;
  }
}

@media (max-width: 470px) {
  .cart-item__quantity-wrapper {
    flex-wrap: unset !important;
  }
}

/* ----------------------- cart-drawer subscribe css 25-04-2023 ----------------------- */

.cart-subscibe.subscription-product a.subscription-one-time-only {
  display: inline-flex;
  color: #913AA7;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  background: transparent;
  font-family: "canada-type-gibson", "Montserrat", sans-serif;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  height: 40px;
  margin: 0;
  padding: 8px 16px;
  box-shadow: none;
  transition: all .3s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: 0.1rem solid transparent;
  width: 100%;
  border-radius: 100px;
 border: 1px solid rgba(145, 58, 167, 0.25);
  letter-spacing: 1px;
  background: rgba(145, 58, 167, 0.15);
}

.cart-subscibe.subscription-product a.subscription-one-time-only:hover {
  background: #682878;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
}


.product-subscription-section .cart-subscibe.subscription-product select {
  font-size: 13px;
  font-weight: 600;
  padding: 0 32px 0 10px;
  line-height: 1;
  width: 100%;
  color: #1A1A1A;
  background-color: transparent;
  appearance: none;
  background-position: calc(100% - 13px) 17px;
  background-size: 9px;
  background-repeat: no-repeat;
  background-image: url("/cdn/shop/files/cart_chevron_down_arrow.png?v=1732221479");
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  height: 40px;
  box-shadow: none;
}

/* 
.product-subscription-section .cart-subscibe.subscription-product select:hover,
.product-subscription-section .cart-subscibe.subscription-product select:focus {
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  background-image: linear-gradient(45deg, transparent 50%, #919191 50%), linear-gradient(135deg, #919191 50%, transparent 50%), linear-gradient(to right, #919191, #919191);
  box-shadow: none;
} */


/* free shipping on cart drawer */
.free-shiping-msg p {
  margin-bottom: 0;
}

.free-shiping-msg {
  background: #F3F3F3;
  color: #455051;
  padding: 1rem 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
}


/* STYLE.CSS END */



.drawer {
  visibility: hidden;
}

cart-drawer.is-empty .free-shiping-msg {
  display: block;
}

.cart-item__error {
  display: block;
}

.cart-items {
  margin-bottom: 0;
}


.bundle_wrapper .bundle-product-qty {
  display: none;
}

.remove_bundle_items,
.remove_bundle_items:hover,
.remove_bundle_items:focus {
  background: none;
  border: none;
  padding: 0;
}

/* CART  */
tbody:empty {
  display: none !important;
}

.cart_bundle_items {
  background: #fff;
  padding: 20px 20px 0;
  margin: 10px 0;
  border-radius: 5px;
}

.cart_bundle_items .bundle_row {
  display: flex;
  justify-content: space-between;
  max-width: 330px;
  margin-left: auto;
}

.cart_bundle_items .bundle-text {
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
}

.cart_bundle_items button.bundle-remove {
  background: transparent;
  padding: 0 10px;
}

.cart_bundle_items .bundle_price {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.cart_bundle_items .price {
  color: #913AA7 !important;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.cart_bundle_items .left_text h5,
.cart_bundle_items .left_text .price {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-decoration: line-through;
  opacity: 0.75;
}
.cart_bundle_items .left_text .old  {
  line-height: 1;
}
.cart_bundle_items .left_text h5 {
  text-transform: uppercase;
  text-decoration: none;
  margin: 0 0 4px;
  opacity: 1;
}

.cart_bundle_items .bundle-product {
  border: none !important;
}

.cart_bundle_items .cart-item {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
}

.cart_bundle_items .item_has_bundle_discount {
  padding: 10px 0;
  gap: 15px;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  margin: 0;
}

.cart_bundle_items .item_has_bundle_discount:last-child {
  border: none;
}

.cart_bundle_items .product-option {
  font-size: 13px;
}

#CartDrawer-Item-btn-wrapper td {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  padding: 0;
}

#CartDrawer-Item-btn-wrapper .left_text {
  margin-left: 105px;
}

#CartDrawer-Item-btn-wrapper button.remove_bundle_items {
  color: #1A1A1A !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 100%;
  text-transform: unset;
  height: auto;
  outline: none !important;
  box-shadow: none !important;
}



#CartDrawer-Item-btn-wrapper p {
  margin: 0;
  display: flex;
  gap: 5px;
  align-items: end;
}

.cart_bundle_items .cartDrawer_remove,
.cart_bundle_items .cart-item__quantity,
.cart_bundle_items .discount-message,
.cart_bundle_items .product-subscription-section {
  display: none;
}

.cart_bundle_items .cart-item__details {
  padding: 0 !important;
}

.cart_bundle_items .cart-item__media {
  padding: 0 !important;
  justify-content: center;
  display: flex;
  min-width: 90px;
  width: 90px;
  margin: 0;
  height: 60px;
}

.cart_bundle_items .cart-item__image {
  min-width: auto !important;
  max-width: 100% !important;
  object-fit: contain;
  object-position: center;
  width: 100%;
}


.cart_bundle_items:empty {
  display: none !important;
}

.progress_bar_wrapper {
  width: 100%;
  padding: 20px;
  background: rgba(145, 58, 167, 0.10);
}

.progress_bar_wrapper:has(.free-ship-applied) {
  padding: 13px 20px;
}

.progress_bar_wrapper p {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin: 0;

}

.progress_bar_wrapper .free-ship-applied,
.progress_bar_wrapper .free-ship-applied p {
  color: #913AA7;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.progress_bar_wrapper span {
  font-weight: 600;
  color: #913AA7;

}

.progress_bar_wrapper:has(.free-ship-applied) .progress {
  display: none;
}

.progress_bar_wrapper .progress {
  margin-top: 15px;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress_bar_wrapper .progress-bar {
  max-width: calc(100% - 10px);
  height: 100%;
  display: block;
  background: linear-gradient(121deg, #d69ed3 25%, #ad3ea6 0%, #ad3ea6 62%, rgba(214, 158, 211, 1) 50%);
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset;
  background-repeat: repeat-x;
  width: 0;
  transition: width 0.6s ease;
  animation: move-bg 40s linear infinite;
  background-size: 25px 17px;
  filter: drop-shadow(1px 1px 1px #00000024);
}

@keyframes move-bg {
  0% {
    background-position: 0;
  }

  100% {
    background-position: 200%;
  }
}

.progress::after {
  content: " ";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(159, 24, 151, 0.25);
  z-index: -1;
  border-radius: 10px;
}

@media (max-width:576px) {
  .cart_bundle_items .cart-item__image {
    width: 78px;
  }
}




.cart-item__quantity cart-remove-button .button:focus {
  box-shadow: none !important;
}

.cart-product-head h3 {
  font-size: 20px;
  margin-top: 15px;
  text-align: center;
}

.cart-product-head .cartRecomendationProduct {
  display: flex;
  gap: 10px;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper {
  display: none !important;
  padding: 0;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card-inner {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  justify-content: space-between;
}


.cart-product-head .cartRecomendationProduct .product-card__image .product-card-image-inner {
  height: 110px;
}

.cart-product-head .cartRecomendationProduct .product-card__image .product-card-image-inner img {
  height: 100%;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper:nth-child(1),
.cart-product-head .cartRecomendationProduct .product-card-wrapper:nth-child(2) {
  display: flex !important;
  height: auto;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-subtitle,
.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-review-section {
  display: none;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card {
  padding: 0;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card h4 {
  font-size: 14px;
  line-height: 17px;
  margin: 10px 0;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card .product-meta-column {
  display: none;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card-inner .quick-add {
  margin: 0;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card-inner .quick-add__submit {
  border-radius: 100px;
 border: 1px solid rgba(145, 58, 167, 0.25);
  background: rgba(145, 58, 167, 0.15);
  color: #913AA7;
  min-width: 100%;
  padding: 5px;
  min-height: 40px;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card-inner .quick-add__submit:hover {
  background: #682878;
  color: #fff;
  border: 1px solid transparent;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card-inner .quick-add__submit:hover svg .path {
  stroke: #fff;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .quick-add__submit:has(.cart_btn_clicked) {
  background-color: #fff;
  color: #1A1A1A;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .product-card-inner .quick-add__submit:hover .cart_btn svg path {
  fill: #fff;
  transition: .3s all ease;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .quick-add__submit span {
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .quick-add__submit .addcart_btn {
  display: none;
}

.cart-product-head .cartRecomendationProduct .product-card-wrapper .quick-add__submit .cart_btn {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

cart-drawer .quick-add__submit svg .path {
  stroke: #b24aab;
}



.cart-drawer .cart-subscibe.subscription-product .relative button {
  width: 100% !important;
}

.cart-drawer .cart-item__details {
  grid-column: 2 / 11 !important;
}

.product-subscription-section {
  grid-column: 1 / 12;
  padding: 0px !important;
  margin: 10px 0 20px 0;
}



.cart-redeem-free-gift {
  border-radius: 5px;
  background: rgba(145, 58, 167, 0.10);
  margin-bottom: 10px;
}

.cart-redeem-free-gift .reddem-free-gift .gradient {
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}

.cart-redeem-free-gift .reddem-free-gift {
  width: calc(100% - 20px);
  margin: 0 auto 10px;
}

.cart-redeem-free-gift .redeem-free-gift .product-card {
  padding: 0;
}

.cart-redeem-free-gift .reddem-free-gift .product-recommendation .product-card-wrapper {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.cart-redeem-free-gift .reddem-free-gift .product-recommendation .product-card-wrapper:nth-of-type(last) {
  border: none;
}

.cart-redeem-free-gift .redeem-product-item::after {
  height: 20px;
  content: " ";
}

.cart-redeem-free-gift .free-gift-product {
  display: flex;
  align-items: center;
}

.cart-redeem-free-gift .free-image {
  padding-right: 15px;
}

.cart-redeem-free-gift .free-drails {
  width: 100%;
  gap: 20px;
}

.cart-redeem-free-gift .free-drails p {
  flex-grow: 1;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}

.cart-redeem-free-gift .free-drails p span:nth-child(1) {
  display: block;
  font-weight: 500;
  color: inherit;
}

.cart-redeem-free-gift .free-drails p span:nth-child(2) {
  padding-top: 5px;
  font-weight: 600;
  display: inline-block;
  color: inherit;
}

.cart-redeem-free-gift .free-drails p span:nth-child(3) {
  display: inline-block;
  color: #913AA7;
  padding-top: 5px;
  padding-left: 5px;
  font-size: 13px;
  font-weight: 600;
}

.cart-redeem-free-gift .free-gift-desc {
  font-size: 13px;
  margin: 5px 0;
}

.cart-redeem-free-gift .heading_wrapper {
  padding: 21px;
  gap: 10px;
}

.cart-redeem-free-gift .heading_wrapper svg {
  width: 18px;
  height: 18px;
  margin-top: -3px;
}

.cart-redeem-free-gift .free-product-heading {
  margin: 0;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1;
}

.cart-redeem-free-gift .free-gift-desc p {
  margin: 5px 0;
  color: #535353;
}

.cart-redeem-free-gift .free-gift-desc ul {
  margin: 0 10px;
  color: #535353;
}

.cart-redeem-free-gift .reddem-free-gift .product-card-image-inner {
  width: 90px;
  height: 60px;
  margin: 0 auto;
}

.cart-redeem-free-gift .reddem-free-gift .product-card-image-inner img {
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.cart-redeem-free-gift .reddem-free-gift .product-card-wrapper .quick-add form {
  text-align: left;
}

.cart-redeem-free-gift .reddem-free-gift .product-card-wrapper .quick-add form button {
  width: 80px;
  padding: 0 10px !important;
  height: 100%;
  min-height: 40px !important;
  border-radius: 100px;
  border: 1px solid rgba(156, 30, 148, 0.15);
  background: rgba(156, 30, 148, 0.10);
  min-width: auto;
  transition: .3s all ease;
}

.cart-redeem-free-gift .reddem-free-gift .product-card-wrapper .quick-add form button:hover {
  background-color: #682878;
}

.cart-redeem-free-gift .reddem-free-gift .product-card-wrapper .quick-add form button:hover span {
  color: #fff;
}

.cart-redeem-free-gift .reddem-free-gift .product-card-wrapper .quick-add form button span {
  color: #913AA7;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: .3s all ease;
  text-transform: uppercase;
}

.cart-redeem-free-gift .redeem-free-gift .product-card-inner {
  background: transparent;
}

.cart-redeem-free-gift .freegift-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 7px;
}

.cart-redeem-free-gift .free-color {
  color: #6fa84f;
  font-weight: 700;
  font-size: 13px;
}

.cart-redeem-free-gift .cart-item__quantity-wrapper.redeem-free-gift-wrapper {
  align-items: baseline;
}

.cart-redeem-free-gift .cart-item__quantity-wrapper.redeem-free-gift-wrapper p {
  margin-bottom: 0px;
}

.cart-redeem-free-gift .free_learm_more {
  font-size: 14px;
  text-decoration: underline;
}

.cart-redeem-free-gift .link_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-redeem-free-gift .reddem-free-gift .product-card-inner .quick-add {
  margin: 0;
}


@media (max-width:580px) {
  .cart-subscibe.subscription-product a.subscription-one-time-only {
    font-size: 12px;
    letter-spacing: .5px;
  }

  .cart-subscibe.subscription-product a.subscription-one-time-only {
    padding: 8px 5px;
  }

  .drawer__heading {
    font-weight: 500;
  }

  .drawer__footer {
    padding: 10px;
  }

  .cart-drawer .cart__checkout-button,
  .continue_shopping_button {
    padding: 0 10px;
  }

  .cart-redeem-free-gift .reddem-free-gift .product-card-image-inner {
    width: 50px;
    height: 60px;
  }

  .cart-redeem-free-gift .reddem-free-gift {
    width: calc(100% - 10px);
    margin: 0 auto 5px;
  }

  .cart_bundle_items {
    padding: 10px 10px 0;
  }

  .cart_bundle_items .cart-item__media {
    width: 60px;
    min-width: 60px;
  }

  #CartDrawer-Item-btn-wrapper {
    margin: 0;
  }

  #CartDrawer-Item-btn-wrapper .left_text {
    margin-left: 70px;
  }

  .cart-drawer .cart-item {
    padding: 10px;
  }

  .cart_bundle_items .cart-item {
    padding: 10px 0;
    gap: 10px;
  }

  .cart_bundle_items .cart-item:first-child {
    padding-top: 0;
  }

  .cart_bundle_items .cart-item .cart-item__media {
    width: auto;
  }

  .cart-drawer .cart-item__media {
    margin: 0;
  }

  .cart-drawer .cart-item__quantity-wrapper {
    gap: 0;
  }

  .cart-drawer .cart-item__media {
    width: 70px;
  }

  .cart-drawer .product-subscription-section {
    max-width: calc(100% - 70px);
  }

  .cart-drawer .cart-item__image:not(.cart_bundle_items .cart-item__media) {
    min-width: 60px !important;
    width: 60px;
  }

  .cart-drawer .cart-item {
    grid-template: unset;
  }

}



/* CART PAGE */
cart-items .cart__contents .cart-item__quantity-wrapper {
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

cart-items .cart-item cart-remove-button {
  display: flex;
  margin-left: 1rem;
  width: 30px;
  margin-top: 0;
}
cart-items .cart-item__image {
  max-width: calc(7rem / var(--font-body-scale));
}
cart-items .cart__contents .cart-items .cart-item__name {
  max-width:30rem;
}
cart-items  .cart-item__totals .cart-item__price-wrapper .price {
  font-size: 14px;
  font-weight: 400;
}
cart-items .cart-item__quantity-wrapper .quantity {
  max-width: 142px;
}
cart-items .product-option:not(.cart_bundle_items .product-option) {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}
cart-items .product-option:not(.cart_bundle_items .product-option) dt {
  font-weight: 600 !important;
}
@media (max-width:750px){
  cart-items .cart-items thead tr {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
    margin-bottom: 4rem;
  }

  cart-items .cart-item {
    display: grid;
    grid-template: repeat(2, auto) / repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

  cart-items .cart-item:last-child {
    margin-bottom: 0;
  }

  cart-items .cart-item__media {
    grid-row: 1 / 3;
  }

  cart-items .cart-item__details {
    grid-column: 2 / 4;
  }

  cart-items .cart-item__quantity {
    grid-column: 2 / 5;
  }

  cart-items .cart-item__quantity-wrapper {
    flex-wrap: wrap;
  }

  cart-items .cart-item__totals {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
}