/* ============================================================
   UrbWellness — Cart + Checkout re-skin
   Matches the Yuva/UrbWellness replica tokens.
   Covers WooCommerce 10 BLOCK cart/checkout (.wc-block-*)
   plus a classic-shortcode fallback (.woocommerce-cart /
   .woocommerce-checkout tables & forms).
   Everything is scoped under the cart/checkout page or block
   wrappers so styles never bleed into the rest of the site.
   ============================================================ */

/* ------------------------------------------------------------
   0. Page frame / typography
   ------------------------------------------------------------ */
.woocommerce-cart .wrap,
.woocommerce-checkout .wrap {
  padding-top: 40px;
  padding-bottom: 64px;
}

/* Cart/checkout render through the generic page template, which wraps
   content in .entry — a 760px reading column sized for paragraphs of text
   (About/FAQs/policies). A two-column checkout form + order-summary layout
   needs real width, not an article column: it was rendering main+sidebar
   squeezed into 760px total even on a wide screen, which is why the product
   name/variation text in the sidebar was wrapping mid-word. Let it use the
   same max-width as the rest of the site (--container) instead. */
.woocommerce-cart .entry,
.woocommerce-checkout .entry {
  max-width: var(--container);
}

.woocommerce-cart h1,
.woocommerce-cart h2,
.woocommerce-cart h3,
.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3,
.wc-block-cart .wp-block-heading,
.wc-block-checkout .wp-block-heading,
.wc-block-components-title,
.wc-block-components-checkout-step__title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  text-transform: none;
  letter-spacing: 0;
}

.woocommerce-cart .page-title,
.woocommerce-checkout .page-title {
  font-size: 30px;
  margin-bottom: 28px;
}

.wc-block-cart,
.wc-block-checkout,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 15px;
}

/* Section step titles (block checkout) */
.wc-block-components-checkout-step__title {
  font-size: 19px;
}
.wc-block-components-checkout-step__heading-content {
  color: var(--muted);
}

/* ------------------------------------------------------------
   1. Buttons — olive, 6px radius, uppercase Poppins
   ------------------------------------------------------------ */
.woocommerce-cart .button,
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-components-button,
.woocommerce-checkout .button,
.woocommerce-checkout .wc-block-components-button,
.wc-block-cart .wc-block-cart__submit-button,
.wc-block-cart .wc-block-components-button,
.wc-block-checkout .wc-block-components-button,
.wc-block-checkout__actions_row .wc-block-components-button,
.wc-block-components-checkout-place-order-button,
/* block empty-cart CTA + any block add-to-cart (not .wc-block-components-button,
   so covered explicitly here since WC's default block fill is opted out) */
.wc-block-cart .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .wp-block-button__link,
.woocommerce .wp-block-button__link,
.wc-block-components-product-button__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
  border-radius: var(--btn-radius);
  padding: 12px 28px;
  min-height: 48px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: background .3s ease;
}

.woocommerce-cart .button:hover,
.woocommerce-cart .wc-block-components-button:hover,
.woocommerce-checkout .button:hover,
.woocommerce-checkout .wc-block-components-button:hover,
.wc-block-cart .wc-block-components-button:hover,
.wc-block-checkout .wc-block-components-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart .wp-block-button__link:hover,
.wp-block-woocommerce-empty-cart-block .wp-block-button__link:hover,
.woocommerce .wp-block-button__link:hover,
.wc-block-components-product-button__button:hover {
  background: #585b31;
  border-color: #585b31;
  color: #fff;
}

/* Block button inner text alignment fix */
.wc-block-components-button .wc-block-components-button__text {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Full-width primary actions (checkout / proceed) */
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  width: 100%;
}

/* Disabled / loading state */
.woocommerce-cart .wc-block-components-button:disabled,
.woocommerce-checkout .wc-block-components-button:disabled,
.wc-block-components-checkout-place-order-button:disabled,
.wc-block-components-button.wc-block-components-button--loading {
  opacity: .55;
  cursor: not-allowed;
}

/* Secondary / "outlined" buttons (e.g. Continue shopping) */
.woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button.outlined,
.wc-block-components-button.wc-block-components-button--outlined,
.wc-block-components-button.outlined {
  background: #fff;
  color: var(--olive);
  border: 1px solid var(--olive);
}
.wc-block-components-button.outlined:hover {
  background: var(--olive);
  color: #fff;
}

/* ------------------------------------------------------------
   2. Inputs / selects / textareas — 1px #cfcfcf, 6px radius
   ------------------------------------------------------------ */
.woocommerce-checkout .input-text,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-cart input[type="text"],
.woocommerce-cart input[type="email"],
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-select .wc-block-components-select__container,
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-cart .wc-block-components-text-input input,
.wc-block-components-address-form input,
.wc-block-components-address-form select {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: var(--btn-radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background-color: #fff;
  line-height: 1.4;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.woocommerce-checkout textarea,
.wc-block-checkout textarea {
  min-height: 90px;
  resize: vertical;
}

/* Focus ring — olive, not the WC default blue/purple */
.woocommerce-checkout .input-text:focus,
.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.woocommerce-cart input:focus,
.wc-block-checkout input:focus,
.wc-block-checkout textarea:focus,
.wc-block-checkout select:focus,
.wc-block-cart input:focus,
.wc-block-components-text-input input:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 2px rgba(107, 110, 61, .18);
}

/* Block text-input floating label — recolour the active/focus label to olive */
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:focus + label,
.wc-block-components-text-input label {
  color: var(--muted);
}
.wc-block-components-text-input.is-active label {
  color: var(--olive);
}

/* Field labels (classic) */
.woocommerce-checkout .form-row label,
.woocommerce-checkout .woocommerce-billing-fields label,
.woocommerce-checkout .woocommerce-shipping-fields label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 6px;
  display: inline-block;
}
.woocommerce-checkout .required { color: var(--sold); }

/* Native select caret styling in block address form */
.wc-block-components-select select,
.wc-block-checkout select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23333' stroke-width='1.5'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

/* ------------------------------------------------------------
   3. Checkboxes / radios — olive accent (kill WC purple/blue)
   ------------------------------------------------------------ */
.woocommerce-cart input[type="checkbox"],
.woocommerce-cart input[type="radio"],
.woocommerce-checkout input[type="checkbox"],
.woocommerce-checkout input[type="radio"],
.wc-block-cart input[type="checkbox"],
.wc-block-cart input[type="radio"],
.wc-block-checkout input[type="checkbox"],
.wc-block-checkout input[type="radio"] {
  accent-color: var(--olive);
}

/* Block checkbox control (custom-rendered box) */
.wc-block-components-checkbox .wc-block-components-checkbox__input:checked,
.wc-block-components-checkbox input:checked {
  background-color: var(--olive) !important;
  border-color: var(--olive) !important;
}
.wc-block-components-checkbox .wc-block-components-checkbox__input:focus,
.wc-block-components-checkbox input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(107, 110, 61, .25) !important;
}
.wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: #fff;
}

/* Block radio control (shipping / payment options) */
.wc-block-components-radio-control__option::before,
.wc-block-components-radio-control__input:checked {
  border-color: var(--olive) !important;
}
.wc-block-components-radio-control__input:checked::before,
.wc-block-components-radio-control__option-checked::after {
  background: var(--olive) !important;
}
.wc-block-components-radio-control__option-checked {
  box-shadow: inset 0 0 0 1px var(--olive);
}
.wc-block-components-radio-control input[type="radio"]:focus + .wc-block-components-radio-control__label {
  color: var(--text);
}

/* ------------------------------------------------------------
   4. Links — olive, incl. coupon "add code" link
   ------------------------------------------------------------ */
.woocommerce-cart a,
.woocommerce-checkout a,
.wc-block-cart a,
.wc-block-checkout a {
  color: var(--olive);
}
.woocommerce-cart a:hover,
.woocommerce-checkout a:hover,
.wc-block-cart a:hover,
.wc-block-checkout a:hover {
  color: #585b31;
  text-decoration: underline;
}

/* Coupon toggle / "Have a coupon?" link */
.wc-block-components-totals-coupon-link,
.wc-block-components-panel__button,
.checkout_coupon .showcoupon,
.woocommerce-form-coupon-toggle a {
  color: var(--olive) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}
.wc-block-components-totals-coupon-link:hover,
.checkout_coupon .showcoupon:hover {
  color: #585b31 !important;
  text-decoration: underline;
}

/* Coupon apply field row */
.wc-block-components-totals-coupon__form .wc-block-components-text-input input,
.checkout_coupon .input-text,
.coupon .input-text {
  border: 1px solid #cfcfcf;
  border-radius: var(--btn-radius);
}
.wc-block-components-totals-coupon__button,
.coupon .button {
  background: var(--olive);
  border-color: var(--olive);
  border-radius: var(--btn-radius);
}

/* ------------------------------------------------------------
   5. Order summary / totals — #efefef card accents
   ------------------------------------------------------------ */
.wc-block-components-sidebar,
.wc-block-cart__sidebar,
.woocommerce-checkout #order_review,
.woocommerce-cart .cart_totals {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: var(--card-radius);
  padding: 24px 24px 26px;
}

.wc-block-components-sidebar .wc-block-components-title,
.woocommerce-checkout #order_review h3,
.woocommerce-cart .cart_totals h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 18px;
  text-transform: none;
}

/* Totals rows */
.wc-block-components-totals-item,
.woocommerce-checkout .cart-subtotal,
.woocommerce-checkout .order-total,
.woocommerce-cart .cart_totals tr {
  font-size: 14px;
}
.wc-block-components-totals-item__label,
.woocommerce-checkout .cart-subtotal th,
.woocommerce-cart .cart_totals th {
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
}
.wc-block-components-totals-item__value,
.woocommerce-checkout .cart-subtotal td,
.woocommerce-cart .cart_totals td {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
}

/* Divider between summary sections */
.wc-block-components-totals-item {
  padding: 8px 0;
}
.wc-block-components-totals-footer-item {
  border-top: 1px solid #ededed;
  padding-top: 14px;
  margin-top: 6px;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 20px;
  color: var(--olive-dark);
}
.woocommerce-checkout .order-total th,
.woocommerce-checkout .order-total td,
.woocommerce-cart .order-total th,
.woocommerce-cart .order-total td {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--olive-dark);
  border-top: 1px solid #ededed;
  padding-top: 14px;
}

/* Order-review line item thumbnails / list (block) */
.wc-block-components-order-summary-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0;
  gap: 14px;
  align-items: flex-start;
}
.wc-block-components-order-summary-item__image {
  flex: 0 0 auto;
}
.wc-block-components-order-summary-item__image img {
  border-radius: var(--prod-radius);
  border: 1px solid #f0eee9;
  background: #efefef;
}
.wc-block-components-order-summary-item__quantity {
  background: #efefef;
  color: var(--olive-dark);
  border: 1px solid #e2e2e2;
}
.wc-block-components-order-summary-item__description {
  flex: 1 1 auto;
  min-width: 0;
}
.wc-block-components-product-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
  word-break: normal;
  overflow-wrap: break-word;
}
.wc-block-components-order-summary-item__total-price,
.wc-block-components-product-price {
  font-family: var(--font-head);
  font-weight: 600;
}

/* WC Blocks renders BOTH a line total (top, next to the name) and a
   separate "individual" per-unit price beneath it — at qty 1 (the common
   case) these are the literal same number shown twice with nothing to
   distinguish them, reading as a duplicate/glitch. Keep just the total,
   which is the number a customer actually reviews their order against. */
.wc-block-components-order-summary-item__individual-prices {
  display: none !important;
}

/* Variation attribute line ("Select Nicotine: 18mg") — was wrapping one
   word per line in the old cramped sidebar; keep label+value together. */
.wc-block-components-product-details {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}
.wc-block-components-product-details li {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.wc-block-components-product-details__name {
  font-weight: 600;
}

/* WC Blocks pulls the product's full marketing description into the
   compact order-summary sidebar (cart + checkout) — a paragraph of ad copy
   crammed into a ~200px column reads as broken/unstyled, not intentional.
   No cart/checkout summary needs the full description; hide it here. */
.wc-block-components-product-metadata__description {
  display: none;
}

/* WC's block default renders .product-price__value at 38px everywhere
   (cart line items AND the order-summary sidebar) — sized for a standalone
   product display, not a compact row. Rein it in wherever it appears inside
   cart/checkout. */
.wc-block-cart .wc-block-components-product-price__value,
.wc-block-checkout .wc-block-components-product-price__value {
  font-size: 14px !important;
}
.wc-block-cart-item__prices {
  margin-top: 4px;
}
/* Regular/sale display (products now carry an inflated "regular" price for
   the 35%-off look) — the crossed-out figure inherits the same bold
   font-head treatment as the real price unless toned down separately. */
.wc-block-cart .wc-block-components-product-price__regular,
.wc-block-checkout .wc-block-components-product-price__regular {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--muted);
  margin-right: 6px;
}

/* ------------------------------------------------------------
   6. Cart line items table (classic + block)
   ------------------------------------------------------------ */
.woocommerce-cart table.shop_table,
.wc-block-cart-items {
  border: 1px solid #ededed;
  border-radius: var(--card-radius);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: #fff;
}
.woocommerce-cart table.shop_table thead th,
.wc-block-cart-items__header {
  background: #efefef;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--olive-dark);
  border: none;
}
/* Block header/row cells render with padding-left:0 by default — the gray
   header bar reads as an unstyled artifact with text flush against the
   card's left edge; give the first column real breathing room. */
.wc-block-cart-items__header > *:first-child,
.wc-block-cart-items__row > *:first-child {
  padding-left: 16px !important;
}
.woocommerce-cart table.shop_table td,
.wc-block-cart-items__row td {
  border-top: 1px solid #f0f0f0;
  vertical-align: middle;
}

/* Product image cell */
.woocommerce-cart td.product-thumbnail img,
.wc-block-cart-item__image img {
  width: 72px;
  border-radius: var(--prod-radius);
  border: 1px solid #f0eee9;
  background: #fff;
}

/* Product name */
.woocommerce-cart td.product-name a,
.wc-block-cart-item__product-name,
.wc-block-cart-item__product .wc-block-components-product-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.woocommerce-cart td.product-name a:hover {
  color: var(--olive);
}

/* Prices */
.woocommerce-cart td.product-price,
.woocommerce-cart td.product-subtotal,
.wc-block-cart-item__total {
  font-family: var(--font-head);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------
   7. Quantity steppers
   ------------------------------------------------------------ */
/* Classic cart qty box */
.woocommerce-cart .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfcfcf;
  border-radius: var(--btn-radius);
  overflow: hidden;
}
.woocommerce-cart .quantity .qty {
  width: 52px;
  height: 42px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 600;
  -moz-appearance: textfield;
  background: #fff;
}
.woocommerce-cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce-cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Block quantity selector */
.wc-block-components-quantity-selector {
  border: 1px solid #cfcfcf;
  border-radius: var(--btn-radius);
  overflow: hidden;
  max-width: 108px;
}
.wc-block-components-quantity-selector__input {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.wc-block-components-quantity-selector__button {
  color: #333;
  font-size: 18px;
  transition: background .15s ease, color .15s ease;
}
.wc-block-components-quantity-selector__button:hover {
  background: #efefef;
  color: var(--olive);
}
.wc-block-components-quantity-selector__button:disabled {
  opacity: .4;
}

/* ------------------------------------------------------------
   8. Remove links — #E22120 (sold red)
   ------------------------------------------------------------ */
.woocommerce-cart td.product-remove a.remove,
.wc-block-cart-item__remove-link,
.wc-block-components-product-metadata + .wc-block-cart-item__remove-link {
  color: var(--sold) !important;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: none;
  transition: color .2s ease, opacity .2s ease;
}
.woocommerce-cart td.product-remove a.remove:hover,
.wc-block-cart-item__remove-link:hover {
  color: #b31812 !important;
  background: none;
  opacity: .85;
  text-decoration: underline;
}
/* Classic circular "x" remove */
.woocommerce-cart td.product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

/* ------------------------------------------------------------
   9. Notices / messages — on-palette (olive + red)
   ------------------------------------------------------------ */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-success {
  border-top: 3px solid var(--olive);
  border-left: none;
  background: #f7f6f2;
  color: var(--text);
  border-radius: var(--btn-radius);
  padding: 14px 18px;
}
.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-error,
.wc-block-components-notice-banner.is-error {
  border-top: 3px solid var(--sold);
  border-left: none;
  background: #fbeeee;
  color: var(--text);
  border-radius: var(--btn-radius);
}
.wc-block-components-notice-banner.is-info svg,
.wc-block-components-notice-banner.is-success svg {
  fill: var(--olive);
}
.wc-block-components-notice-banner.is-error svg {
  fill: var(--sold);
}

/* Spinner / loading accents to olive */
.wc-block-components-spinner::after,
.woocommerce-checkout .blockUI.blockOverlay::before {
  border-color: var(--olive) !important;
  border-top-color: transparent !important;
}

/* Validation error text */
.wc-block-components-validation-error {
  color: var(--sold);
}
.wc-block-components-text-input.has-error input,
.woocommerce-invalid input.input-text {
  border-color: var(--sold) !important;
}

/* ------------------------------------------------------------
   10. Payment / shipping option cards (block checkout)
   ------------------------------------------------------------ */
.wc-block-components-radio-control-accordion-option,
.wc-block-checkout__shipping-option .wc-block-components-shipping-rates-control__package {
  border: 1px solid #ededed;
  border-radius: var(--btn-radius);
  padding: 4px 12px;
  margin-bottom: 10px;
  background: #fff;
}
.wc-block-components-radio-control__option-checked {
  border-color: var(--olive);
  background: #f7f6f2;
}
.wc-block-checkout__payment-method .wc-block-components-radio-control {
  border: 1px solid #ededed;
  border-radius: var(--btn-radius);
  overflow: hidden;
}

/* Selected-shipping / express area separators */
.wc-block-checkout__actions,
.wc-block-components-checkout-step {
  border-color: #ededed;
}

/* ------------------------------------------------------------
   11. Mobile — single column
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .woocommerce-cart .wrap,
  .woocommerce-checkout .wrap {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  /* Block layout: force sidebar under main column */
  .wc-block-cart .wc-block-cart__main,
  .wc-block-cart .wc-block-cart__sidebar,
  .wc-block-checkout .wc-block-checkout__main,
  .wc-block-checkout .wc-block-checkout__sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .wc-block-cart .wc-block-cart__sidebar,
  .wc-block-checkout .wc-block-checkout__sidebar {
    margin-top: 24px;
    position: static;
  }

  /* Classic checkout: stack billing + order review */
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }

  /* Classic cart: card-ify each row */
  .woocommerce-cart table.shop_table thead {
    display: none;
  }
  .woocommerce-cart table.shop_table tr {
    display: block;
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
  }
  .woocommerce-cart table.shop_table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 8px 12px;
  }
  .woocommerce-cart table.shop_table td::before {
    content: attr(data-title);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted);
  }
}

@media (max-width: 560px) {
  .woocommerce-cart .page-title,
  .woocommerce-checkout .page-title {
    font-size: 24px;
  }
  .wc-block-components-sidebar,
  .wc-block-cart__sidebar,
  .woocommerce-checkout #order_review,
  .woocommerce-cart .cart_totals {
    padding: 18px 16px 20px;
    border-radius: 14px;
  }
  .woocommerce-cart td.product-thumbnail img,
  .wc-block-cart-item__image img {
    width: 60px;
  }
}
