/** Shopify CDN: Minification failed

Line 1349:0 Unexpected "}"

**/
.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: 40rem;
  max-width: calc(100vw - 3rem);
  padding: 0 1.5rem;
  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;
}

.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 .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;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__heading {
  margin: 0 0 1rem;
}

.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: -10px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}

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

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

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

.drawer__footer {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.2);
  padding: 1.5rem 0;
}

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 2.8rem 1.5rem 0;
}

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

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

.cart-drawer__overlay:empty {
  display: block;
}

.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 .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

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

cart-drawer-items {
  overflow: auto;
  flex: 1;
}

@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);
  gap: 1rem;
  margin-bottom: 0;
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1rem;
}

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

.cart-drawer .cart-item__image {
  max-width: 100%;
}

.cart-drawer .cart-item__nested-line .cart-item__image {
  max-width: 60%;
  float: right;
}

.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:last-child {
  margin-bottom: 1.5rem;
}

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

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

.cart-drawer .cart-items .cart-item__nested-line td:not(.cart-item__quantity) {
  padding-top: 1rem;
}

.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;
  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;
  grid-column: 2 / 5;
}

@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }
}

.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 2rem auto;
  text-align: left;
}

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

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

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

/* Customization Drawer newer look*/

.drawer {
  background-color: rgba(0, 0, 0, 0.42);
}

.drawer__inner {
  width: 430px;
  max-width: 100vw;
  padding: 0 24px;
  border: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer__header {
  min-height: 76px;
  padding: 0;
  border-bottom: 1px solid #e8e8e8;
}

.drawer__heading {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #111;
}

.drawer__close {
  top: 16px;
  right: -6px;
  min-width: 32px;
  min-height: 32px;
  transform: none;
}

.drawer__close .svg-wrapper {
  width: 16px;
  height: 16px;
}

cart-drawer-items {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

cart-drawer-items::-webkit-scrollbar {
  display: none;
}

.cart-drawer .drawer__cart-items-wrapper {
  width: 100%;
}

.cart-drawer .cart-items {
  width: 100%;
  margin: 0;
}

.cart-drawer .cart-items thead {
  display: none;
}

.cart-drawer .cart-item {
 display: grid;
    grid-template-columns: 112px minmax(0,1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 12px;
    width: 100%;
    margin: 0;
    padding: 22px 0;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 0;
}

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

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

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

.cart-drawer .cart-item__media {
  grid-column: 1;
  grid-row: 1 / 3;

  width: 112px;
  height: 140px;
}

.cart-drawer .cart-item__media .cart-item__link {
  width: 100%;
  height: 100%;
}

.cart-drawer .cart-item__image {
  display: block;

  /*width: 112px;
  height: 140px;*/
      width: 100px;
    height: 120px;
  max-width: none;

  object-fit: cover;
  object-position: center;

  background: #f5f5f5;
}

.cart-drawer .cart-item__details {
  grid-column: 2;
  grid-row: 1;

  width: 100%;
  min-width: 0;

  padding: 0;
}

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

.cart-drawer .cart-item__name {
  display: block;

  margin: 0;

  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;

  color: #111;
  text-decoration: none;
}

.cart-drawer .cart-item__name:hover {
  text-decoration: none;
}

.cart-drawer .cart-item__details > .product-option {
  margin-top: 6px;

  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;

  color: #333;
}

.cart-drawer .cart-item__details dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;

  margin: 7px 0 0;
}

.cart-drawer .cart-item__details dl .product-option {
  display: flex;
  align-items: center;

  margin: 0;

  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.25;

  color: #666;
}

.cart-drawer .cart-item__details dl .product-option dt,
.cart-drawer .cart-item__details dl .product-option dd {
  margin: 0;
}

.cart-drawer .cart-item__details dl .product-option dt {
  margin-right: 3px;
}

.cart-drawer .cart-item__details dl .product-option:not(:last-child)::after {
  content: "-";
  margin-left: 8px;
  color: #999;
}

.cart-drawer .cart-item__totals {
  position: absolute !important;
  inset: 0 !important;

  display: block !important;

  width: 100% !important;
  height: 100% !important;

  padding: 0 !important;

  pointer-events: none !important;

  z-index: 5;
}

.cart-drawer .cart-item__totals .cart-item__price-wrapper {
  display: none !important;
}

.cart-drawer .cart-item__totals .loading__spinner {
  position: absolute !important;

  top: 50% !important;
  left: 50% !important;
  right: auto !important;

  padding: 0 !important;

  transform: translate(-50%, -50%) !important;

  z-index: 6;
}
.cart-drawer .cart-item {
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}

.cart-drawer .cart-item:has(.loading__spinner:not(.hidden)) > *:not(.cart-item__totals) {
  opacity: 0.35;
}

.cart-drawer .cart-item:has(.loading__spinner:not(.hidden)) {
  pointer-events: none;
}

.cart-drawer .cart-item__quantity {
  grid-column: 2;
  grid-row: 2;

  width: 100%;

  padding: 0;
}

.cart-drawer .cart-item__quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
}

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

.cart-drawer quantity-input.quantity {
  width: 112px;
  min-height: 36px;
  height: 36px;

  border: 1px solid #d9d9d9;
  border-radius: 3px;

  background: transparent;
}

.cart-drawer quantity-input.quantity::before,
.cart-drawer quantity-input.quantity::after {
  display: none;
}

.cart-drawer .quantity__button {
  width: 34px;
  min-width: 34px;
  height: 34px;

  padding: 0;
}

.cart-drawer .quantity__button .svg-wrapper {
  width: 12px;
  height: 12px;
}

.cart-drawer .quantity__input {
  width: 42px;
  height: 34px;

  padding: 0;

  font-size: 13px;
  font-weight: 500;
  line-height: 34px;

  text-align: center;
}

.cart-drawer cart-remove-button {
  display: flex;
  align-items: center;

  margin: 0;
}

.cart-drawer .cart-remove-button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;

  padding: 0;

  color: #666;
  background: transparent;
  border: 0;
}

.cart-drawer .cart-remove-button:hover {
  color: #111;
}

.cart-drawer .cart-remove-button .svg-wrapper {
  width: 16px;
  height: 16px;
}

.drawer__footer {
  flex: 0 0 auto;

  margin: 0 -24px;
  padding: 20px 24px 22px;

  border-top: 1px solid #e5e5e5;

  background: #fff;
}

.drawer__footer > .cart-drawer__footer {
  padding: 0;
}

.drawer__footer > * + * {
  margin-top: 0;
}

.cart-drawer .totals {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 0;
}

.cart-drawer .totals__total {
  margin: 0;

  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;

  color: #111;
}

.cart-drawer .totals__total-value {
  margin: 0;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;

  color: #111;
}

.cart-drawer .tax-note {
  display: block;

  margin: 8px 0 18px;

  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4;

  color: #777;
  text-align: left;
}

.cart-drawer .tax-note a {
  color: inherit;
  text-underline-offset: 2px;
}

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

.cart-drawer .cart__checkout-button {
  width: 100%;
  max-width: none;
  min-height: 52px;

  margin: 0;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;

  border-radius: 4px;
}

@media screen and (max-width: 749px) {
  .drawer__inner {
    width: 100vw;
    max-width: 100vw;

    padding: 0 16px;

    border: 0;
  }

  .drawer__header {
    min-height: 68px;
  }

  .drawer__heading {
    font-size: 20px;
  }

  .drawer__close {
    right: -8px;
  }

  .cart-drawer .cart-item {
    grid-template-columns: 96px minmax(0, 1fr);

    column-gap: 14px;
    row-gap: 10px;

    padding: 18px 0;
  }

  .cart-drawer .cart-item__media {
    width: 96px;
    height: 120px;
  }

  .cart-drawer .cart-item__image {
    width: 96px;
    height: 120px;
  }

  .cart-drawer .cart-item__name {
    font-size: 14px;
  }

  .cart-drawer .cart-item__details > .product-option {
    margin-top: 5px;
    font-size: 12.5px;
  }

  .cart-drawer .cart-item__details dl {
    margin-top: 6px;
  }

  .cart-drawer .cart-item__details dl .product-option {
    font-size: 12px;
  }

  .cart-drawer quantity-input.quantity {
    width: 104px;
    height: 34px;
    min-height: 34px;
  }

  .cart-drawer .quantity__button {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }

  .cart-drawer .quantity__input {
    width: 40px;
    height: 32px;

    line-height: 32px;
  }

  .drawer__footer {
    margin: 0 -16px;
    padding: 17px 16px 18px;
  }

  .cart-drawer .cart__checkout-button {
    min-height: 50px;
  }
}

/*more design customization*/

.drawer__header {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.cart-drawer .cart-item {
  position: relative;
  padding-right: 0;
}

.cart-drawer .cart-item__details dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 !important;
  margin: 8px 0 0 !important;
}

.cart-drawer .cart-item__details dl .product-option {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
}

.cart-drawer .cart-item__details dl .product-option dt {
  display: none !important;
}

.cart-drawer .cart-item__details dl .product-option dd {
  margin: 0 !important;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
}

.cart-drawer .cart-item__details dl .product-option::after {
  content: none !important;
}

.cart-drawer .cart-item__details dl .product-option + .product-option::before {
  content: "-";
  margin: 0 8px;
  color: #999;
}

.cart-drawer .cart-item__quantity-wrapper {
  gap: 8px !important;
}

.cart-drawer quantity-input.quantity {
  width: 92px !important;
  min-height: 30px !important;
  height: 30px !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #f5f5f5 !important;
  border-radius: 999px !important;
}

.cart-drawer quantity-input.quantity::before,
.cart-drawer quantity-input.quantity::after {
  display: none !important;
}

.cart-drawer .quantity__button {
  width: 28px !important;
  min-width: 28px !important;
  height: 30px !important;
  padding: 0 !important;
}

.cart-drawer .quantity__button .svg-wrapper {
  width: 11px !important;
  height: 11px !important;
}

.cart-drawer .quantity__input {
  width: 36px !important;
  height: 30px !important;
  padding: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 30px !important;
  background: transparent !important;
}


@media screen and (max-width: 749px) {
  .cart-drawer .cart-item {
    padding-right: 0;
  }

  .cart-drawer quantity-input.quantity {
    width: 88px !important;
    min-height: 28px !important;
    height: 28px !important;
  }

  .cart-drawer .quantity__button {
    width: 26px !important;
    min-width: 26px !important;
    height: 28px !important;
  }

  .cart-drawer .quantity__input {
    width: 34px !important;
    height: 28px !important;
    line-height: 28px !important;
    font-size: 12.5px !important;
  }
}


.cart-drawer .cart-item__quantity-wrapper {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.cart-drawer .cart-item cart-remove-button {
  position: static !important;
  flex: 0 0 auto !important;
  margin-left: auto !important;
}

.cart-drawer .cart-remove-button {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 4px 0 !important;
  background: transparent !important;
  border: 0 !important;
  color: #777 !important;
  font-size: 11.5px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.cart-drawer .cart-remove-button:hover {
  color: #111 !important;
  text-underline-offset: 3px;
}

/*checkout icon*/

.cart-drawer__footer{
  margin-bottom: 1em;
}.cart-drawer .cart__checkout-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.cart-drawer .cart__checkout-button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

/*Upsells */

.cart-upsell {
  padding: 22px 0 24px;
  border-top: 1px solid #e9e9e9;
}

.cart-upsell__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.cart-upsell__heading {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cart-upsell__navigation {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-upsell__arrow {
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedede;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.cart-upsell__arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-upsell__arrow:hover {
  border-color: #111;
}

.cart-upsell__arrow:disabled {
  opacity: 0.28;
  cursor: default;
  border-color: #dedede;
}

.cart-upsell__track {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.cart-upsell__track::-webkit-scrollbar {
  display: none;
}

.cart-upsell__card {
  flex: 0 0 88%;
  min-width: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 10px;
  border: 1px solid #e9e9e9;
  background: #fff;
  scroll-snap-align: start;
}

.cart-upsell[data-count="1"] .cart-upsell__card {
  flex-basis: 100%;
}

.cart-upsell__image-link {
  display: block;
  width: 76px;
  height: 92px;
  overflow: hidden;
  background: #f5f5f5;
}

.cart-upsell__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-upsell__info {
  min-width: 0;
}

.cart-upsell__title {
  display: -webkit-box;
  margin: 0 0 6px;
  overflow: hidden;
  color: #111;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-upsell__title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-upsell__price {
  color: #222;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.cart-upsell__add {
  position: relative;
  min-width: 54px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.cart-upsell__add-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.cart-upsell__add:hover .cart-upsell__add-label {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-upsell__add.is-loading {
  pointer-events: none;
}

.cart-upsell__add.is-loading .cart-upsell__add-label {
  opacity: 0;
}

.cart-upsell__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  margin: -7.5px 0 0 -7.5px;
  border: 1.5px solid #d6d6d6;
  border-top-color: #111;
  border-radius: 50%;
  opacity: 0;
  animation: cart-upsell-spin 0.65s linear infinite;
}

.cart-upsell__add.is-loading .cart-upsell__spinner {
  opacity: 1;
}

@keyframes cart-upsell-spin {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 749px) {
  .cart-upsell {
    padding-top: 20px;
  }

  .cart-upsell__navigation {
    display: none;
  }

  .cart-upsell__card {
    flex-basis: 90%;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 11px;
  }

  .cart-upsell__image-link {
    width: 72px;
    height: 88px;
  }
}

.cart-upsell__variant {
  margin: 3px 0 5px;
  color: #777;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.2;
}

.cart-upsell__heading {
  letter-spacing: -0.03em;
}

.drawer__heading {
  letter-spacing: -0.03em;
}
  .section-header:has(header-drawer details[open]) {
    z-index: 9999 !important;
  }

  .section-header:has(header-drawer details[open]) .menu-drawer {
    z-index: 10000 !important;
  }
}