/* Cart shipping display — "Calculated at checkout" message row.
 *
 * Renders inside the WC Blocks `.wc-block-components-totals-item` so the
 * label/value alignment matches the subtotal/coupon/total rows above and
 * below. The value is muted italic so it reads as guidance rather than a
 * price. Top padding gives the row breathing space from the subtotal line
 * above — without it the message hugs the previous row visually. */

.swa-cart-shipping--message {
	padding-top: 1rem;
}
.swa-cart-shipping--message .wc-block-components-totals-item__value {
	color: var( --sp-text-muted, #6b7280 );
	font-weight: 400;
	font-style: italic;
}
