/* ============================================================================
   MIGHTY KIDS — CART PAGE (Phase 1: on-brand CTA + trust + delivery)
   ============================================================================ */

/* --- CTA hierarchy ------------------------------------------------------- */

/* Proceed to checkout — primary gold pill, full-width, tall, with lock feel */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart-form + .cart_totals .checkout-button,
.cart_totals .wc-proceed-to-checkout .checkout-button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 18px 24px !important;
	background: #c98e1f !important;
	color: #fff !important;
	border: none !important;
	border-radius: 14px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	letter-spacing: 0.2px;
	line-height: 1.2;
	box-shadow: 0 6px 18px rgba(201, 142, 31, 0.28);
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:focus-visible {
	background: #b37d18 !important;
	box-shadow: 0 10px 24px rgba(201, 142, 31, 0.35);
	transform: translateY(-1px);
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button::before {
	content: '';
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
	        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Apply voucher — gold outline */
.woocommerce-cart .coupon .button,
.woocommerce-cart button[name="apply_coupon"] {
	background: transparent !important;
	color: #c98e1f !important;
	border: 2px solid #c98e1f !important;
	border-radius: 10px !important;
	padding: 10px 18px !important;
	font-weight: 600 !important;
	transition: background 0.2s ease, color 0.2s ease;
}
.woocommerce-cart .coupon .button:hover,
.woocommerce-cart button[name="apply_coupon"]:hover {
	background: #c98e1f !important;
	color: #fff !important;
}

/* Update cart — ghost link, only stands out when enabled */
.woocommerce-cart button[name="update_cart"] {
	background: transparent !important;
	color: #6b5c47 !important;
	border: 1px dashed #c2b89f !important;
	border-radius: 10px !important;
	padding: 10px 18px !important;
	font-weight: 600 !important;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.woocommerce-cart button[name="update_cart"]:not([disabled]):hover {
	color: #2a1e10 !important;
	border-color: #2a1e10 !important;
	background: #faf6ee !important;
}
.woocommerce-cart button[name="update_cart"][disabled] {
	opacity: 0.55;
	cursor: not-allowed;
}

/* Coupon voucher input — match outline button height */
.woocommerce-cart .coupon input.input-text {
	height: 44px;
	border: 1px solid #d9cfb8 !important;
	border-radius: 10px !important;
	padding: 0 14px !important;
	background: #fff !important;
}
.woocommerce-cart .coupon input.input-text:focus {
	border-color: #c98e1f !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(201, 142, 31, 0.18);
}

/* --- Trust bar (below items table) -------------------------------------- */
.mk-cart-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin: 20px 0 28px;
	padding: 18px 20px;
	background: #faf6ee;
	border: 1px solid #ece3cc;
	border-radius: 14px;
}
.mk-cart-trust__item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.mk-cart-trust__icon {
	flex: 0 0 auto;
	color: #c98e1f;
}
.mk-cart-trust__item strong {
	display: block;
	font-size: 13px;
	color: #2a1e10;
	line-height: 1.25;
}
.mk-cart-trust__item span {
	display: block;
	font-size: 12px;
	color: #6b5c47;
	line-height: 1.3;
}

/* --- Secure checkout block (below CTA) ---------------------------------- */
.mk-cart-secure {
	margin-top: 14px;
	padding: 12px 4px 0;
	text-align: center;
}
.mk-cart-secure__lock {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6b5c47;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
}
.mk-cart-secure__lock svg {
	color: #2a7f3e;
}
.mk-cart-secure__methods {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
.mk-pay {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	padding: 0 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: #fff;
	background: #2a1e10;
	border-radius: 5px;
	text-indent: 0;
	box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.mk-pay--visa  { background: #1a1f71; }
.mk-pay--mc    { background: #ea001b; }
.mk-pay--amex  { background: #2e77bb; }
.mk-pay--gpay  { background: #fff; color: #3c4043; border: 1px solid #dadce0; }
.mk-pay--apple { background: #000; }

/* --- Delivery ETA replacing full address line --------------------------- */
.mk-shipping-eta {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.3;
}
.mk-shipping-eta strong {
	color: #2a7f3e;
	font-weight: 700;
}
.mk-shipping-eta__range {
	font-size: 12px;
	color: #6b5c47;
}

/* Neutralize leftover WC "Shipping to ..." paragraph if anything slips through */
.woocommerce-shipping-destination {
	display: none !important;
}

/* --- Polish pass: items table, product row, totals card ----------------- */

/* Hide the bare [wr_available_coupons] shortcode text if it renders as literal */
.woocommerce-cart .entry-content > p:first-of-type:empty,
.woocommerce-cart .entry-content > p:first-of-type:has(+ .woocommerce) {
	display: none;
}

/* Items table: remove the heavy gray header band, soften borders */
.woocommerce-cart table.shop_table {
	border: 1px solid #ece3cc !important;
	border-radius: 14px !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	overflow: hidden;
	background: #fff;
}
.woocommerce-cart table.shop_table thead th {
	background: #faf6ee !important;
	color: #6b5c47 !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 14px 16px !important;
	border-bottom: 1px solid #ece3cc !important;
}
.woocommerce-cart table.shop_table tbody td {
	padding: 18px 16px !important;
	border-top: 1px solid #f3ead6 !important;
	vertical-align: middle !important;
}

/* Product row: bigger thumbnail, richer name */
.woocommerce-cart table.shop_table td.product-thumbnail a {
	display: inline-block;
	background: #faf6ee;
	border-radius: 10px;
	padding: 6px;
}
.woocommerce-cart table.shop_table td.product-thumbnail img {
	width: 64px !important;
	height: 64px !important;
	object-fit: contain;
	display: block;
}
.woocommerce-cart table.shop_table td.product-name a {
	color: #2a1e10 !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}
.woocommerce-cart table.shop_table td.product-name a:hover {
	color: #c98e1f !important;
}

/* Remove button — proper icon bin, not generic × */
.woocommerce-cart table.shop_table td.product-remove a.remove {
	width: 28px !important;
	height: 28px !important;
	line-height: 28px !important;
	border-radius: 50% !important;
	color: #a8927a !important;
	background: transparent !important;
	transition: background 0.2s ease, color 0.2s ease;
	font-size: 18px !important;
}
.woocommerce-cart table.shop_table td.product-remove a.remove:hover {
	color: #b23a3a !important;
	background: rgba(178, 58, 58, 0.08) !important;
}

/* Quantity field — consistent with voucher input */
.woocommerce-cart table.shop_table td.product-quantity .qty,
.woocommerce-cart table.shop_table td.product-quantity input[type="number"] {
	height: 40px;
	width: 64px;
	border: 1px solid #d9cfb8 !important;
	border-radius: 8px !important;
	text-align: center;
	font-weight: 600;
	color: #2a1e10;
}

/* Coupon row inside the items table — soften the divider */
.woocommerce-cart table.shop_table tr.coupon-row td,
.woocommerce-cart table.shop_table tfoot td.actions {
	padding: 18px 16px !important;
	background: #faf6ee !important;
	border-top: 1px solid #ece3cc !important;
}

/* --- Cart totals as a card --------------------------------------------- */
.woocommerce-cart .cart-collaterals .cart_totals {
	background: #fff;
	border: 1px solid #ece3cc;
	border-radius: 16px;
	padding: 22px 24px;
	box-shadow: 0 4px 18px rgba(32, 24, 12, 0.04);
}
.woocommerce-cart .cart-collaterals .cart_totals > h2 {
	margin: 0 0 14px !important;
	font-size: 20px !important;
	color: #2a1e10 !important;
	padding-bottom: 14px;
	border-bottom: 1px solid #f0e8d3;
}
.woocommerce-cart .cart_totals table.shop_table {
	border: none !important;
	background: transparent !important;
	border-radius: 0 !important;
	margin: 0 !important;
	overflow: visible;
}
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
	background: transparent !important;
	border: none !important;
	border-bottom: 1px dashed #f0e8d3 !important;
	padding: 14px 0 !important;
	font-size: 14px !important;
	color: #4a3d2a !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	font-weight: 500 !important;
}
.woocommerce-cart .cart_totals table.shop_table tr:last-of-type th,
.woocommerce-cart .cart_totals table.shop_table tr:last-of-type td {
	border-bottom: none !important;
}
.woocommerce-cart .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart_totals table.shop_table tr.order-total td {
	border-top: 1px solid #2a1e10 !important;
	padding-top: 18px !important;
	padding-bottom: 18px !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	color: #2a1e10 !important;
}
.woocommerce-cart .cart_totals table.shop_table tr.order-total td .amount {
	color: #c98e1f !important;
	font-size: 22px !important;
}

/* Shipping row spacing */
.woocommerce-cart .cart_totals tr.shipping td {
	vertical-align: top !important;
}

/* --- Points to earn — highlighted reward banner ------------------------ */
.woocommerce-cart .cart_totals tr.mk-rewards-potential-points th,
.woocommerce-cart .cart_totals tr.mk-rewards-potential-points td {
	background: linear-gradient(135deg, #fdf5e4 0%, #faeac9 100%) !important;
	border: none !important;
	border-bottom: 1px dashed #f0e8d3 !important;
	padding: 14px 14px !important;
	font-weight: 600 !important;
	color: #2a1e10 !important;
}
.woocommerce-cart .cart_totals tr.mk-rewards-potential-points th:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	position: relative;
	padding-left: 40px !important;
}
.woocommerce-cart .cart_totals tr.mk-rewards-potential-points th:first-child::before {
	content: '⭐';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
}
.woocommerce-cart .cart_totals tr.mk-rewards-potential-points td:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	color: #c98e1f !important;
	font-weight: 800 !important;
}

/* --- Loyalty redeem — outline chip above the CTA ---------------------- */
.woocommerce-cart .cart_totals tr.mk-rewards-row th,
.woocommerce-cart .cart_totals tr.mk-rewards-row td {
	padding: 12px 0 !important;
	border: none !important;
}
.woocommerce-cart .cart_totals tr.mk-rewards-row td {
	text-align: right !important;
}
.woocommerce-cart .cart_totals tr.mk-rewards-row a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1.5px dashed #c98e1f;
	border-radius: 999px;
	color: #c98e1f !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease;
}
.woocommerce-cart .cart_totals tr.mk-rewards-row a::before {
	content: '🎁';
	font-size: 13px;
}
.woocommerce-cart .cart_totals tr.mk-rewards-row a:hover {
	background: #c98e1f;
	color: #fff !important;
	border-style: solid;
}

/* --- Cross-sell polish ------------------------------------------------- */
.woocommerce-cart .cross-sells {
	background: #fff;
	border: 1px solid #ece3cc;
	border-radius: 16px;
	padding: 22px 24px;
	box-shadow: 0 4px 18px rgba(32, 24, 12, 0.04);
}
.woocommerce-cart .cross-sells > h2 {
	margin: 0 0 16px !important;
	font-size: 20px !important;
	color: #2a1e10 !important;
	padding-bottom: 14px;
	border-bottom: 1px solid #f0e8d3;
}
.woocommerce-cart .cross-sells ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.woocommerce-cart .cross-sells ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	padding: 14px !important;
	background: #faf6ee;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.woocommerce-cart .cross-sells ul.products li.product:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(32, 24, 12, 0.08);
}
.woocommerce-cart .cross-sells ul.products li.product img {
	width: 100% !important;
	max-height: 160px !important;
	height: auto !important;
	object-fit: contain !important;
	border-radius: 8px;
	background: #fff;
	margin-bottom: 10px !important;
}
.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #2a1e10 !important;
	margin: 8px 0 6px !important;
	min-height: 2.4em;
}
.woocommerce-cart .cross-sells ul.products li.product .price {
	font-size: 14px !important;
	color: #2a1e10 !important;
	margin-bottom: 6px !important;
}
.woocommerce-cart .cross-sells ul.products li.product .star-rating {
	display: inline-block;
	margin: 4px auto 6px;
	font-size: 12px;
}
.woocommerce-cart .cross-sells ul.products li.product .button {
	background: #c98e1f !important;
	color: #fff !important;
	border-radius: 8px !important;
	padding: 8px 16px !important;
	font-weight: 600 !important;
	border: none !important;
	margin-top: 8px !important;
}
.woocommerce-cart .cross-sells ul.products li.product .button:hover {
	background: #b37d18 !important;
}

/* --- Subscribe & Save upsell (inline, compact, under cart item name) --- */
.mk-sub-upsell {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 6px 0 0;
	padding: 4px 10px 4px 8px;
	background: transparent;
	border: 1px dashed #e0cb94;
	border-radius: 999px;
	font-size: 12.5px;
	line-height: 1.3;
	max-width: 100%;
}
.mk-sub-upsell__icon {
	flex: 0 0 auto;
	line-height: 1;
	color: #c98e1f;
	display: inline-flex;
	align-items: center;
}
.mk-sub-upsell__icon svg {
	width: 14px;
	height: 14px;
	display: block;
}
.mk-sub-upsell__text {
	flex: 0 1 auto;
	min-width: 0;
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
}
.mk-sub-upsell__text strong {
	color: #2a1e10;
	font-weight: 700;
}
.mk-sub-upsell__meta {
	color: #8a7a5c;
	font-size: 11.5px;
	display: none;
}
.woocommerce-cart table.shop_table td.product-name a.mk-sub-upsell__action,
a.mk-sub-upsell__action {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	margin-left: 2px;
	padding: 2px 10px;
	background: #c98e1f;
	color: #fff !important;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.2s ease;
}
.mk-sub-upsell__action::after {
	content: " →";
}
.mk-sub-upsell__action:hover {
	background: #a67617;
}
.woocommerce-cart table.shop_table td.product-name a.mk-sub-upsell__action--ghost,
a.mk-sub-upsell__action--ghost {
	background: transparent;
	color: #6b7a6b !important;
	padding: 2px 8px;
	font-weight: 600;
}
.mk-sub-upsell__action--ghost::after {
	content: "";
}
.mk-sub-upsell__action--ghost:hover {
	background: transparent;
	color: #2a7f3e !important;
	text-decoration: underline !important;
}

/* Active-subscription variant — subtle green */
.mk-sub-upsell--active {
	background: transparent;
	border: 1px solid #cce5cc;
	border-style: solid;
}
.mk-sub-upsell--active .mk-sub-upsell__icon {
	color: #2a7f3e;
	font-weight: 800;
}
.mk-sub-upsell--active .mk-sub-upsell__text strong {
	color: #2a7f3e;
}

/* Payment badges: tighter spacing */
.mk-cart-secure__methods {
	gap: 6px;
}
.mk-pay {
	height: 24px;
	font-size: 10px;
	padding: 0 8px;
}

/* Hide orphan [wr_available_coupons] shortcode output if it's plain text */
.woocommerce-cart .entry-content > p:first-of-type {
	font-size: 0;
	margin: 0;
	padding: 0;
}

/* Hide any residual empty "— or —" dividers after payment badges when the
   underlying express-payment block failed to render */
.woocommerce-cart .wc-proceed-to-checkout .wc-block-components-express-payment,
.woocommerce-cart .wc-proceed-to-checkout .wc-block-components-payment-methods__separator:empty {
	display: none !important;
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
	.mk-cart-trust {
		grid-template-columns: repeat(2, 1fr);
	}
	.woocommerce-cart .cart-collaterals .cart_totals,
	.woocommerce-cart .cross-sells {
		padding: 18px;
	}
}

/* --- Mobile: transform table row into a card layout -------------------- */
@media (max-width: 768px) {
	/* Hide the 3rd-party floating cart on the basket — redundant with our
	   header cart icon and currently overlapping quantity controls. */
	body.woocommerce-cart .mk-wsc-basket,
	body.woocommerce-cart .mk-wsc-wrap,
	body.woocommerce-cart [class*="mk-wsc-"] {
		display: none !important;
	}

	/* Compact cart container padding */
	.woocommerce-cart table.shop_table {
		border-radius: 14px !important;
	}

	/* Hide the responsive "Product:/Price:/etc." labels WC injects */
	.woocommerce-cart table.shop_table_responsive tbody td::before {
		display: none !important;
	}
	.woocommerce-cart table.shop_table_responsive thead {
		display: none;
	}

	/* Turn each cart row into a card: grid with thumb + content */
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item {
		display: grid !important;
		grid-template-columns: 72px 1fr;
		grid-template-areas:
			"thumb name"
			"qty   subtotal";
		gap: 12px 14px;
		padding: 16px;
		padding-right: 44px; /* room for absolute × */
		border-top: 1px solid #f3ead6;
		position: relative;
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item > td {
		display: block !important;
		padding: 0 !important;
		border: none !important;
		text-align: left !important;
		width: auto !important;
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-thumbnail {
		grid-area: thumb;
		display: block !important; /* override WC that hides it on mobile */
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-thumbnail a {
		padding: 4px;
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-thumbnail img {
		width: 64px !important;
		height: 64px !important;
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-name {
		grid-area: name;
		align-self: start;
	}
	/* Upsell lives inside .product-name; just ensure spacing below name */
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-name .mk-sub-upsell {
		margin-top: 10px;
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-price {
		display: none !important; /* subtotal already shows the line total */
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-quantity {
		grid-area: qty;
		align-self: center;
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-subtotal {
		grid-area: subtotal;
		align-self: center;
		text-align: right !important;
		font-weight: 700;
		color: #2a1e10;
		font-size: 15px;
	}
	.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td.product-remove {
		grid-area: remove;
		position: absolute;
		top: 8px;
		right: 8px;
	}

	/* Upsell stays inline-compact on mobile too — just allow wrap if needed */
	.mk-sub-upsell {
		flex-wrap: wrap;
	}

	/* Coupon row stacks */
	.woocommerce-cart table.shop_table tfoot td.actions,
	.woocommerce-cart table.shop_table tr.coupon-row td {
		display: block !important;
		padding: 14px !important;
	}
	.woocommerce-cart .coupon {
		display: flex !important;
		align-items: stretch;
		gap: 8px;
		margin: 0 0 12px !important;
		float: none !important;
		width: 100% !important;
	}
	.woocommerce-cart .coupon input.input-text {
		flex: 1 1 auto !important;
		width: auto !important;
		min-width: 0 !important;
	}
	.woocommerce-cart .coupon .button {
		flex: 0 0 auto !important;
		padding: 0 18px !important;
		white-space: nowrap;
	}
	.woocommerce-cart button[name="update_cart"] {
		width: 100%;
	}

	/* Cart totals: force label+value to sit inline, not stacked */
	.woocommerce-cart .cart_totals table.shop_table_responsive tbody tr {
		display: flex !important;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		padding: 0;
	}
	.woocommerce-cart .cart_totals table.shop_table_responsive tbody th,
	.woocommerce-cart .cart_totals table.shop_table_responsive tbody td {
		width: auto !important;
		text-align: left !important;
		padding: 14px 0 !important;
		border: none !important;
	}
	.woocommerce-cart .cart_totals table.shop_table_responsive tbody td {
		text-align: right !important;
	}
	.woocommerce-cart .cart_totals table.shop_table_responsive tbody tr {
		border-bottom: 1px dashed #f0e8d3;
	}
	.woocommerce-cart .cart_totals table.shop_table_responsive tbody tr:last-child {
		border-bottom: none;
	}
	/* Re-apply points banner radius on mobile */
	.woocommerce-cart .cart_totals tr.mk-rewards-potential-points {
		background: linear-gradient(135deg, #fdf5e4 0%, #faeac9 100%);
		border-radius: 10px;
		padding: 4px 12px !important;
	}
	.woocommerce-cart .cart_totals tr.mk-rewards-potential-points th {
		padding-left: 30px !important;
	}
	.woocommerce-cart .cart_totals tr.order-total {
		padding-top: 4px !important;
		border-top: 1px solid #2a1e10;
		border-bottom: none !important;
	}
	.woocommerce-cart .cart_totals tr.order-total th,
	.woocommerce-cart .cart_totals tr.order-total td {
		font-size: 17px !important;
		font-weight: 800 !important;
	}

	/* Totals card spacing */
	.mk-cart-trust {
		grid-template-columns: 1fr;
	}
	.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
		padding: 16px 20px !important;
		font-size: 15px !important;
	}
	.woocommerce-cart .cart_totals table.shop_table tr.order-total td .amount {
		font-size: 20px !important;
	}

	/* Cross-sell on mobile: single column, compact card */
	.woocommerce-cart .cross-sells ul.products {
		grid-template-columns: 1fr !important;
		gap: 12px;
	}
	.woocommerce-cart .cross-sells ul.products li.product {
		display: grid !important;
		grid-template-columns: 80px 1fr;
		gap: 12px;
		padding: 12px !important;
		text-align: left !important;
	}
	.woocommerce-cart .cross-sells ul.products li.product a:first-child img,
	.woocommerce-cart .cross-sells ul.products li.product img {
		width: 80px !important;
		height: 80px !important;
		max-height: 80px !important;
		margin: 0 !important;
		object-fit: contain;
	}
	.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
		font-size: 13px !important;
		margin: 0 0 4px !important;
		min-height: 0 !important;
	}
	.woocommerce-cart .cross-sells ul.products li.product .price,
	.woocommerce-cart .cross-sells ul.products li.product .star-rating {
		margin: 2px 0 !important;
	}
	.woocommerce-cart .cross-sells ul.products li.product .button {
		margin-top: 6px !important;
		padding: 6px 12px !important;
		font-size: 12px !important;
		justify-self: start;
	}
}

