/** Shopify CDN: Minification failed

Line 799:19 Expected ":"

**/
.drawer {
  visibility: hidden;
}

/* ── Inner padding ── */
.drawer__inner {
  padding: 0 16px 24px 16px;
  overflow: hidden;
  box-sizing: border-box;
}
cart-drawer.is-empty cart-collection.cart-collection-section, cart-drawer.is-empty .cart-drawer-trust-icons, cart-drawer.is-empty .cart-drawer-footer {
    display: none;
}
/* ── Header ── */
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(167, 167, 167, 0.30);
}

.drawer__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer__heading {
  color: #121212;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 23.52px;
  letter-spacing: -0.72px;
  margin: 0;
}

.drawer__count {
  color: #777;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height:  13.72px;
  letter-spacing: -0.42px;
}

.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  aspect-ratio: 1 / 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ── Free shipping bar ── */
.cart-free-shipping {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0 0;
}

.cart-free-shipping__message {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-free-shipping__icon {
  width: 16px;
  height: 16px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.cart-free-shipping__text {
  color: #121212;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height:14px;
  font-feature-settings: 'liga' off, 'clig' off;
  margin:0;
}

.cart-free-shipping__text strong {
  color: #0B73CB;
  font-weight: 600;
}

.cart-free-shipping__bar-track {
  width: 100%;
  height: 6px;
  background: rgba(167, 167, 167, 0.30);
  border-radius: 99px;
  overflow: hidden;
}

.cart-free-shipping__bar-fill {
  height: 100%;
  background: #0B73CB;
  border-radius: 99px;
  transition: width 0.3s ease;
}

/* ── Empty cart ── */
.drawer__inner-empty h1,
.drawer__inner-empty h2,
.drawer__inner-empty h3,
.drawer__inner-empty h4,
.drawer__inner-empty h5,
.drawer__inner-empty h6,
.drawer__inner-empty .h1,
.drawer__inner-empty .h2,
.drawer__inner-empty .h3,
.drawer__inner-empty .h4,
.drawer__inner-empty .h5,
.drawer__inner-empty .h6,
.drawer__inner-empty p {
  font-family: Inter, sans-serif;
}

/* ── Cart items scrollable area ── */
#CartDrawer-Form {
  display: block;
}

#CartDrawer-CartItems {
  width: 100%;
}

cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
cart-drawer-items::-webkit-scrollbar{
  display:none;
}
.cart-items-redesign {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

/* ── Cart item card ── */
.cart-item-redesign {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px;
  background: #F5F5F5;
}

.cart-item-redesign__image-link {
  display: block;
  flex-shrink: 0;
}

.cart-item-redesign__image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 21.538px;
  display: block;
}

.cart-item-redesign__right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  gap: 8px;
}

.cart-item-redesign__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.cart-item-redesign__title {
  color: #0A0A0A;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.cart-item-redesign__price {
  color: #121212;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

.cart-item-redesign__variants {
  color: #99A1AF;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
  padding: 4px 0 0;
  margin: 0;
}

/* ── Quantity selector ── */
.cart-item-redesign__qty-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  border-radius: 12px;
  background: #FFF;
  margin-top: 4px;
}

.cart-item-redesign__quantity-input {
  display: contents;
}

.cart-item-redesign__qty-btn,
.cart-item-redesign__remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.cart-item-redesign__qty-btn {
  width: 20px;
  height: 20px;
}

.cart-item-redesign__remove-btn {
  width: 16px;
  height: 16px;
}

.cart-item-redesign__qty-input {
  color: #121212;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  width: 20px;
  border: none;
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
}

.cart-item-redesign__qty-input::-webkit-outer-spin-button,
.cart-item-redesign__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Upsell block ── */
.cart-upsell {
    margin-top: 77px; 
    display: block;
}

.cart-upsell__header {
  display: flex;
  padding-bottom: 16px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  margin-bottom: 12px;
}

.cart-upsell__header-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-upsell__heading {
  color: #121212;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  font-feature-settings: 'liga' off, 'clig' off;
  margin: 0;
}

.cart-upsell__subtext {
  color: #99A1AF;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.cart-upsell__pill {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #000;
  background: #000;
  color: #E2C888;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 13.2px;
  font-feature-settings: 'liga' off, 'clig' off;
  white-space: nowrap;
  flex-shrink: 0;
}

.cart-upsell__product {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #F7F7F7;
  border-radius: 12px;
}

.cart-upsell__product-image {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 16.889px;
  border: 1.407px solid #E5E7EB;
  display: block;
  flex-shrink: 0;
}

.cart-upsell__product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.cart-upsell__product-title {
  color: #0A0A0A;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}

.cart-upsell__product-price {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.cart-upsell__product-sale-price {
  color: #777;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.cart-upsell__product-compare-price {
  color: #777;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-decoration: line-through;
}

.cart-upsell__product-regular-price {
  color: #777;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.cart-upsell__variant-select {
     font-family: Inter, sans-serif;
    font-size: 12px;
    color: #000;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 8px;
    width: 100%;
    cursor: pointer; 
    outline: none !important;
    box-shadow: none !important;
        line-height: normal;
}
select::-ms-expand {
  display: none;
}
div#CartDrawer {
    letter-spacing: 0;
}
.wrapper-variant-upsell-select {
    position: relative;
}
.wrapper-variant-upsell-select .icon-select {
    position: absolute;
    width: 25px;
    height: 20px;
    top: 8px;
    right: 0;
    user-select: none;
    pointer-events: none;
    background: #fff;
}
.cart-upsell__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  margin-left: 12px;
  border: 1px solid #0B73CB;
  background: transparent;
  color: #0B73CB;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.4px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

.cart-upsell__add-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cart-upsell__add-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

/* ── Cart collection carousel ── */
.cart-collection-section {
  display: block;
  padding: 0 0 16px 0; 
  margin-top: 89px;
}

.cart-collection__heading {
  color: #121212;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px;
  margin: 0 0 8px;
}

.cart-collection__swiper {
  overflow: hidden;
}

.cart-collection__card {
  background: #fff; 
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}

.cart-collection__card-image-link {
  display: block;
  flex-shrink: 0;
  margin-bottom:6px;
}

.cart-collection__card-image {
  width: 100%;
  height: 90px;
  object-fit: contain;
  display: block;
}

.cart-collection__card-body {
  padding:8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  box-sizing:border-box;
}

.cart-collection__card-title {
    color: #121212;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 11.902px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-collection__card-price {
    color: #121212;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 14.282px;
    margin: 0;
}

.cart-collection__card-price span{
  color: #777;
  font-weight: 400;
}

.cart-collection__card-btn {
    display: block;
    margin-top: auto;
    background: #0B73CB;
    color: #fff;
    border: none;
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 19.043px;
    cursor: pointer;
    text-align: center;
    padding: 5.951px 15.473px;
    letter-spacing: -0.238px;
    flex-grow: 1;
    width:100%;
}

.cart-collection__card-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.cart-collection__card-btn.is-loading {
  opacity: 0.7;
  cursor: wait;
}
.cart-item__error:has(.cart-item__error-text:empty){
  display:none;
}
.cart-drawer-trust-icons {
    border-radius: 8px;
    border: 1px solid rgba(167, 167, 167, 0.30);
    padding: 8px;
    margin-bottom: 16px;
}

.cart-drawer-trust-blocks {
    display: flex;
    justify-content: space-between;
    letter-spacing: 0;
}

.cart-trust-icon-block {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-trust-icon-block svg {
    width: 14px;
    height: 14px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}

.cart-trust-details {
    color: #272727;
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    text-transform: capitalize;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.cart-trust-details span {
    color: #777;
    font-family: Inter;
    font-size: 6px;
    font-style: normal;
    font-weight: 400;
    line-height: 10px;
    text-transform: capitalize;
}

span.cart--total-text {
    color: #777;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px; /* 20.8px */
}

.cart--total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

span.cart--total-price {
    color: #121212;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 100% */
}

.cart-drawer .cart__checkout-button {
    display: flex;
    height: 42px;
    padding: 10px 26px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    background: #0B73CB;
    width: 100%;
    border-radius: 0;
    margin: 8px 0;
}

.cart-shipping-info {
    color: #777;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.6px; /* 15.6px */
    display: block;
}


.drawer__close svg {
  height: 2.4rem;
  width: 2.4rem;
  color:#121212;
}
/* ── Mobile overrides ── */
@media (max-width: 749px) {
  .drawer__heading {
    font-size: 16px;
    line-height:15.68px;
  }

  .drawer__count {
    font-size: 11px;
    line-height:10.78px;
  }
  .drawer__header{
    padding:8px 0;
  }
  .drawer__close {
      width: 20px;
      height: 20px;
      min-width: 20px;
      min-height: 20px;
      top: 7px;
      right: 0;
  }
  .cart-free-shipping__message{
    gap:4px;
  }
  .cart-free-shipping__text{
    font-size:12px;
    line-height:12px;
  }
   .drawer__close svg {
      width: 12.501px;
      height: 12.501px;
      color:#121212;
    }
    .drawer__inner{
      padding:0 8px 16px;
    }
  .cart-free-shipping {
    padding: 8px 0;
  }
  .cart-shipping-info{
    font-size:12px;
    line-height:13px;
  }
  .cart-items-redesign{
    padding:0;
  }
  .cart-item-redesign__image {
    width: 54px;
    height: 54px;
    border-radius: 12.343px;
}
  .cart-free-shipping__icon {
    width: 12px;
    height: 12px;
  }

  .cart-items-redesign {
    gap: 8px;
  }

  .cart-item-redesign__title {
    font-size: 14px;
    line-height: 14px;
  }

  .cart-item-redesign__price {
    font-size: 12px;
  }

  .cart-item-redesign__variants {
    font-size: 10px;
    line-height: 10px;
  }

.cart-item-redesign__qty-wrapper {
    border-radius: 8.571px;
    padding: 2.857px;
    gap: 7.143px;
}

.cart-item-redesign__qty-input {
    color: #121212;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 11.429px;
    font-style: normal;
    font-weight: 600;
    line-height: 18.571px; /* 162.5% */
}
.cart-item-redesign__qty-btn{
  width: 14.286px;
height: 14.286px;
}
.cart-upsell{
  margin-top:61px;s
}
  .cart-item-redesign__qty-input {
    font-size: 12px;
  }

  .cart-item-redesign__remove-btn svg {
    width: 11.429px;
    height: 11.429px;
  }

  .cart-item-redesign__qty-btn svg {
    width: 14.286px;
    height: 14.286px;
  }

  .cart-upsell__heading {
    font-size: 14px;
    line-height:18.2px;
  }
  .cart-upsell__header-text{
    gap:4px;
  }
  
.cart-upsell__product-image {
    width: 54px;
    border: 1px solid #E5E7EB;
    height: 54px;
}

.cart-upsell__product-title {
    color: #0A0A0A;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 100% */
}

.cart-upsell__variant-select {
    font-size: 10px;
    line-height: 10px;
}

.wrapper-variant-upsell-select .icon-select {
           width: 25px;
        height: 15px;
        top: 6px;
}
  .cart-upsell__subtext {
    font-size: 10px;
    line-height: 10px;
    max-width:calc(100% - 2rem);
  }
  .cart-upsell__header{
    padding-bottom:8px;
    margin-bottom:12px;
  }
  .cart-upsell__pill {
      font-size: 10px;
  line-height: 11px;
  }

  .cart-upsell__product-sale-price,
  .cart-upsell__product-compare-price,
  .cart-upsell__product-regular-price {
    font-size: 10px;
    line-height: 10px;
  }
  .cart-collection-section{
    margin-top:69px;
    padding:0 0 8px 0
  }
  .cart-trust-icon-block {
    flex-direction: column;
    text-align: center;
    width: 70px;
}
.cart-drawer-trust-icons{
  margin-bottom:8px;
}
.cart--total{
  padding-top:8px;
  align-items:center;
}
span.cart--total-text {
    font-size: 14px;
    line-height: 18.2px;
}

span.cart--total-price {
    line-height: 24px;
    font-size: 16px;
}
.cart-drawer .cart__checkout-button {
    padding: 8px 26px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.4px;
    height: unset;
    min-height: unset;
    line-height: 24px;
}
  .cart-upsell__add-btn {
    font-size: 10px;
  }
  .cart-collection__heading {
    color: #121212;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 15.4px;
}
.cart-collection__card-body{
  gap: 7.141px;
  padding: 9.522px;
}

  .cart-upsell__add-btn svg {
    width: 12px;
    height: 12px;
  }
}
