#mt-storefront-cart-page,
#mt-storefront-cart-page * {
  box-sizing: border-box;
}

#mt-storefront-cart-page {
  --mt-cart-bg-light: #f8f8f6;
  --mt-cart-bg-dark: #080808;
  --mt-cart-text-light: #111111;
  --mt-cart-text-dark: #f5f5f0;
  --mt-cart-muted-light: rgba(17, 17, 17, 0.52);
  --mt-cart-muted-dark: rgba(245, 245, 240, 0.55);
  --mt-cart-border-light: rgba(17, 17, 17, 0.12);
  --mt-cart-border-dark: rgba(245, 245, 240, 0.13);
  --mt-cart-accent-light: #969fa5;
  --mt-cart-accent-light-strong: #6a7278;
  --mt-cart-accent-dark: #e8c45a;
  --mt-cart-accent-dark-soft: #f7e090;
  --mt-cart-surface-light: rgba(255, 255, 255, 0.18);
  --mt-cart-surface-dark: rgba(13, 13, 15, 0.66);

  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: 100vh;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: hidden;
  background: var(--mt-cart-bg-light);
  color: var(--mt-cart-text-light);
  padding: calc(var(--mt-nav-height, 56px) + 34px) 17px 84px;
  font-family: 'Rajdhani', sans-serif;
}

#mt-storefront-cart-page [hidden] {
  display: none !important;
}

#mt-storefront-cart-page .mt-cart-shell {
  width: min(1390px, calc(100vw - 34px)) !important;
  max-width: calc(100vw - 34px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#mt-storefront-cart-page .mt-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 34px;
}

#mt-storefront-cart-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 4.2vw, 62px);
  line-height: 0.95;
  letter-spacing: 0.045em;
  margin: 0;
  color: inherit;
}

#mt-storefront-cart-page .mt-cart-back {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.62;
  white-space: nowrap;
}

#mt-storefront-cart-page .mt-cart-back:hover {
  opacity: 1;
}

#mt-storefront-cart-page .mt-cart-loading,
#mt-storefront-cart-page .mt-cart-empty {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#mt-storefront-cart-page .mt-cart-empty h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: 0.04em;
  margin: 0;
  color: inherit;
}

#mt-storefront-cart-page .mt-cart-empty p {
  margin: 0;
  opacity: 0.68;
  letter-spacing: 0.16em;
}

#mt-storefront-cart-page .mt-cart-empty-link {
  margin-top: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
}

#mt-storefront-cart-page .mt-cart-content {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

#mt-storefront-cart-page .mt-cart-table {
  width: 100%;
}

#mt-storefront-cart-page .mt-cart-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px 160px;
  column-gap: 22px;
  align-items: end;
  border-bottom: 1px solid var(--mt-cart-border-light);
  padding-bottom: 11px;
  margin-bottom: 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mt-cart-accent-light-strong);
}

#mt-storefront-cart-page .mt-cart-head-product,
#mt-storefront-cart-page .mt-cart-head-total {
  display: block;
}

#mt-storefront-cart-page .mt-cart-head-total {
  text-align: right;
}

#mt-storefront-cart-page .mt-cart-head-qty {
  display: grid;
  grid-template-columns: 42px 30px 42px 42px;
  justify-items: center;
  align-items: center;
}

#mt-storefront-cart-page .mt-cart-items {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--mt-cart-border-light);
}

#mt-storefront-cart-page .mt-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px 160px;
  column-gap: 22px;
  align-items: start;
  min-width: 0;
  padding: 40px 0;
}

#mt-storefront-cart-page .mt-cart-item + .mt-cart-item {
  border-top: 1px solid var(--mt-cart-border-light);
}

#mt-storefront-cart-page .mt-cart-product-cell {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 80px;
  align-items: start;
  min-width: 0;
}

#mt-storefront-cart-page .mt-cart-item-image {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(150, 159, 165, 0.08);
  text-decoration: none;
}

#mt-storefront-cart-page .mt-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#mt-storefront-cart-page .mt-cart-item-info {
  min-width: 0;
  padding-top: 2px;
}

#mt-storefront-cart-page .mt-cart-item-vendor {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--mt-cart-muted-light);
  margin-bottom: 3px;
}

#mt-storefront-cart-page .mt-cart-item-title {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2px;
}

#mt-storefront-cart-page .mt-cart-item-subtitle {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  color: var(--mt-cart-accent-light-strong);
  margin-bottom: 13px;
}

#mt-storefront-cart-page .mt-cart-item-unit-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: var(--mt-cart-muted-light);
  margin-bottom: 9px;
}

#mt-storefront-cart-page .mt-cart-item-option-color {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  line-height: 1.1;
  color: var(--mt-cart-muted-light);
  margin-bottom: 9px;
}

#mt-storefront-cart-page .mt-cart-color-value {
  font-weight: 700;
  color: var(--mt-cart-text-light);
}

#mt-storefront-cart-page .mt-cart-size-select {
  width: auto;
  min-width: 132px;
  max-width: 230px;
  height: 29px;
  border: 1px solid rgba(17, 17, 17, 0.25);
  border-radius: 6px;
  background: transparent;
  color: var(--mt-cart-text-light);
  padding: 0 28px 0 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

#mt-storefront-cart-page .mt-cart-size-select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#mt-storefront-cart-page .mt-cart-qty-cell {
  display: grid;
  grid-template-columns: 42px 30px 42px 42px;
  align-items: center;
  justify-items: center;
  padding-top: 3px;
}

#mt-storefront-cart-page .mt-cart-qty {
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: 42px 30px 42px;
  align-items: center;
  justify-items: center;
  min-width: 114px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
}

#mt-storefront-cart-page .mt-cart-qty button {
  width: 42px;
  height: 32px;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#mt-storefront-cart-page .mt-cart-qty span {
  min-width: 30px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

#mt-storefront-cart-page .mt-cart-remove {
  grid-column: 4;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: inherit;
  opacity: 0.72;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#mt-storefront-cart-page .mt-cart-remove:hover {
  opacity: 1;
}

#mt-storefront-cart-page .mt-cart-remove svg {
  width: 16px;
  height: 16px;
}

#mt-storefront-cart-page .mt-cart-item-price {
  text-align: right;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 8px;
}

#mt-storefront-cart-page .mt-cart-summary {
  width: min(480px, 100%);
  margin-left: auto;
}

#mt-storefront-cart-page .mt-cart-summary-inner {
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#mt-storefront-cart-page .mt-cart-summary h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0 0 13px;
  padding: 0;
  display: block;
  color: var(--mt-cart-text-light);
  background: transparent;
}

#mt-storefront-cart-page .mt-cart-discount {
  padding-top: 13px;
  border-top: 1px solid var(--mt-cart-border-light);
  margin-bottom: 13px;
}

#mt-storefront-cart-page .mt-cart-discount-row {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 8px;
  align-items: center;
}

#mt-storefront-cart-page .mt-cart-discount input {
  height: 28px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  padding: 0 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  min-width: 0;
}

#mt-storefront-cart-page .mt-cart-discount input::placeholder {
  color: var(--mt-cart-muted-light);
  opacity: 0.55;
}

#mt-storefront-cart-page .mt-cart-discount button {
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #111111;
  color: #f5f5f0;
  padding: 0 13px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#mt-storefront-cart-page .mt-cart-discount-message {
  min-height: 16px;
  margin-top: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  opacity: 0.72;
}

#mt-storefront-cart-page .mt-cart-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--mt-cart-muted-light);
}

#mt-storefront-cart-page .mt-cart-summary-row strong {
  font: inherit;
  color: inherit;
  font-weight: 700;
  text-align: right;
}

#mt-storefront-cart-page .mt-cart-shipping-row {
  font-size: 12px;
}

#mt-storefront-cart-page .mt-cart-shipping-row strong {
  font-size: 12px;
  font-weight: 700;
}

#mt-storefront-cart-page .mt-cart-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  margin: 20px 0 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.055em;
  color: inherit;
}

#mt-storefront-cart-page .mt-cart-total span,
#mt-storefront-cart-page .mt-cart-total strong {
  font: inherit;
  letter-spacing: inherit;
  font-weight: 400;
}

#mt-storefront-cart-page .mt-cart-total strong {
  text-align: right;
  white-space: nowrap;
}

#mt-storefront-cart-page .mt-cart-tax-note {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  line-height: 1.25;
  opacity: 0.54;
  margin: 0 0 16px;
  text-align: right;
}

#mt-storefront-cart-page .mt-cart-checkout {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.22) 100%),
    #3a3a3a;
  color: #f5f5f0;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

#mt-storefront-cart-page .mt-cart-checkout:hover {
  filter: brightness(1.06);
}

#mt-storefront-cart-page .mt-cart-payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 12px;
}

#mt-storefront-cart-page .mt-cart-payment-icons img {
  display: block;
  width: min(315px, 82%);
  max-width: 315px;
  height: auto;
}

body.mt-theme-light #mt-storefront-cart-page,
html.mt-theme-light #mt-storefront-cart-page,
body[data-theme="light"] #mt-storefront-cart-page,
html[data-theme="light"] #mt-storefront-cart-page,
body[data-mt-cart-theme="light"] #mt-storefront-cart-page,
html[data-mt-cart-theme="light"] #mt-storefront-cart-page {
  background: var(--mt-cart-bg-light);
  color: var(--mt-cart-text-light);
}

body.mt-theme-dark #mt-storefront-cart-page,
html.mt-theme-dark #mt-storefront-cart-page,
body[data-theme="dark"] #mt-storefront-cart-page,
html[data-theme="dark"] #mt-storefront-cart-page,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page {
  background: var(--mt-cart-bg-dark);
  color: var(--mt-cart-text-dark);
}

body.mt-theme-light #mt-storefront-cart-page .mt-cart-table-head,
html.mt-theme-light #mt-storefront-cart-page .mt-cart-table-head,
body[data-theme="light"] #mt-storefront-cart-page .mt-cart-table-head,
html[data-theme="light"] #mt-storefront-cart-page .mt-cart-table-head,
body[data-mt-cart-theme="light"] #mt-storefront-cart-page .mt-cart-table-head,
html[data-mt-cart-theme="light"] #mt-storefront-cart-page .mt-cart-table-head {
  color: var(--mt-cart-accent-light-strong);
  border-bottom-color: var(--mt-cart-border-light);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-table-head,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-table-head,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-table-head,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-table-head,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-table-head,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-table-head {
  color: var(--mt-cart-accent-dark);
  border-bottom-color: var(--mt-cart-border-dark);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-items,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-items,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-items,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-items,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-items,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-items,
body.mt-theme-dark #mt-storefront-cart-page .mt-cart-item + .mt-cart-item,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-item + .mt-cart-item,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item + .mt-cart-item,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item + .mt-cart-item,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item + .mt-cart-item,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item + .mt-cart-item {
  border-color: var(--mt-cart-border-dark);
}
body.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-vendor,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-vendor,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-vendor,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-vendor,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-vendor,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-vendor,
body.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-unit-price,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-unit-price,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-unit-price,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-unit-price,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-unit-price,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-unit-price,
body.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-option-color,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-option-color,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-option-color,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-option-color,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-option-color,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-option-color {
  color: var(--mt-cart-muted-dark);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-title,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-title,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-title,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-title,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-title,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-title {
  color: var(--mt-cart-text-dark);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-subtitle,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-item-subtitle,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-subtitle,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-item-subtitle,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-subtitle,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-item-subtitle,
body.mt-theme-dark #mt-storefront-cart-page .mt-cart-color-value,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-color-value,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-color-value,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-color-value,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-color-value,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-color-value {
  color: var(--mt-cart-accent-dark);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-size-select,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-size-select,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-size-select,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-size-select,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-size-select,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-size-select {
  background: #101012;
  color: var(--mt-cart-text-dark);
  border-color: rgba(245, 245, 240, 0.26);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-qty,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-qty,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-qty,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-qty,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-qty,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-qty {
  border-color: rgba(245, 245, 240, 0.24);
  color: var(--mt-cart-text-dark);
  background: rgba(255, 255, 255, 0.02);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-summary h2,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-summary h2,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-summary h2,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-summary h2,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-summary h2,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-summary h2 {
  color: var(--mt-cart-accent-dark);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-discount,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-discount,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-discount,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-discount,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-discount,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-discount {
  border-top-color: var(--mt-cart-border-dark);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-discount input,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-discount input,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-discount input,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-discount input,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-discount input,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-discount input {
  border-color: rgba(245, 245, 240, 0.18);
  color: var(--mt-cart-text-dark);
  background: transparent;
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-discount input::placeholder,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-discount input::placeholder,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-discount input::placeholder,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-discount input::placeholder,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-discount input::placeholder,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-discount input::placeholder {
  color: var(--mt-cart-muted-dark);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-discount button,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-discount button,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-discount button,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-discount button,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-discount button,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-discount button {
  background: rgba(245, 245, 240, 0.92);
  color: #080808;
  border-color: rgba(245, 245, 240, 0.24);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-summary-row,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-summary-row,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-summary-row,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-summary-row,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-summary-row,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-summary-row,
body.mt-theme-dark #mt-storefront-cart-page .mt-cart-tax-note,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-tax-note,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-tax-note,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-tax-note,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-tax-note,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-tax-note {
  color: var(--mt-cart-muted-dark);
}

body.mt-theme-dark #mt-storefront-cart-page .mt-cart-checkout,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-checkout,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-checkout,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-checkout,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-checkout,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-checkout {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.32) 100%),
    #2e2e2e;
  color: var(--mt-cart-text-dark);
  border-color: rgba(245, 245, 240, 0.18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@media (max-width: 1180px) {
  #mt-storefront-cart-page .mt-cart-table-head,
  #mt-storefront-cart-page .mt-cart-item {
    grid-template-columns: minmax(0, 1fr) 190px 130px;
  }

  #mt-storefront-cart-page .mt-cart-product-cell {
    grid-template-columns: 136px minmax(0, 1fr);
    column-gap: 38px;
  }

  #mt-storefront-cart-page .mt-cart-item-image {
    width: 136px;
    height: 136px;
  }
}

@media (max-width: 820px) {
  #mt-storefront-cart-page {
    padding: calc(var(--mt-nav-height, 56px) + 28px) 18px 60px;
  }

  #mt-storefront-cart-page .mt-cart-shell {
    width: calc(100vw - 36px) !important;
    max-width: calc(100vw - 36px) !important;
  }

  #mt-storefront-cart-page .mt-cart-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  #mt-storefront-cart-page .mt-cart-table-head {
    display: none;
  }

  #mt-storefront-cart-page .mt-cart-item {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 28px 0;
  }

  #mt-storefront-cart-page .mt-cart-product-cell {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 16px;
  }

  #mt-storefront-cart-page .mt-cart-item-image {
    width: 104px;
    height: 104px;
  }

  #mt-storefront-cart-page .mt-cart-item-title {
    font-size: 16px;
  }

  #mt-storefront-cart-page .mt-cart-qty-cell {
    justify-content: start;
  }

  #mt-storefront-cart-page .mt-cart-item-price {
    text-align: left;
    padding-top: 0;
  }

  #mt-storefront-cart-page .mt-cart-summary {
    width: 100%;
  }

  #mt-storefront-cart-page .mt-cart-discount-row {
    grid-template-columns: 1fr 96px;
  }
}


/* MT SFC 1.4.0 — requested visual corrections */
#mt-storefront-cart-page {
  --mt-cart-bg-light: #ece9eb;
  background: #ece9eb;
}

body.mt-theme-light #mt-storefront-cart-page,
html.mt-theme-light #mt-storefront-cart-page,
body[data-theme="light"] #mt-storefront-cart-page,
html[data-theme="light"] #mt-storefront-cart-page,
body[data-mt-cart-theme="light"] #mt-storefront-cart-page,
html[data-mt-cart-theme="light"] #mt-storefront-cart-page {
  background: #ece9eb;
}

/* PRODUCT title and line price: same visual size and aligned */
#mt-storefront-cart-page .mt-cart-item-title {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.015em;
}

#mt-storefront-cart-page .mt-cart-item-price {
  font-size: 24px;
  line-height: 1;
  padding-top: 19px;
  letter-spacing: 0.035em;
}

/* AANTAL header centered above the quantity number/pill, not over trash icon */
#mt-storefront-cart-page .mt-cart-head-qty {
  display: block;
  width: 114px;
  text-align: center;
  justify-self: start;
  padding: 0;
}

/* Summary typography: stronger, darker light theme, less letter spacing */
#mt-storefront-cart-page .mt-cart-summary-row {
  font-size: 13px;
  letter-spacing: 0.01em;
}

#mt-storefront-cart-page .mt-cart-original-row,
#mt-storefront-cart-page .mt-cart-original-row strong {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.005em;
}

#mt-storefront-cart-page .mt-cart-shipping-row,
#mt-storefront-cart-page .mt-cart-shipping-row strong {
  font-size: 12px;
  letter-spacing: 0.005em;
}

#mt-storefront-cart-page .mt-cart-total {
  align-items: end;
  margin-bottom: 0;
}

#mt-storefront-cart-page .mt-cart-tax-note {
  display: block;
  text-align: right;
  margin-top: 2px;
  margin-bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.01em;
  opacity: 0.6;
}

/* Summary title: no highlight block */
#mt-storefront-cart-page .mt-cart-summary h2 {
  background: transparent;
  padding: 0;
}

/* Dark theme keeps same structural corrections */
body.mt-theme-dark #mt-storefront-cart-page .mt-cart-original-row,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-original-row,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-original-row,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-original-row,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-original-row,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-original-row,
body.mt-theme-dark #mt-storefront-cart-page .mt-cart-original-row strong,
html.mt-theme-dark #mt-storefront-cart-page .mt-cart-original-row strong,
body[data-theme="dark"] #mt-storefront-cart-page .mt-cart-original-row strong,
html[data-theme="dark"] #mt-storefront-cart-page .mt-cart-original-row strong,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-original-row strong,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page .mt-cart-original-row strong {
  color: #f5f5f0;
}


/* v1.5.0 — MODULE ONLY: do not own or force the entire Elementor page */
#mt-storefront-cart-page.mt-sfc-cart-page {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: visible !important;
  background: #ece9eb;
  padding: 56px 24px 72px;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-shell {
  width: min(1390px, 100%) !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.mt-theme-light #mt-storefront-cart-page.mt-sfc-cart-page,
html.mt-theme-light #mt-storefront-cart-page.mt-sfc-cart-page,
body[data-theme="light"] #mt-storefront-cart-page.mt-sfc-cart-page,
html[data-theme="light"] #mt-storefront-cart-page.mt-sfc-cart-page,
body[data-mt-cart-theme="light"] #mt-storefront-cart-page.mt-sfc-cart-page,
html[data-mt-cart-theme="light"] #mt-storefront-cart-page.mt-sfc-cart-page {
  background: #ece9eb;
  color: #111111;
}

body.mt-theme-dark #mt-storefront-cart-page.mt-sfc-cart-page,
html.mt-theme-dark #mt-storefront-cart-page.mt-sfc-cart-page,
body[data-theme="dark"] #mt-storefront-cart-page.mt-sfc-cart-page,
html[data-theme="dark"] #mt-storefront-cart-page.mt-sfc-cart-page,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page.mt-sfc-cart-page,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page.mt-sfc-cart-page {
  background: #080808;
  color: #f5f5f0;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-head-qty {
  display: block !important;
  width: 114px !important;
  text-align: center !important;
  justify-self: start !important;
  padding: 0 !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-original-row,
#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-original-row strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-shipping-row,
#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-shipping-row strong {
  font-size: 12px;
  letter-spacing: 0;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-tax-note {
  text-align: right;
}

@media (max-width: 989px) {
  #mt-storefront-cart-page.mt-sfc-cart-page {
    padding: 42px 18px 58px;
  }
}

/* v1.7.9 — WordPress drawer matched with final Shopify drawer styling */
.mt-sfc-wp-drawer-enhanced {
  --mt-cart-bg-light: #f8f8f6;
  --mt-cart-bg-dark: #080808;
  --mt-cart-text-light: #111111;
  --mt-cart-text-dark: #f5f5f0;
  --mt-cart-muted-light: #3f454a;
  --mt-cart-muted-dark: rgba(245, 245, 240, 0.68);
  --mt-cart-accent-light: #6a7278;
  --mt-cart-accent-dark: #e8c45a;
  --mt-cart-border-light: rgba(17, 17, 17, 0.13);
  --mt-cart-border-dark: rgba(245, 245, 240, 0.13);
  font-family: 'Rajdhani', sans-serif;
  box-sizing: border-box;
}

.mt-sfc-wp-drawer-enhanced,
.mt-sfc-wp-drawer-enhanced * {
  box-sizing: border-box;
}

body.mt-theme-light .mt-sfc-wp-drawer-enhanced,
html.mt-theme-light .mt-sfc-wp-drawer-enhanced,
body[data-theme="light"] .mt-sfc-wp-drawer-enhanced,
html[data-theme="light"] .mt-sfc-wp-drawer-enhanced,
body[data-mt-cart-theme="light"] .mt-sfc-wp-drawer-enhanced,
html[data-mt-cart-theme="light"] .mt-sfc-wp-drawer-enhanced {
  background: #f8f8f6 !important;
  color: #111111 !important;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced,
html[data-theme="dark"] .mt-sfc-wp-drawer-enhanced,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced,
html[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced {
  background: #080808 !important;
  color: #f5f5f0 !important;
}

.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-items,
.mt-sfc-wp-drawer-enhanced #MtStorefrontCartItems,
.mt-sfc-wp-drawer-enhanced #CartDrawer-CartItems,
.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-items] {
  padding: 0 22px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.mt-sfc-wp-drawer-enhanced.mt-sfc-wp-drawer-is-empty #mt-shopify-cart-items,
.mt-sfc-wp-drawer-enhanced.mt-sfc-wp-drawer-is-empty #MtStorefrontCartItems,
.mt-sfc-wp-drawer-enhanced.mt-sfc-wp-drawer-is-empty #CartDrawer-CartItems,
.mt-sfc-wp-drawer-enhanced.mt-sfc-wp-drawer-is-empty [data-mt-shopify-cart-items] {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.mt-sfc-drawer-line {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 15px;
  padding: 16px 0;
  align-items: stretch;
  border-bottom: 1px solid var(--mt-cart-border-light);
}

.mt-sfc-drawer-img {
  display: block;
  width: 130px;
  min-height: 130px;
  height: auto;
  align-self: stretch;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(150, 159, 165, 0.12);
  text-decoration: none;
  flex: 0 0 auto;
}

.mt-sfc-drawer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mt-sfc-drawer-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mt-sfc-drawer-vendor {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: none;
  color: var(--mt-cart-muted-light);
  margin-bottom: 3px;
}

.mt-sfc-drawer-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #33383c;
  margin-bottom: 2px;
}

.mt-sfc-drawer-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--mt-cart-accent-light);
  margin-bottom: 8px;
}

.mt-sfc-drawer-color {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  line-height: 1.15;
  color: #3f454a;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 1;
}

.mt-sfc-drawer-color span {
  font-weight: 700;
  color: #2f3438;
  font-size: 12px;
}

.mt-sfc-drawer-size-select {
  width: 76px;
  min-width: 76px;
  max-width: 76px;
  height: 22px;
  min-height: 22px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 5px;
  background: transparent;
  color: #33383c;
  padding: 0 18px 0 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  margin: 2px 0 7px;
  cursor: pointer;
}

.mt-sfc-drawer-size-select:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.mt-sfc-drawer-line-bottom {
  display: grid;
  grid-template-columns: 102px 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: auto;
}

.mt-sfc-drawer-qty {
  display: grid;
  grid-template-columns: 36px 30px 36px;
  align-items: center;
  justify-items: center;
  width: 102px;
  height: 32px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 999px;
}

.mt-sfc-drawer-qty button {
  width: 36px;
  height: 30px;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  padding: 0;
  line-height: 1;
}

.mt-sfc-drawer-qty span {
  min-width: 30px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.mt-sfc-drawer-remove {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.72;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.mt-sfc-drawer-remove:hover {
  opacity: 1;
}

.mt-sfc-drawer-remove svg {
  width: 15px;
  height: 15px;
}

.mt-sfc-drawer-price {
  text-align: right;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  justify-self: end;
}

.mt-sfc-drawer-empty {
  width: 100%;
  min-height: 220px;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #3f454a;
  text-align: center;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0.6rem !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn,
.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-checkout-btn,
.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-checkout,
.mt-sfc-wp-drawer-enhanced #MtStorefrontCartCheckout,
.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-checkout],
.mt-sfc-wp-drawer-enhanced .mt-shopify-cart-checkout {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 50px !important;
  height: 50px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50px !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn {
  grid-column: 1 !important;
  background: transparent !important;
  border: 1px solid rgba(17, 17, 17, 0.25) !important;
  color: #111111 !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-checkout-btn,
.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-checkout,
.mt-sfc-wp-drawer-enhanced #MtStorefrontCartCheckout,
.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-checkout],
.mt-sfc-wp-drawer-enhanced .mt-shopify-cart-checkout {
  grid-column: 2 !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  background: rgba(17, 17, 17, 0.85) !important;
  color: #f5f5f0 !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-checkout-btn::before,
.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-checkout::before,
.mt-sfc-wp-drawer-enhanced #MtStorefrontCartCheckout::before,
.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-checkout]::before,
.mt-sfc-wp-drawer-enhanced .mt-shopify-cart-checkout::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.12) 100%) !important;
  pointer-events: none !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-checkout-btn span,
.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-checkout span,
.mt-sfc-wp-drawer-enhanced #MtStorefrontCartCheckout span,
.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-checkout] span,
.mt-sfc-wp-drawer-enhanced .mt-shopify-cart-checkout span {
  position: relative !important;
  z-index: 1 !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-totals-label,
.mt-sfc-wp-drawer-enhanced .mt-drawer__totals-label {
  font-size: 1.08rem !important;
  letter-spacing: 0.16em !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-shipping-note,
.mt-sfc-wp-drawer-enhanced .mt-drawer__shipping-note {
  font-size: 0.9rem !important;
  line-height: 1.25 !important;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line {
  border-bottom-color: var(--mt-cart-border-dark);
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor,
body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color {
  color: #4f555a;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span {
  color: #33383c;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle {
  color: var(--mt-cart-accent-dark);
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty {
  border-color: rgba(245, 245, 240, 0.24);
  color: var(--mt-cart-text-dark);
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn {
  border-color: rgba(232, 196, 90, 0.34) !important;
  color: #f5f5f0 !important;
}

@media (max-width: 768px) {
  .mt-sfc-wp-drawer-enhanced #mt-shopify-cart-items,
  .mt-sfc-wp-drawer-enhanced #MtStorefrontCartItems,
  .mt-sfc-wp-drawer-enhanced #CartDrawer-CartItems,
  .mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-items] {
    padding: 0 16px;
  }

  .mt-sfc-drawer-line {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
  }

  .mt-sfc-drawer-img {
    width: 112px;
    min-height: 136px;
  }

  .mt-sfc-drawer-title {
    font-size: 15px;
  }

  .mt-sfc-drawer-line-bottom {
    grid-template-columns: 96px 26px minmax(0, 1fr);
    gap: 7px;
  }

  .mt-sfc-drawer-qty {
    width: 96px;
    grid-template-columns: 33px 30px 33px;
  }

  .mt-sfc-drawer-price {
    font-size: 20px;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 0.45rem !important;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn,
  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-checkout-btn,
  .mt-sfc-wp-drawer-enhanced #mt-shopify-cart-checkout,
  .mt-sfc-wp-drawer-enhanced #MtStorefrontCartCheckout,
  .mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-checkout],
  .mt-sfc-wp-drawer-enhanced .mt-shopify-cart-checkout {
    height: 44px !important;
    min-height: 44px !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.08em !important;
    padding: 0 7px !important;
  }
}

/* v1.7.1 — exact Elementor-widget output only + product title alignment fixes */
#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-qty-cell {
  padding-top: 19px !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item-price {
  padding-top: 19px !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item-title {
  line-height: 1 !important;
}

@media (max-width: 820px) {
  #mt-storefront-cart-page.mt-sfc-cart-page {
    padding: 34px 14px 52px;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-header {
    gap: 12px;
    margin-bottom: 24px;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-back {
    font-size: 11px;
    white-space: normal;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item {
    grid-template-columns: 1fr !important;
    row-gap: 12px;
    padding: 26px 0;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-product-cell {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    column-gap: 14px !important;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item-image {
    width: 96px !important;
    height: 96px !important;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-qty-cell {
    padding-top: 0 !important;
    justify-content: flex-start !important;
    display: grid;
    grid-template-columns: 114px 34px;
    column-gap: 10px;
    width: max-content;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item-price {
    padding-top: 0 !important;
    text-align: left !important;
    font-size: 22px;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-summary {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

/* v1.7.2 — compact rows, tighter quantity control and Elementor editor preview */
#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-qty-cell {
  grid-template-columns: 42px 30px 42px 28px !important;
  column-gap: 10px !important;
  align-items: start !important;
  justify-items: center !important;
  padding-top: 17px !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-qty {
  grid-column: 1 / 4 !important;
  width: 114px !important;
  min-width: 114px !important;
  height: 26px !important;
  grid-template-columns: 42px 30px 42px !important;
  align-items: center !important;
  justify-items: center !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-qty button {
  width: 42px !important;
  height: 24px !important;
  min-height: 24px !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-qty span {
  min-width: 30px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-remove {
  grid-column: 4 !important;
  width: 26px !important;
  height: 26px !important;
  min-height: 26px !important;
  align-self: start !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-remove svg {
  width: 14px !important;
  height: 14px !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item-price {
  padding-top: 17px !important;
}

#mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-head-qty {
  width: 114px !important;
  text-align: center !important;
  justify-self: start !important;
}

#mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-loading,
#mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-empty {
  display: none !important;
}

#mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-content {
  display: flex !important;
}

#mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-preview-image {
  position: relative;
  display: block;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

#mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-preview-image::before {
  content: '';
  position: absolute;
  inset: 24% 30% 18%;
  border: 3px solid rgba(255, 255, 255, 0.86);
  clip-path: polygon(50% 0, 100% 42%, 57% 100%, 43% 100%, 0 42%);
  opacity: 0.9;
}

#mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-preview-image--hoodie {
  background: linear-gradient(135deg, #d7d7d2, #efefeb 42%, #b9b9b6);
}

#mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-preview-image--tee {
  background: linear-gradient(135deg, #f6a4c8, #e868a1 48%, #f3b2cf);
}

body.mt-theme-dark #mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-preview-image,
html.mt-theme-dark #mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-preview-image,
body[data-theme="dark"] #mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-preview-image,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page[data-mt-editor-preview="1"] .mt-cart-preview-image {
  border-color: rgba(245, 245, 240, 0.08);
}

@media (max-width: 820px) {
  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-qty-cell {
    padding-top: 0 !important;
    grid-template-columns: 114px 26px !important;
    column-gap: 10px !important;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-qty {
    grid-column: 1 !important;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-remove {
    grid-column: 2 !important;
  }

  #mt-storefront-cart-page.mt-sfc-cart-page .mt-cart-item-price {
    padding-top: 0 !important;
  }
}

/* v1.8.1 — Shopify-match typography for drawer footer total + shipping note only */
.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-totals-label,
.mt-sfc-wp-drawer-enhanced .mt-drawer__totals-label,
.mt-sfc-wp-drawer-enhanced .mt-cart-totals-label,
.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-total-label],
#mt-shopify-cart.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-totals-label,
#mt-shopify-cart.mt-sfc-wp-drawer-enhanced .mt-drawer__totals-label,
#MtStorefrontCartDrawer.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-totals-label,
#MtStorefrontCartDrawer.mt-sfc-wp-drawer-enhanced .mt-drawer__totals-label,
#CartDrawer.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-totals-label,
#CartDrawer.mt-sfc-wp-drawer-enhanced .mt-drawer__totals-label {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-shipping-note,
.mt-sfc-wp-drawer-enhanced .mt-drawer__shipping-note,
.mt-sfc-wp-drawer-enhanced .mt-cart-shipping-note,
.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-shipping-note],
#mt-shopify-cart.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-shipping-note,
#mt-shopify-cart.mt-sfc-wp-drawer-enhanced .mt-drawer__shipping-note,
#MtStorefrontCartDrawer.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-shipping-note,
#MtStorefrontCartDrawer.mt-sfc-wp-drawer-enhanced .mt-drawer__shipping-note,
#CartDrawer.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-shipping-note,
#CartDrawer.mt-sfc-wp-drawer-enhanced .mt-drawer__shipping-note {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: inherit !important;
  line-height: 1.25 !important;
}



/* v1.8.3 — WordPress drawer stays below the global header so the menu remains visible. */
.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced {
  position: fixed !important;
  top: var(--mt-nav-height, 56px) !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  inset: var(--mt-nav-height, 56px) 0 0 0 !important;
  height: calc(100dvh - var(--mt-nav-height, 56px)) !important;
  min-height: calc(100dvh - var(--mt-nav-height, 56px)) !important;
  max-height: calc(100dvh - var(--mt-nav-height, 56px)) !important;
  z-index: 999999 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  background: transparent !important;
  color: var(--mt-cart-text-light) !important;
}

.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced.active,
.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced.is-open {
  visibility: visible !important;
  pointer-events: auto !important;
}

.mt-sfc-wp-drawer-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.28) !important;
  opacity: 0 !important;
  transition: opacity 0.22s ease !important;
}

.mt-sfc-wp-drawer-shell.active .mt-sfc-wp-drawer-overlay,
.mt-sfc-wp-drawer-shell.is-open .mt-sfc-wp-drawer-overlay {
  opacity: 1 !important;
}

.mt-sfc-wp-drawer-panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 500px !important;
  max-width: 100vw !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  background: #f8f8f6 !important;
  color: #111111 !important;
  transform: translateX(100%) !important;
  transition: transform 0.26s ease !important;
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.18) !important;
  overflow: hidden !important;
}

.mt-sfc-wp-drawer-shell.active .mt-sfc-wp-drawer-panel,
.mt-sfc-wp-drawer-shell.is-open .mt-sfc-wp-drawer-panel {
  transform: translateX(0) !important;
}

body.mt-theme-dark .mt-sfc-wp-drawer-panel,
html.mt-theme-dark .mt-sfc-wp-drawer-panel,
body[data-theme="dark"] .mt-sfc-wp-drawer-panel,
html[data-theme="dark"] .mt-sfc-wp-drawer-panel,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-panel,
html[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-panel {
  background: #080808 !important;
  color: #f5f5f0 !important;
}

body.mt-theme-light .mt-sfc-wp-drawer-panel,
html.mt-theme-light .mt-sfc-wp-drawer-panel,
body[data-theme="light"] .mt-sfc-wp-drawer-panel,
html[data-theme="light"] .mt-sfc-wp-drawer-panel,
body[data-mt-cart-theme="light"] .mt-sfc-wp-drawer-panel,
html[data-mt-cart-theme="light"] .mt-sfc-wp-drawer-panel {
  background: #f8f8f6 !important;
  color: #111111 !important;
}

.mt-sfc-wp-drawer-header {
  flex: 0 0 auto !important;
  width: 100% !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  padding: 1.4rem 1.6rem 1.1rem !important;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15) !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

.mt-sfc-wp-drawer-header-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

.mt-sfc-wp-drawer-header-sub {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  opacity: 0.55 !important;
  line-height: 1 !important;
  margin-bottom: 0.1rem !important;
}

.mt-sfc-wp-drawer-header-title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 2.6rem !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}

.mt-sfc-wp-drawer-close {
  flex: 0 0 auto !important;
  margin-top: 0.3rem !important;
  margin-left: auto !important;
  padding: 0.3rem !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  opacity: 0.5 !important;
  color: inherit !important;
}

.mt-sfc-wp-drawer-items {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  padding: 0 1.6rem !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
}

.mt-sfc-wp-drawer-footer {
  flex: 0 0 auto !important;
  margin-top: auto !important;
  padding: 1.1rem 1.6rem 1.4rem !important;
  border-top: 1px solid rgba(128, 128, 128, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.mt-sfc-wp-drawer-totals {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
}

.mt-sfc-wp-drawer-total-value {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.9rem !important;
  letter-spacing: 0.04em !important;
}

@media (max-width: 768px) {
  .mt-sfc-wp-drawer-panel {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .mt-sfc-wp-drawer-items {
    padding: 0 16px !important;
  }

  .mt-sfc-wp-drawer-footer {
    padding: 1rem 16px 18px !important;
  }
}

/* v1.8.4 — keep WordPress page/header visible while the drawer opens below the global menu. */
html {
  --mt-sfc-wp-drawer-top: var(--mt-nav-height, 56px);
}

body.mt-sfc-wp-drawer-open #mt-global-header-root,
body.mt-sfc-wp-drawer-open #mt-gh-header,
body.mt-sfc-wp-drawer-open #mt-gh-mobile,
body.mt-sfc-wp-drawer-open .mt-gh-header,
body.mt-sfc-wp-drawer-open .mt-gh-mobile {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 2147483000 !important;
}

body.mt-sfc-wp-drawer-open #mt-gh-header,
body.mt-sfc-wp-drawer-open #mt-gh-mobile,
body.mt-sfc-wp-drawer-open .mt-gh-header,
body.mt-sfc-wp-drawer-open .mt-gh-mobile {
  position: fixed !important;
}

#mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
body.mt-theme-light #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
html.mt-theme-light #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
body[data-theme="light"] #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
html[data-theme="light"] #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
body[data-mt-cart-theme="light"] #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
html[data-mt-cart-theme="light"] #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
body.mt-theme-dark #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
html.mt-theme-dark #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
body[data-theme="dark"] #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
html[data-theme="dark"] #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
body[data-mt-cart-theme="dark"] #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced,
html[data-mt-cart-theme="dark"] #mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced {
  position: fixed !important;
  top: var(--mt-sfc-wp-drawer-top, var(--mt-nav-height, 56px)) !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  inset: var(--mt-sfc-wp-drawer-top, var(--mt-nav-height, 56px)) 0 0 0 !important;
  width: 100vw !important;
  height: calc(100dvh - var(--mt-sfc-wp-drawer-top, var(--mt-nav-height, 56px))) !important;
  min-height: calc(100dvh - var(--mt-sfc-wp-drawer-top, var(--mt-nav-height, 56px))) !important;
  max-height: calc(100dvh - var(--mt-sfc-wp-drawer-top, var(--mt-nav-height, 56px))) !important;
  z-index: 2147482500 !important;
  background: transparent !important;
  pointer-events: none !important;
  color: inherit !important;
}

#mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced.active,
#mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced.is-open {
  visibility: visible !important;
  pointer-events: auto !important;
}

#mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced .mt-sfc-wp-drawer-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.18) !important;
  pointer-events: auto !important;
}

#mt-shopify-cart.mt-sfc-wp-drawer-shell.mt-sfc-wp-drawer-enhanced .mt-sfc-wp-drawer-panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  pointer-events: auto !important;
}

/* v1.8.6 — exact visual sync from Shopify Storefront Cart/Drawer Enhancer v1.7.8.
   Styling only: no API, JS, cart flow, cookie, localStorage, checkoutUrl or redirect changes. */
#mt-storefront-cart-page,
#mt-storefront-cart-page.mt-sfc-cart-page,
.mt-sfc-cart-page,
.mt-sfc-wp-drawer-enhanced,
.mt-sfc-wp-drawer-panel,
.mt-sfc-wp-drawer-enhanced * {
  box-sizing: border-box !important;
}

#mt-storefront-cart-page,
#mt-storefront-cart-page.mt-sfc-cart-page,
.mt-sfc-cart-page,
.mt-sfc-wp-drawer-enhanced,
.mt-sfc-wp-drawer-panel {
  --mt-cart-bg-light: #f8f8f6 !important;
  --mt-cart-bg-dark: #080808 !important;
  --mt-cart-text-light: #111111 !important;
  --mt-cart-text-dark: #f5f5f0 !important;
  --mt-cart-muted-light: #555b60 !important;
  --mt-cart-muted-dark: rgba(245, 245, 240, 0.58) !important;
  --mt-cart-accent-light: #6a7278 !important;
  --mt-cart-accent-dark: #e8c45a !important;
  --mt-cart-border-light: rgba(17, 17, 17, 0.13) !important;
  --mt-cart-border-dark: rgba(245, 245, 240, 0.13) !important;
  font-family: 'Rajdhani', sans-serif !important;
}

#mt-storefront-cart-page,
#mt-storefront-cart-page.mt-sfc-cart-page,
body.mt-theme-light #mt-storefront-cart-page,
html.mt-theme-light #mt-storefront-cart-page,
body[data-theme="light"] #mt-storefront-cart-page,
html[data-theme="light"] #mt-storefront-cart-page,
body[data-mt-cart-theme="light"] #mt-storefront-cart-page,
html[data-mt-cart-theme="light"] #mt-storefront-cart-page,
body.mt-theme-light .mt-sfc-wp-drawer-enhanced,
html.mt-theme-light .mt-sfc-wp-drawer-enhanced,
body[data-theme="light"] .mt-sfc-wp-drawer-enhanced,
html[data-theme="light"] .mt-sfc-wp-drawer-enhanced,
body[data-mt-cart-theme="light"] .mt-sfc-wp-drawer-enhanced,
html[data-mt-cart-theme="light"] .mt-sfc-wp-drawer-enhanced,
body.mt-theme-light .mt-sfc-wp-drawer-panel,
html.mt-theme-light .mt-sfc-wp-drawer-panel,
body[data-theme="light"] .mt-sfc-wp-drawer-panel,
html[data-theme="light"] .mt-sfc-wp-drawer-panel,
body[data-mt-cart-theme="light"] .mt-sfc-wp-drawer-panel,
html[data-mt-cart-theme="light"] .mt-sfc-wp-drawer-panel {
  background: #f8f8f6 !important;
  color: #111111 !important;
}

body.mt-theme-dark #mt-storefront-cart-page,
html.mt-theme-dark #mt-storefront-cart-page,
body[data-theme="dark"] #mt-storefront-cart-page,
html[data-theme="dark"] #mt-storefront-cart-page,
body[data-mt-cart-theme="dark"] #mt-storefront-cart-page,
html[data-mt-cart-theme="dark"] #mt-storefront-cart-page,
body.mt-theme-dark .mt-sfc-wp-drawer-enhanced,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced,
html[data-theme="dark"] .mt-sfc-wp-drawer-enhanced,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced,
html[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced,
body.mt-theme-dark .mt-sfc-wp-drawer-panel,
html.mt-theme-dark .mt-sfc-wp-drawer-panel,
body[data-theme="dark"] .mt-sfc-wp-drawer-panel,
html[data-theme="dark"] .mt-sfc-wp-drawer-panel,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-panel,
html[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-panel {
  background: #080808 !important;
  color: #f5f5f0 !important;
}

#mt-shopify-cart.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-items,
#mt-shopify-cart.mt-sfc-wp-drawer-enhanced #MtStorefrontCartItems,
#mt-shopify-cart.mt-sfc-wp-drawer-enhanced #CartDrawer-CartItems,
#mt-shopify-cart.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-items],
.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-items,
.mt-sfc-wp-drawer-enhanced #MtStorefrontCartItems,
.mt-sfc-wp-drawer-enhanced #CartDrawer-CartItems,
.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-items],
.mt-sfc-wp-drawer-items {
  padding: 0 22px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line,
#mt-shopify-cart .mt-sfc-drawer-line {
  display: grid !important;
  grid-template-columns: 126px minmax(0, 1fr) !important;
  gap: 15px !important;
  padding: 16px 0 !important;
  align-items: stretch !important;
  border-bottom: 1px solid var(--mt-cart-border-light) !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-img,
#mt-shopify-cart .mt-sfc-drawer-img {
  display: block !important;
  width: 126px !important;
  height: 100% !important;
  min-height: 146px !important;
  align-self: stretch !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: rgba(150, 159, 165, 0.12) !important;
  text-decoration: none !important;
  flex: 0 0 126px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-img img,
#mt-shopify-cart .mt-sfc-drawer-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-info,
#mt-shopify-cart .mt-sfc-drawer-info {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor,
#mt-shopify-cart .mt-sfc-drawer-vendor {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: none !important;
  color: var(--mt-cart-muted-light) !important;
  margin-bottom: 3px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
#mt-shopify-cart .mt-sfc-drawer-title {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  line-height: 1.05 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  color: #33383c !important;
  margin-bottom: 2px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle,
#mt-shopify-cart .mt-sfc-drawer-subtitle {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  color: var(--mt-cart-accent-light) !important;
  margin-bottom: 8px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color,
.mt-sfc-wp-drawer-enhanced .mt-drawer__item-option,
.mt-sfc-wp-drawer-enhanced .product-option,
.mt-sfc-wp-drawer-enhanced .cart-item__details dl,
.mt-sfc-wp-drawer-enhanced .cart-item__details dd,
.mt-sfc-wp-drawer-enhanced .cart-item__details dt,
#mt-shopify-cart .mt-sfc-drawer-color,
#mt-shopify-cart .mt-drawer__item-option,
#mt-shopify-cart .product-option,
#mt-shopify-cart .cart-item__details dl,
#mt-shopify-cart .cart-item__details dd,
#mt-shopify-cart .cart-item__details dt {
  color: #3f454a !important;
  opacity: 1 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin-bottom: 6px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span,
#mt-shopify-cart .mt-sfc-drawer-color span {
  color: #2f3438 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
.mt-sfc-wp-drawer-enhanced .mt-drawer__size-select,
#mt-shopify-cart .mt-sfc-drawer-size-select,
#mt-shopify-cart .mt-drawer__size-select {
  width: 76px !important;
  min-width: 76px !important;
  max-width: 76px !important;
  height: 22px !important;
  min-height: 22px !important;
  border: 1px solid rgba(17, 17, 17, 0.24) !important;
  border-radius: 5px !important;
  background: transparent !important;
  color: #33383c !important;
  padding: 0 18px 0 7px !important;
  margin: 2px 0 7px !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select:disabled,
#mt-shopify-cart .mt-sfc-drawer-size-select:disabled {
  opacity: 0.48 !important;
  cursor: not-allowed !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line-bottom,
#mt-shopify-cart .mt-sfc-drawer-line-bottom {
  display: grid !important;
  grid-template-columns: 102px 28px minmax(0, 1fr) !important;
  gap: 8px !important;
  align-items: center !important;
  margin-top: auto !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty,
#mt-shopify-cart .mt-sfc-drawer-qty {
  display: grid !important;
  grid-template-columns: 36px 30px 36px !important;
  align-items: center !important;
  justify-items: center !important;
  width: 102px !important;
  height: 32px !important;
  border: 1px solid rgba(17, 17, 17, 0.22) !important;
  border-radius: 999px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty button,
#mt-shopify-cart .mt-sfc-drawer-qty button {
  width: 36px !important;
  height: 30px !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 17px !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty span,
.mt-sfc-wp-drawer-enhanced .mt-drawer__qty-num,
.mt-sfc-wp-drawer-enhanced quantity-input input,
.mt-sfc-wp-drawer-enhanced .quantity__input,
#mt-shopify-cart .mt-sfc-drawer-qty span,
#mt-shopify-cart .mt-drawer__qty-num,
#mt-shopify-cart quantity-input input,
#mt-shopify-cart .quantity__input {
  min-width: 30px !important;
  text-align: center !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-remove,
#mt-shopify-cart .mt-sfc-drawer-remove {
  width: 28px !important;
  height: 28px !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  opacity: 0.72 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-remove:hover,
#mt-shopify-cart .mt-sfc-drawer-remove:hover {
  opacity: 1 !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-remove svg,
#mt-shopify-cart .mt-sfc-drawer-remove svg {
  width: 15px !important;
  height: 15px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-price,
#mt-shopify-cart .mt-sfc-drawer-price {
  text-align: right !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 23px !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
  justify-self: end !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-empty,
#mt-shopify-cart .mt-sfc-drawer-empty {
  min-height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: #3f454a !important;
}

.mt-sfc-wp-drawer-footer {
  padding: 0 22px 22px !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"],
#mt-shopify-cart .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"],
.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row,
#mt-shopify-cart .mt-sfc-drawer-cta-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 8px !important;
  align-items: stretch !important;
  width: 100% !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-view-cart-btn,
.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-checkout-btn,
#mt-shopify-cart .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-view-cart-btn,
#mt-shopify-cart .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-checkout-btn,
.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn,
.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-checkout-btn,
.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-checkout,
#mt-shopify-cart .mt-sfc-drawer-view-cart-btn,
#mt-shopify-cart .mt-sfc-drawer-checkout-btn,
#mt-shopify-cart #mt-shopify-cart-checkout {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-decoration: none !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-view-cart-btn,
#mt-shopify-cart .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-view-cart-btn,
.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn,
#mt-shopify-cart .mt-sfc-drawer-view-cart-btn {
  grid-column: 1 !important;
  background: transparent !important;
  color: #111111 !important;
  border: 1px solid rgba(17, 17, 17, 0.20) !important;
}

.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-checkout-btn,
#mt-shopify-cart .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-checkout-btn,
.mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-checkout-btn,
.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-checkout,
#mt-shopify-cart .mt-sfc-drawer-checkout-btn,
#mt-shopify-cart #mt-shopify-cart-checkout {
  grid-column: 2 !important;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line {
  border-bottom-color: var(--mt-cart-border-dark) !important;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-vendor {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  color: #4f555a !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-color span {
  font-weight: 800 !important;
  color: #33383c !important;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-subtitle {
  color: var(--mt-cart-accent-dark) !important;
}

body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
body.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
html.mt-theme-dark .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
body[data-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-size-select,
body[data-mt-cart-theme="dark"] .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty {
  border-color: rgba(245, 245, 240, 0.24) !important;
  color: var(--mt-cart-text-dark) !important;
}

@media (max-width: 768px) {
  #mt-shopify-cart.mt-sfc-wp-drawer-enhanced #mt-shopify-cart-items,
  #mt-shopify-cart.mt-sfc-wp-drawer-enhanced #MtStorefrontCartItems,
  #mt-shopify-cart.mt-sfc-wp-drawer-enhanced #CartDrawer-CartItems,
  #mt-shopify-cart.mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-items],
  .mt-sfc-wp-drawer-enhanced #mt-shopify-cart-items,
  .mt-sfc-wp-drawer-enhanced #MtStorefrontCartItems,
  .mt-sfc-wp-drawer-enhanced #CartDrawer-CartItems,
  .mt-sfc-wp-drawer-enhanced [data-mt-shopify-cart-items],
  .mt-sfc-wp-drawer-items {
    padding: 0 16px !important;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line,
  #mt-shopify-cart .mt-sfc-drawer-line {
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 15px 0 !important;
    align-items: stretch !important;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-img,
  #mt-shopify-cart .mt-sfc-drawer-img {
    width: 112px !important;
    flex-basis: 112px !important;
    min-height: 136px !important;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-title,
  #mt-shopify-cart .mt-sfc-drawer-title {
    font-size: 15px !important;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-line-bottom,
  #mt-shopify-cart .mt-sfc-drawer-line-bottom {
    grid-template-columns: 96px 26px minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-qty,
  #mt-shopify-cart .mt-sfc-drawer-qty {
    width: 96px !important;
    grid-template-columns: 33px 30px 33px !important;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-price,
  #mt-shopify-cart .mt-sfc-drawer-price {
    font-size: 20px !important;
  }

  .mt-sfc-wp-drawer-footer {
    padding: 0 16px 18px !important;
  }

  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-view-cart-btn,
  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-checkout-btn,
  #mt-shopify-cart .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-view-cart-btn,
  #mt-shopify-cart .mt-sfc-drawer-cta-row[data-mt-sfc-actions="true"] .mt-sfc-drawer-checkout-btn,
  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-view-cart-btn,
  .mt-sfc-wp-drawer-enhanced .mt-sfc-drawer-checkout-btn,
  .mt-sfc-wp-drawer-enhanced #mt-shopify-cart-checkout,
  #mt-shopify-cart .mt-sfc-drawer-view-cart-btn,
  #mt-shopify-cart .mt-sfc-drawer-checkout-btn,
  #mt-shopify-cart #mt-shopify-cart-checkout {
    font-size: 11px !important;
    letter-spacing: 0.01em !important;
    padding: 0 8px !important;
  }
}
