/**
 * F0.3 WooCommerce brand layer (replaces default WC colors/styles)
 */

.mb-page--commerce .woocommerce,
.woocommerce {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--mb-font-body);
}

.woocommerce::after,
.woocommerce::before {
  display: none;
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.cart-empty {
  list-style: none;
  margin: 0 0 var(--mb-s5);
  padding: var(--mb-s4) var(--mb-s5);
  border-radius: var(--mb-radius-input);
  border: 1px solid var(--mb-border);
  background: var(--mb-surface-glass);
  color: var(--mb-white);
  font-size: var(--mb-body-14);
  line-height: 1.5;
}

.woocommerce-message {
  border-color: rgba(129, 4, 203, 0.45);
  background: rgba(129, 4, 203, 0.16);
}

.woocommerce-info {
  border-color: rgba(255, 255, 255, 0.18);
}

.woocommerce-error {
  border-color: rgba(255, 80, 120, 0.45);
  background: rgba(255, 80, 120, 0.12);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: var(--mb-white);
  text-decoration: underline;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--mb-btn-height);
  padding: 0 var(--mb-s6);
  border: none;
  border-radius: var(--mb-radius-pill);
  background: var(--mb-grad);
  color: var(--mb-white) !important;
  box-shadow: var(--mb-glow-button);
  font-family: var(--mb-font-body);
  font-size: var(--mb-body-16);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover {
  background: var(--mb-grad-hover);
  color: var(--mb-white) !important;
  transform: translateY(-1px);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #place_order,
.woocommerce .checkout-button {
  background: var(--mb-grad);
  color: var(--mb-white) !important;
}

.woocommerce a.button.disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce input.button:disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Forms */
.woocommerce form .form-row label {
  display: block;
  margin-bottom: var(--mb-s2);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--mb-body-14);
  font-weight: 600;
}

.woocommerce form .form-row .required {
  color: var(--mb-magenta);
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container .select2-selection--single {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--mb-radius-input);
  background: rgba(255, 255, 255, 0.06);
  color: var(--mb-white);
  font-family: var(--mb-font-body);
  font-size: var(--mb-body-16);
  box-shadow: none;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  outline: none;
  border-color: rgba(255, 0, 187, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 0, 187, 0.15);
}

.woocommerce input.input-text::placeholder,
.woocommerce textarea::placeholder {
  color: var(--mb-muted);
}

/* Tables */
.woocommerce table.shop_table,
.woocommerce-cart table.cart,
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--mb-border);
  border-radius: var(--mb-radius-card);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px 16px;
  border-top: 1px solid var(--mb-border);
  color: rgba(255, 255, 255, 0.92);
  vertical-align: middle;
}

.woocommerce table.shop_table thead th {
  background: rgba(255, 255, 255, 0.06);
  border-top: none;
  font-size: var(--mb-body-12);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.woocommerce table.shop_table td.product-name a {
  color: var(--mb-white);
  font-weight: 600;
}

.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal,
.woocommerce table.shop_table td.order-total {
  color: var(--mb-white);
  font-weight: 600;
}

.woocommerce .cart-collaterals,
.woocommerce .cart_totals,
.woocommerce-checkout #order_review {
  margin-top: var(--mb-s6);
  padding: var(--mb-s5);
  border: 1px solid var(--mb-border);
  border-radius: var(--mb-radius-card);
  background: rgba(255, 255, 255, 0.04);
}

.woocommerce .cart_totals h2,
.woocommerce-checkout h3 {
  font-family: var(--mb-font-heading);
  font-size: var(--mb-title-20);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--mb-white);
  margin: 0 0 var(--mb-s4);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: var(--mb-s7);
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--mb-radius-pill);
  background: transparent;
  color: var(--mb-white);
  font-size: var(--mb-body-14);
  font-weight: 600;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--mb-white);
  color: var(--mb-dark);
  border-color: var(--mb-white);
}

/* Misc */
.woocommerce .quantity .qty {
  min-height: 44px;
  width: 72px;
  text-align: center;
  border-radius: var(--mb-radius-input);
  background: rgba(255, 255, 255, 0.06);
  color: var(--mb-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.woocommerce .price,
.woocommerce ul.products li.product .price {
  color: var(--mb-white);
  font-weight: 700;
}

.woocommerce .price del {
  color: var(--mb-muted);
  opacity: 1;
}

.woocommerce .price ins {
  text-decoration: none;
  color: var(--mb-magenta);
}

.woocommerce a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--mb-white) !important;
  font-weight: 700;
  line-height: 1;
}

.woocommerce a.remove:hover {
  background: rgba(255, 80, 120, 0.2);
  border-color: rgba(255, 80, 120, 0.55);
  color: var(--mb-white) !important;
}

.woocommerce-breadcrumb {
  margin-bottom: var(--mb-s5);
  color: var(--mb-muted);
  font-size: var(--mb-body-14);
}

.woocommerce-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.woocommerce-breadcrumb a:hover {
  color: var(--mb-white);
}

/* Cart page layout (table + summary sidebar) */
.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(380px, 34%);
  gap: var(--mb-s7);
  align-items: start;
}

.woocommerce-cart .woocommerce-notices-wrapper {
  grid-column: 1 / -1;
}

.woocommerce-cart-form {
  grid-column: 1;
  min-width: 0;
}

.woocommerce-cart .cart-collaterals {
  grid-column: 2;
  margin: 0;
}

.woocommerce-cart .cart_totals {
  position: sticky;
  top: calc(var(--mb-header-offset, 96px) + var(--mb-s4));
  margin-top: 0;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
  margin-top: var(--mb-s5);
  padding-top: 0;
}

.woocommerce-cart .cart_totals .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: flex;
  width: 100%;
  min-height: var(--mb-btn-height);
  margin: 0;
  justify-content: center;
}

.woocommerce-cart .cart_totals table {
  margin: 0;
  border: none;
  background: transparent;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 10px 0;
  border: none;
  border-top: 1px solid var(--mb-border);
  background: transparent;
}

.woocommerce-cart .cart_totals table tr:first-child th,
.woocommerce-cart .cart_totals table tr:first-child td {
  border-top: none;
}

.woocommerce-cart .cart_totals table th {
  font-size: var(--mb-body-14);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: none;
  letter-spacing: 0;
}

.woocommerce-cart .cart_totals table td {
  text-align: right;
  font-weight: 700;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  padding-top: var(--mb-s4);
  font-size: var(--mb-body-16);
  color: var(--mb-white);
}

.woocommerce-cart .cart_totals .cart-discount th,
.woocommerce-cart .cart_totals .cart-discount td {
  color: #2dd4a8;
}

.woocommerce-cart .cart_totals .cart-discount td {
  font-weight: 600;
}

.mb-coupon-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--mb-radius-pill);
  border: 1px solid rgba(45, 212, 168, 0.35);
  background: rgba(45, 212, 168, 0.12);
  color: #2dd4a8;
  font-size: var(--mb-body-12);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mb-checkout-totals__row--discount dt,
.mb-checkout-totals__row--discount dd {
  color: #2dd4a8;
}

/* Cart toolbar under line items */
.woocommerce-cart table.cart td.actions {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--mb-border);
}

.woocommerce-cart table.cart td.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 20px;
}

.woocommerce-cart .mb-cart-promo-toggle {
  margin-right: auto;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mb-font-body);
  font-size: var(--mb-body-14);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  box-shadow: none;
  min-height: 0;
  text-transform: none;
}

.woocommerce-cart .mb-cart-promo-toggle:hover {
  color: rgba(255, 255, 255, 0.78);
  transform: none;
  background: none;
}

.woocommerce-cart .mb-cart-coupon.is-collapsed {
  display: none;
}

.woocommerce-cart .mb-cart-coupon {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  max-width: none;
  margin: 0 auto 0 0;
}

.woocommerce-cart .coupon:not(.mb-cart-coupon) {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.woocommerce-cart .coupon label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.woocommerce-cart .coupon #coupon_code,
.woocommerce-cart .coupon .input-text {
  width: auto !important;
  flex: 0 1 168px;
  max-width: 168px;
  min-height: 36px;
  padding: 7px 12px;
  font-size: var(--mb-body-14);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.woocommerce-cart .coupon #coupon_code:focus {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.woocommerce-cart .coupon #coupon_code::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.woocommerce-cart .coupon .button,
.woocommerce-cart .coupon button[name="apply_coupon"] {
  min-height: 36px;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--mb-radius-input);
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: var(--mb-body-12);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.woocommerce-cart .coupon .button:hover,
.woocommerce-cart .coupon button[name="apply_coupon"]:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75) !important;
  transform: none;
  box-shadow: none;
}

.woocommerce-cart td.actions > .button,
.woocommerce-cart td.actions button[name="update_cart"] {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: var(--mb-body-13, 13px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-cart td.actions > .button:hover,
.woocommerce-cart td.actions button[name="update_cart"]:hover {
  background: none;
  color: rgba(255, 255, 255, 0.82) !important;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
    gap: var(--mb-s5);
  }

  .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    grid-column: 1;
  }

  .woocommerce-cart .cart_totals {
    position: static;
  }

  .woocommerce-cart table.cart td.actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .woocommerce-cart .mb-cart-promo-toggle,
  .woocommerce-cart .mb-cart-coupon,
  .woocommerce-cart .coupon:not(.mb-cart-coupon) {
    margin-right: 0;
    width: 100%;
  }

  .woocommerce-cart .mb-cart-coupon,
  .woocommerce-cart .coupon:not(.mb-cart-coupon) {
    flex-wrap: wrap;
  }

  .woocommerce-cart .coupon #coupon_code,
  .woocommerce-cart .coupon .input-text {
    flex: 1 1 auto;
    max-width: none;
  }

  .woocommerce-cart td.actions > .button,
  .woocommerce-cart td.actions button[name="update_cart"] {
    align-self: flex-end;
  }

  .woocommerce table.shop_table thead {
    display: none;
  }

  .woocommerce table.shop_table tr {
    display: block;
    margin-bottom: var(--mb-s4);
    border: 1px solid var(--mb-border);
    border-radius: var(--mb-radius-input);
    overflow: hidden;
  }

  .woocommerce table.shop_table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--mb-border);
  }

  .woocommerce table.shop_table td::before {
    content: attr(data-title);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    font-size: var(--mb-body-12);
  }
}

/* F1.3 Empty cart */
.mb-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--mb-s4);
  max-width: 560px;
  margin: 0 auto;
  padding: var(--mb-s7) var(--mb-s6);
  text-align: left;
}

.mb-cart-empty__title {
  margin: 0;
  font-family: var(--mb-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mb-white);
}

.mb-cart-empty__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--mb-body-16);
  line-height: 1.55;
}

.woocommerce-cart .woocommerce-info.wc-empty-cart-message,
.woocommerce-cart p.cart-empty {
  display: none;
}

/* F1.3 Mini-cart drawer */
body.mb-mini-cart-open {
  overflow: hidden;
}

.mb-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  justify-content: flex-end;
}

.mb-mini-cart[hidden] {
  display: none;
}

.mb-mini-cart__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.mb-mini-cart__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  max-width: 100%;
  height: 100%;
  border-left: 1px solid var(--mb-border);
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.98) 0%, rgba(10, 10, 12, 0.98) 100%);
  box-shadow: -24px 0 48px rgba(0, 0, 0, 0.45);
}

.mb-mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--mb-s4);
  padding: var(--mb-s5) var(--mb-s5) var(--mb-s4);
  border-bottom: 1px solid var(--mb-border);
}

.mb-mini-cart__title {
  margin: 0;
  font-family: var(--mb-font-display);
  font-size: var(--mb-body-18, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mb-white);
}

.mb-mini-cart__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--mb-radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mb-mini-cart__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.mb-mini-cart__body {
  flex: 1 1 auto;
  overflow: auto;
  padding: var(--mb-s4) var(--mb-s5);
}

.mb-mini-cart__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-mini-cart__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: var(--mb-s4);
  align-items: start;
  padding: var(--mb-s4) 0;
  border-bottom: 1px solid var(--mb-border);
}

.mb-mini-cart__item:last-child {
  border-bottom: none;
}

.mb-mini-cart__thumb {
  display: block;
  overflow: hidden;
  border-radius: var(--mb-radius-input);
  border: 1px solid var(--mb-border);
}

.mb-mini-cart__thumb img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.mb-mini-cart__item-body {
  min-width: 0;
}

.mb-mini-cart__item-name {
  display: block;
  margin-bottom: 6px;
  color: var(--mb-white);
  font-size: var(--mb-body-14);
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.mb-mini-cart__item-name:hover {
  color: rgba(255, 255, 255, 0.85);
}

.mb-mini-cart__item-meta {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--mb-body-13, 13px);
}

.mb-mini-cart__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--mb-radius-pill);
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 22px;
  line-height: 1;
  text-decoration: none !important;
}

.mb-mini-cart__remove:hover {
  background: rgba(255, 80, 120, 0.14);
  color: #ff7896 !important;
}

.mb-mini-cart__footer {
  margin-top: var(--mb-s4);
  padding-top: var(--mb-s4);
  border-top: 1px solid var(--mb-border);
}

.mb-mini-cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--mb-s4);
  margin: 0 0 var(--mb-s4);
  padding: 0;
  border: none;
  background: none;
  color: var(--mb-white);
  font-size: var(--mb-body-16);
}

.mb-mini-cart__total strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.mb-mini-cart__total span {
  font-weight: 700;
}

.mb-mini-cart__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--mb-s3);
  margin: 0;
}

.mb-mini-cart__actions .mb-btn {
  width: 100%;
  min-height: 44px;
  padding-inline: var(--mb-s4);
  font-size: var(--mb-body-14);
}

.mb-mini-cart__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--mb-s5);
  padding: var(--mb-s6) 0;
}

.mb-mini-cart__empty-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--mb-body-15, 15px);
  line-height: 1.5;
}

/* F1.3 Mobile sticky checkout bar */
.mb-cart-mobile-bar {
  display: none;
}

@media (max-width: 768px) {
  .mb-cart-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mb-s4);
    padding: var(--mb-s4) var(--mb-s5);
    padding-bottom: calc(var(--mb-s4) + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--mb-border);
    background: rgba(10, 10, 12, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.35);
  }

  body.mb-cart-has-items .woocommerce-cart .mb-page--commerce {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .mb-cart-mobile-bar__total {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .mb-cart-mobile-bar__label {
    color: rgba(255, 255, 255, 0.58);
    font-size: var(--mb-body-12);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .mb-cart-mobile-bar__value {
    color: var(--mb-white);
    font-size: var(--mb-body-18, 18px);
    font-weight: 700;
    line-height: 1.2;
  }

  .mb-cart-mobile-bar__cta {
    flex: 0 0 auto;
    min-width: 148px;
    min-height: 48px;
    padding-inline: var(--mb-s5);
    white-space: nowrap;
  }
}
