/** Shopify CDN: Minification failed

Line 430:0 All "@import" rules must come first

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




/* ==========================================================
   PREMIUM LIGHT RESPONSIVE CART DRAWER
   Accent: #FF7B00
   Font: Poppins
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* Entire cart drawer font */
#CartDrawer,
#CartDrawer *,
cart-drawer,
cart-drawer * {
  font-family: 'Poppins', sans-serif !important;
  box-sizing: border-box;
}

/* Main drawer */
#CartDrawer .drawer__inner,
#CartDrawer .drawer__inner-empty {
  width: 46rem;
  max-width: calc(100vw - 2rem);
  height: 100%;
  padding: 0 2rem;
  background: #ffffff !important;
  color: #241f1b !important;
  border: none !important;
  border-radius: 26px 0 0 26px;
  box-shadow: -18px 0 60px rgba(41, 29, 21, 0.18);
}

/* Overlay */
#CartDrawer .cart-drawer__overlay {
  background: rgba(28, 20, 15, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Header */
#CartDrawer .drawer__header {
  min-height: 78px;
  padding: 2rem 0 1.6rem;
  border-bottom: 1px solid #f1e4d9;
  background: #ffffff;
  flex-shrink: 0;
}

/* Heading */
#CartDrawer .drawer__heading {
  margin: 0 !important;
  padding-right: 5rem;
  color: #211c18 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02rem;
}

/* Close button */
#CartDrawer .drawer__close {
  top: 1.6rem;
  right: 0;
  width: 4.2rem;
  min-width: 4.2rem;
  height: 4.2rem;
  min-height: 4.2rem;
  padding: 0;
  border: 1px solid #ffe2c6;
  border-radius: 50%;
  background: #fff5eb !important;
  color: #ff7b00 !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

#CartDrawer .drawer__close::before,
#CartDrawer .drawer__close::after {
  display: none !important;
}

#CartDrawer .drawer__close:hover {
  border-color: #ff7b00;
  background: #ff7b00 !important;
  color: #ffffff !important;
  transform: rotate(90deg);
}

#CartDrawer .drawer__close svg,
#CartDrawer .drawer__close path {
  color: currentColor !important;
  fill: currentColor;
}

/* Drawer contents */
#CartDrawer .drawer__contents {
  min-height: 0;
}

/* Scrollable products section */
#CartDrawer cart-drawer-items {
  flex: 1;
  min-height: 0;
  padding: 0 0.5rem 1rem 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Hide table heading */
#CartDrawer .cart-items thead {
  display: none;
}

/* Remove default borders */
#CartDrawer .cart-items th,
#CartDrawer .cart-items td {
  border: none;
}

/* Product card */
#CartDrawer .cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  column-gap: 1.3rem;
  row-gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 1.4rem;
  border: 1px solid #f0dfd1;
  border-radius: 20px;
  background: #fffaf6;
  box-shadow: 0 8px 24px rgba(75, 48, 29, 0.065);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

#CartDrawer .cart-item:hover {
  border-color: rgba(255, 123, 0, 0.38);
  box-shadow: 0 13px 30px rgba(75, 48, 29, 0.1);
  transform: translateY(-2px);
}

/* Product image area */
#CartDrawer .cart-item__media {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 9rem;
  min-width: 9rem;
  height: 11rem;
  overflow: hidden;
  border: 1px solid #f0e4da;
  border-radius: 15px;
  background: #ffffff;
}

#CartDrawer .cart-item__link {
  display: block;
  width: 100%;
  height: 100%;
}

#CartDrawer .cart-item__image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
}

/* Details */
#CartDrawer .cart-item__details {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  padding: 0 !important;
}

/* Product name */
#CartDrawer .cart-item__name,
#CartDrawer .cart-item__details .full-unstyled-link,
#CartDrawer .cart-item__details a {
  display: -webkit-box;
  margin: 0 0 0.5rem;
  overflow: hidden;
  color: #241f1b !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.42rem;
  line-height: 1.45;
  font-weight: 600 !important;
  letter-spacing: 0;
  text-decoration: none !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

#CartDrawer .cart-item__name:hover,
#CartDrawer .cart-item__details a:hover {
  color: #ff7b00 !important;
}

/* Vendor */
#CartDrawer .caption-with-letter-spacing {
  margin-bottom: 0.4rem;
  color: #a0958c !important;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

/* Product options */
#CartDrawer .product-option,
#CartDrawer .cart-item__details dl,
#CartDrawer .cart-item__details dt,
#CartDrawer .cart-item__details dd {
  margin-top: 0.2rem;
  color: #81756c !important;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 400;
}

#CartDrawer .product-option dt,
#CartDrawer .product-option dd {
  display: inline;
  margin: 0;
}

/* Discounts */
#CartDrawer .discounts,
#CartDrawer .discounts__discount {
  color: #31854b !important;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Price section */
#CartDrawer .cart-item__totals {
  grid-column: 3;
  grid-row: 1;
  min-width: 7rem;
  padding: 0 !important;
  align-items: flex-start;
  justify-content: flex-end;
}

#CartDrawer .cart-item__price-wrapper,
#CartDrawer .cart-item__price-wrapper .price,
#CartDrawer .price--end {
  margin: 0 !important;
  color: #ff7b00 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 700 !important;
  text-align: right;
}

#CartDrawer .cart-item__old-price,
#CartDrawer s.price,
#CartDrawer .price--end s {
  color: #a69d96 !important;
  font-size: 1.05rem;
  font-weight: 400 !important;
}

/* Quantity row */
#CartDrawer .cart-item__quantity {
  grid-column: 2 / 4 !important;
  grid-row: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0 0 !important;
}

/* Quantity container */
#CartDrawer .quantity-popover-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
}

/* Quantity selector */
#CartDrawer .quantity {
  width: 12rem;
  min-height: 4.1rem;
  border: 1px solid #ead8ca !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden;
}

#CartDrawer .quantity::before,
#CartDrawer .quantity::after {
  display: none !important;
}

#CartDrawer .quantity__input {
  min-width: 3.5rem;
  padding: 0;
  color: #241f1b !important;
  background: transparent !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

#CartDrawer .quantity__button {
  width: 4rem;
  height: 4rem;
  padding: 0;
  border-radius: 50%;
  color: #ff7b00 !important;
  background: transparent !important;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

#CartDrawer .quantity__button::before,
#CartDrawer .quantity__button::after {
  display: none !important;
}

#CartDrawer .quantity__button:hover {
  background: #fff0e2 !important;
  color: #e56f00 !important;
}

/* Remove button */
#CartDrawer cart-remove-button {
  margin: 0 !important;
}

#CartDrawer cart-remove-button .button,
#CartDrawer cart-remove-button a {
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
  margin: 0;
  padding: 0;
  border: 1px solid #ffe0c2 !important;
  border-radius: 50% !important;
  background: #fff4e9 !important;
  color: #ff7b00 !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

#CartDrawer cart-remove-button .button::before,
#CartDrawer cart-remove-button .button::after,
#CartDrawer cart-remove-button a::before,
#CartDrawer cart-remove-button a::after {
  display: none !important;
}

#CartDrawer cart-remove-button .button:hover,
#CartDrawer cart-remove-button a:hover {
  border-color: #ff7b00 !important;
  background: #ff7b00 !important;
  color: #ffffff !important;
  transform: scale(1.07);
}

#CartDrawer cart-remove-button svg,
#CartDrawer cart-remove-button path {
  color: currentColor !important;
  fill: currentColor;
}

/* Loading spinner */
#CartDrawer .loading__spinner {
  color: #ff7b00;
}

/* Error */
#CartDrawer .cart-item__error {
  grid-column: 2 / 4;
  margin-top: 0.5rem;
}

#CartDrawer .cart-item__error-text {
  color: #d64242 !important;
  font-size: 1.05rem;
  font-weight: 500;
}

/* Footer */
#CartDrawer .drawer__footer {
  flex-shrink: 0;
  margin: 0 -2rem;
  padding: 1.6rem 2rem 2rem;
  border-top: 1px solid #f0e0d3 !important;
  background: #ffffff !important;
  box-shadow: 0 -12px 35px rgba(64, 43, 28, 0.07);
}

/* Cart note */
#CartDrawer .drawer__footer > details {
  margin-top: -1.6rem;
  border-bottom: 1px solid #f0e0d3 !important;
}

#CartDrawer .drawer__footer > details[open] {
  padding-bottom: 1.4rem;
}

#CartDrawer .drawer__footer summary {
  min-height: 5rem;
  padding: 1.5rem 2.8rem 1.5rem 0;
  color: #3b312a !important;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
}

#CartDrawer .drawer__footer summary:hover {
  color: #ff7b00 !important;
}

/* Cart note textarea */
#CartDrawer .cart__note textarea,
#CartDrawer .drawer__footer textarea {
  min-height: 9rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid #ead9cc !important;
  border-radius: 13px !important;
  background: #fffaf6 !important;
  color: #241f1b !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.2rem;
  box-shadow: none !important;
  resize: vertical;
}

#CartDrawer .cart__note textarea:focus,
#CartDrawer .drawer__footer textarea:focus {
  border-color: #ff7b00 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.12) !important;
}

/* Footer inner */
#CartDrawer .cart-drawer__footer {
  padding-top: 0.5rem;
}

/* Totals */
#CartDrawer .totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.6rem 0 0;
}

#CartDrawer .totals__total {
  margin: 0;
  color: #241f1b !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600 !important;
}

#CartDrawer .totals__total-value {
  margin: 0;
  color: #ff7b00 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700 !important;
}

/* Tax note */
#CartDrawer .tax-note {
  margin: 0.8rem 0 1.5rem;
  color: #81756c !important;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}

/* Checkout button */
#CartDrawer .cart__checkout-button,
#CartDrawer .cart-drawer__checkout {
  width: 100%;
  min-height: 5.4rem;
  margin-top: 0.3rem;
  padding: 1.3rem 2rem;
  border: 1px solid #ff7b00 !important;
  border-radius: 999px !important;
  background: #ff7b00 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.32rem;
  line-height: 1.3;
  font-weight: 700 !important;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(255, 123, 0, 0.27);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#CartDrawer .cart__checkout-button::before,
#CartDrawer .cart__checkout-button::after,
#CartDrawer .cart-drawer__checkout::before,
#CartDrawer .cart-drawer__checkout::after {
  display: none !important;
}

#CartDrawer .cart__checkout-button:hover,
#CartDrawer .cart-drawer__checkout:hover {
  border-color: #e56f00 !important;
  background: #e56f00 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 123, 0, 0.34);
}

#CartDrawer .cart__checkout-button:disabled,
#CartDrawer .cart-drawer__checkout:disabled {
  border-color: #d9d2cc !important;
  background: #d9d2cc !important;
  color: #ffffff !important;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Dynamic checkout */
#CartDrawer .cart__dynamic-checkout-buttons {
  margin-top: 1rem;
}

/* Empty cart */
#CartDrawer .cart-drawer__warnings {
  padding: 4rem 2rem;
  text-align: center;
}

#CartDrawer .cart__empty-text {
  margin-bottom: 1.5rem;
  color: #241f1b !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700 !important;
}

#CartDrawer .cart__login-title {
  color: #241f1b !important;
  font-size: 1.7rem;
  font-weight: 600;
}

#CartDrawer .cart__login-paragraph {
  color: #81756c !important;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Empty cart button */
#CartDrawer .cart-drawer__warnings .button {
  min-height: 5rem;
  padding: 1.2rem 2.8rem;
  border: 1px solid #ff7b00 !important;
  border-radius: 999px !important;
  background: #ff7b00 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 123, 0, 0.22);
}

#CartDrawer .cart-drawer__warnings .button::before,
#CartDrawer .cart-drawer__warnings .button::after {
  display: none !important;
}

#CartDrawer .cart-drawer__warnings .button:hover {
  border-color: #e56f00 !important;
  background: #e56f00 !important;
}

/* Scrollbar */
#CartDrawer cart-drawer-items::-webkit-scrollbar {
  width: 5px;
}

#CartDrawer cart-drawer-items::-webkit-scrollbar-track {
  background: transparent;
}

#CartDrawer cart-drawer-items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #ffc58f;
}

#CartDrawer cart-drawer-items::-webkit-scrollbar-thumb:hover {
  background: #ff7b00;
}

/* Firefox scrollbar */
#CartDrawer cart-drawer-items {
  scrollbar-width: thin;
  scrollbar-color: #ffc58f transparent;
}

/* ==========================================================
   TABLET
========================================================== */

@media screen and (max-width: 989px) {
  #CartDrawer .drawer__inner,
  #CartDrawer .drawer__inner-empty {
    width: 43rem;
    max-width: calc(100vw - 1.5rem);
  }
}

/* ==========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 749px) {
  #CartDrawer .drawer__inner,
  #CartDrawer .drawer__inner-empty {
    width: calc(100vw - 0.8rem);
    max-width: calc(100vw - 0.8rem);
    height: 100%;
    padding: 0 1.4rem;
    border-radius: 22px 0 0 22px;
    box-shadow: -10px 0 40px rgba(41, 29, 21, 0.18);
  }

  #CartDrawer .drawer__header {
    min-height: 70px;
    padding: 1.6rem 0 1.3rem;
  }

  #CartDrawer .drawer__heading {
    padding-right: 4.8rem;
    font-size: 1.9rem;
  }

  #CartDrawer .drawer__close {
    top: 1.25rem;
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
    min-height: 4rem;
  }

  #CartDrawer cart-drawer-items {
    padding-right: 0.2rem;
  }

  #CartDrawer .cart-item {
    grid-template-columns: 7.8rem minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 1.1rem;
    row-gap: 0.7rem;
    margin-top: 1.2rem;
    padding: 1.1rem;
    border-radius: 16px;
  }

  #CartDrawer .cart-item:hover {
    transform: none;
  }

  #CartDrawer .cart-item__media {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 7.8rem;
    min-width: 7.8rem;
    height: 9.6rem;
    border-radius: 12px;
  }

  #CartDrawer .cart-item__image {
    border-radius: 12px;
  }

  #CartDrawer .cart-item__details {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
  }

  #CartDrawer .cart-item__name,
  #CartDrawer .cart-item__details .full-unstyled-link,
  #CartDrawer .cart-item__details a {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600 !important;
  }

  #CartDrawer .caption-with-letter-spacing {
    font-size: 0.95rem;
  }

  #CartDrawer .product-option,
  #CartDrawer .cart-item__details dl,
  #CartDrawer .cart-item__details dt,
  #CartDrawer .cart-item__details dd {
    font-size: 1rem;
    line-height: 1.4;
  }

  #CartDrawer .cart-item__totals {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    justify-content: flex-start;
  }

  #CartDrawer .cart-item__price-wrapper,
  #CartDrawer .cart-item__price-wrapper .price,
  #CartDrawer .price--end {
    font-size: 1.2rem;
    text-align: left;
  }

  #CartDrawer .cart-item__quantity {
    grid-column: 2 !important;
    grid-row: 3;
    justify-content: flex-start;
    gap: 0.7rem;
    padding-top: 0.5rem !important;
  }

  #CartDrawer .quantity-popover-container {
    width: 100%;
    justify-content: space-between;
  }

  #CartDrawer .quantity {
    width: 10.8rem;
    min-height: 3.8rem;
  }

  #CartDrawer .quantity__button {
    width: 3.6rem;
    height: 3.6rem;
  }

  #CartDrawer .quantity__input {
    min-width: 3rem;
    font-size: 1.15rem;
  }

  #CartDrawer cart-remove-button .button,
  #CartDrawer cart-remove-button a {
    width: 3.8rem;
    min-width: 3.8rem;
    height: 3.8rem;
    min-height: 3.8rem;
  }

  #CartDrawer .drawer__footer {
    margin: 0 -1.4rem;
    padding: 1.4rem 1.4rem 1.6rem;
  }

  #CartDrawer .drawer__footer > details {
    margin-top: -1.4rem;
  }

  #CartDrawer .drawer__footer summary {
    min-height: 4.5rem;
    padding: 1.3rem 2.5rem 1.3rem 0;
    font-size: 1.1rem;
  }

  #CartDrawer .totals__total {
    font-size: 1.4rem;
  }

  #CartDrawer .totals__total-value {
    font-size: 1.55rem;
  }

  #CartDrawer .tax-note {
    margin: 0.7rem 0 1.2rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  #CartDrawer .cart__checkout-button,
  #CartDrawer .cart-drawer__checkout {
    min-height: 5rem;
    padding: 1.2rem 1.5rem;
    font-size: 1.18rem;
  }

  #CartDrawer .cart-drawer__warnings {
    padding: 3rem 1.5rem;
  }

  #CartDrawer .cart__empty-text {
    font-size: 2.1rem;
  }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media screen and (max-width: 420px) {
  #CartDrawer .drawer__inner,
  #CartDrawer .drawer__inner-empty {
    width: 100vw;
    max-width: 100vw;
    padding: 0 1.2rem;
    border-radius: 0;
  }

  #CartDrawer .drawer__footer {
    margin: 0 -1.2rem;
    padding: 1.3rem 1.2rem 1.5rem;
  }

  #CartDrawer .cart-item {
    grid-template-columns: 7rem minmax(0, 1fr);
    column-gap: 0.9rem;
    padding: 1rem;
  }

  #CartDrawer .cart-item__media {
    width: 7rem;
    min-width: 7rem;
    height: 9rem;
  }

  #CartDrawer .cart-item__name,
  #CartDrawer .cart-item__details .full-unstyled-link,
  #CartDrawer .cart-item__details a {
    font-size: 1.16rem;
  }

  #CartDrawer .quantity {
    width: 10rem;
  }

  #CartDrawer .totals__total {
    font-size: 1.3rem;
  }

  #CartDrawer .totals__total-value {
    font-size: 1.45rem;
  }
}