/**
 * MHM Currency Switcher — product page multi-currency price display.
 *
 * @package MhmCurrencySwitcher
 * @since 0.3.0
 */

.mhm-cs-product-prices {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	padding: 8px 0;
	border-top: 1px solid #eee;
	font-size: 13px;
	color: #666;
}

.mhm-cs-product-price {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.mhm-cs-separator {
	color: #ddd;
}

@media (max-width: 480px) {
	.mhm-cs-product-prices {
		flex-direction: column;
		align-items: flex-start;
	}

	.mhm-cs-separator {
		display: none;
	}
}
