/**
 * Mini-cart shipping calculator — readable contrast on the dark off-canvas drawer.
 *
 * The shared blaze-blocksy theme styles the in-drawer shipping calculator with a
 * light-theme palette (--shipping-calc-text-secondary:#666, -bg-secondary:#f9f9f9,
 * borders #ddd). Inside the dark #woo-cart-panel drawer that renders the
 * "Available Shipping Methods" option (e.g. "UPS® Ground $19.92") as low-contrast,
 * near-unreadable text — reported by QA (vita) on CU 86exx6z6w.
 *
 * Scope a dark-drawer palette to the mini-cart results so the option is legible.
 * Covers every cause of the dim: inherited light-theme color, a light results box,
 * and any leftover loading/opacity state. This targets the off-canvas drawer UI
 * component (not block-editor content), so utility hex/rgba is intentional here:
 * editor-friendly-ok
 */
#woo-cart-panel .mini-cart-shipping-results {
	background-color: #222 !important;
	border-color: rgba(255, 255, 255, 0.18) !important;
	opacity: 1 !important;
}

#woo-cart-panel .mini-cart-shipping-results *,
#woo-cart-panel .shipping-methods,
#woo-cart-panel .shipping-method-radio {
	opacity: 1 !important;
}

#woo-cart-panel .mini-cart-shipping-results h4,
#woo-cart-panel .shipping-method-radio .method-title {
	color: #fff !important;
}

#woo-cart-panel .shipping-method-radio .method-cost {
	color: var(--theme-palette-color-1, #c9a96e) !important;
}

#woo-cart-panel .shipping-method-radio {
	border-color: rgba(255, 255, 255, 0.22) !important;
}

#woo-cart-panel .shipping-method-radio:has(input:checked) {
	border-color: var(--theme-palette-color-1, #c9a96e) !important;
	background-color: rgba(201, 169, 110, 0.08) !important;
}
