/** Shopify CDN: Minification failed

Line 150:18 Expected identifier but found "{"
Line 150:19 Expected identifier but found "%"
Line 150:48 Unexpected "{"
Line 150:49 Unexpected "{"
Line 150:62 Expected ":"
Line 150:65 Unexpected "{"
Line 150:66 Expected identifier but found "%"
Line 150:77 Unexpected "1000"
Line 150:82 Expected identifier but found "%"
Line 150:92 Expected identifier but found "%"

**/
.drawer {
  position: fixed;
  z-index: 1000;
  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 {
  height: 100%;
  width: 50rem;
  max-width: calc(100vw - 3rem);
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-default) ease;
}

.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  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 .gift-product,cart-drawer.is-empty .drawer__footer{
    padding-inline: 15px;
}
quantity-popover button.quantity__button.disabled {
    display: none;
}
quantity-popover button.quantity__button.disabled + .quantity__input {
    border-inline-start: 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.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  position: relative;
  padding: 1.5rem 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 15px;
  margin-bottom: 13px;
  border-bottom: 1px solid #ddd;
}
.cart-heading-part {
    text-align: center;
    flex: auto;
}
.cart-above-title {
    font-size: 14px;
    font-weight: 400;
}
.cart-heading-part h2.drawer__heading {
    font-size: 18px;
    font-family: var(--font-body-family);
    color: #A48294;
    margin-top: 3px;
}
.drawer__heading {
  margin: 0;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  min-width: 4.4rem;
  min-height: 4.4rem;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  position: absolute;
  top: 10px;
  right: 5px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.ct-shipping-progress-bar {
    border-radius: 5.792px;
    background: #E8E8E8;
    width: 100%;
    height: 2px;
}
.ct-shipping-progress-bar .progress-bar-fill {
    border-radius: 5.792px;
    background: #957C70;
    width: 100%;
    height: 2px;
    animation: progressAnimationStrike 6s;
    position: relative;
    display: block;
}
@keyframes progressAnimationStrike {
     from { width: 0 }
     to   { width:{% if total_cart2 <= 1000 %}  {{ total_cart2 }}{% else %}  1000{% endif %}% }
}
.ct-shipping-progress-bar .progress-bar-fill::after {
    background: #957C70;
    content: "";
    position: absolute;
    height: 11px;
    width: 11px;
    right: -7px;
    left: auto;
    top: -5px;
    background-repeat: no-repeat;
    border-radius: 50%;
}
.ct-cart-drawer-title {
    font-size: 14px;
    text-align: center;
    color: #957C70;
    font-weight: 400;
    margin-bottom: 15px;
}
.cart-drawer__warnings .drawer__close {
  right: 5px;
}

.drawer__close svg {
  height: 2rem;
  width: 2rem;
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.ct_wrap_prod_main {
    display: flex;
    gap: 14px;
}
.ct_wrap_prod_main::-webkit-scrollbar {
   width: 100%;
  height: 3px;
  background: #f1f1f1;
}
.drawer__footer {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.2);
  padding: 1.5rem 1.5rem;
  margin-top: 18px;
}

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;
}
.dt_wrap_price-inner .ct_price.price {
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 2px;
}
.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 2.8rem 1.5rem 0;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-top: 1.5rem;
}
.dt_wrap_price-inner {
    text-align: center;
    padding-inline: 6px;
}
cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gift-product-inner {
    display: flex;
    justify-content: start;
    gap: 10px;
}
.gift-product-inner .gift-item {
    display: flex;
    align-items: start;
    gap: 8px;
}
.gift-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
}
.gift-product span.gift-heading {
    font-weight: 500;
     padding-bottom: 18px;
    display: block;
}
.cart-drawer__overlay:empty {
  display: block;
}
.dt_wrap_price-inner a.card__heading {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    text-decoration: none;
    color: #000;
    display: block;
    text-align: center;
}
.gift-info .btn-add-cart:hover {
    background: #A48294;
    color: #fff;
}
.gift-info a.card__heading {
    font-size: 14px;
    font-weight: 400;
    line-height: 23.31px;
    text-decoration: none;
}
.gift-info .btn-add-cart {
    min-width: auto;
    min-height: auto;
    padding: 4px 17px;
    font-size: 12px;
    line-height: 11.76px;
    color: #A48294;
    background: #fff;
    border: 1px solid #A48294;
    font-weight: bold;
    transition: 0.3s;
}
.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}
.cart-drawer .cart__checkout-button {
  max-width: none;
  background: #fff;
  color: #A48294;
  font-weight: 700;
  text-transform: capitalize;
  border: 1px solid #A48294;
  min-height: 50px;  
  transition: 0.3s;
  gap: 5px;
}
.cart-drawer .cart__checkout-button:hover {
    background: #A48294;
    color: #fff;
}
.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}

.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
}

cart-drawer-items {
 overflow-y: auto;
  flex: 1;
  margin-top: 13px;
  min-height: 215px;
  margin-bottom: 20px;
  overflow-x: hidden;
}
span.cart-row-heading {
    font-size: 18px;
    font-weight: var(--font-heading-weight);
    color: #957C70;
}
.ct_wrap_prod button {
    min-width: auto;
    min-height: auto;
    background: #fff;
    color: #A58296;
    border: 1px solid #A58296;
    font-size: 14px;
    line-height: 18px;
    padding: 5px 10px;
    font-weight: 400;
    transition: 0.3s;
}
.ct_wrap_prod img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}
.ct_cart_drawer_main.ct_cart_also.cart-pair {
    overflow: auto;
    margin-inline-end: -15px;
    margin-top: 20px;
}
.ct_wrap_prod {
    width: 30%;
    min-width: 30%;
}
.mm-ajaxcart-bottom-head {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 9px;
}
.gift-product {
    margin-bottom: 24px;
    margin-top: 15px;
}
.ct-prograss-bar-main {
    margin-bottom: 10px;
}
@media screen and (max-height: 650px) {
  .drawer__inner {
    overflow: scroll;
  }
.ct_wrap_prod button {
    padding: 5px 6px;
}  
}

.cart-drawer .cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 12px;
}
.cart-drawer .cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 12px;
}
.cart-drawer .cart-item:last-child {
     margin-bottom: 0;
    padding-bottom: 0;
}

.cart-drawer .cart-item__media {
   display: flex;
  flex-shrink: 0;
  gap: 15px;
  width: 10.8rem;
}

.cart-drawer .cart-item__image {
  max-width: 100%;
  height: 100px;
  object-fit: cover;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.7rem;
  padding-inline-start: 28px;
}

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

.cart-drawer .cart-items th {
  border-bottom: 0;
  padding: 0;
}

.cart-drawer .cart-item .loading__spinner {
  padding-top: 0;
}

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

.cart-drawer .cart-item > td + td {
  padding-left: 0;
}

.cart-drawer .cart-item__details {
  width: auto;
}
.cart-drawer .cart-item__media cart-remove-button {
    margin: 0;
}
.cart-drawer .cart-item__totals {
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  text-align: center;
  padding-left: 6rem;
}
.cart-drawer .quantity-popover-container .cart-quantity {
    width: calc(5.5em / var(--font-body-scale) + var(--inputs-border-width) * 2);
    min-height: calc((var(--inputs-border-width)* 2) + 2.8rem);
}
.cart-drawer .quantity-popover-container .quantity__button {
    width: calc(2.4rem / var(--font-body-scale));
}
.cart-drawer .quantity__button svg {
    width: 0.8rem;
 }
.cart-drawer .quantity__input{
    font-size: 1.6rem;
  font-weight: 400;
}
.cart-drawer .cart-item__price-wrapper {
    position: relative;
    margin-bottom: 3px;
}
@media screen and (max-width: 749px) {
.ct_wrap_prod button {
    padding: 5px 3px;
}  
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 4px;
    z-index: 100000000;
    width: 26px;
    margin-top: 2px;
  }
  .cart-heading-part h2.drawer__heading{
    font-size: 16px;
  }
  .ct-cart-drawer-title{
    font-size: 12px;
  }
  cart-drawer-items{
    margin-top: 5px;
    margin-bottom: 12px;
  }
  .gift-product span.gift-heading {
    font-size: 14px;
    padding-bottom: 8px;
  }
  .gift-product {
    margin-bottom: 11px;
  }
  .ct_wrap_prod {
    width: 30%;
    min-width: 30%;
  }
  .dt_wrap_price-inner a.card__heading{
    min-height: 35px;
  }
  .drawer__inner{
    width: 44rem;
    max-width: calc(100vw - 0rem);
  }
  .totals>h2{
    font-size: calc(var(--font-heading-scale)* 1.8rem);
  }
  .cart-drawer .tax-note{
    font-size: 1.4rem;
    margin: 0.3rem 0 1.1rem auto;
  }
  .cart-drawer__footer > * + *{
    margin-top: 0;
  }
  .drawer__footer{
    padding: 1rem 1.5rem;
  }
  .cart-drawer .cart__checkout-button{
    background: #A48294;
    color: #fff;
  }
  .cart-drawer .cart-items .cart-item__quantity {
    padding-left: 0rem;
  }
}

.cart-drawer__footer > * + * {
  margin-top: 1rem;
}

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

.cart-drawer .price {
  line-height: 1;
  font-size: 12px;
  font-weight: 400;
}

.cart-drawer .tax-note {
  margin: 0.6rem 0 2rem auto;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
}

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

.cart-drawer details[open] > summary .icon-caret {
  transform: rotate(180deg);
}
.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;
}

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;
}

.cart-drawer .quantity-popover-container {
  padding: 0;
}

.cart-drawer .quantity-popover__info.global-settings-popup {
  transform: translateY(0);
  top: 100%;
}

.cart-drawer .cart-item__error {
  margin-top: 0.8rem;
}

.cart-drawer .quantity-popover__info + .cart-item__error {
  margin-top: 0.2rem;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

  .cart-drawer .cart-item__error {
    margin-left: 0;
  }
}

@media screen and (max-width: 370px) {
.cart-original-total-price {
    font-size: 14px;
}
.cart-total-price-main {
    column-gap: 5px;
    margin-left: 5px;
}
.cart-total-price-main .totals__total-value {
    font-size: 1.6rem;
}  
.totals>h2 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
}
.custom-offer-information-box {
    max-width: calc(33% - 0px);
    font-size: 12px;
    padding: 5px;
}  
.ct_wrap_prod button {
    font-size: 12px;
}  
}