/**
 * Postles Lodge Currency Display — Frontend Styles
 * All secondary currency display styles.
 * No inline styles are used anywhere in the plugin.
 */

/* ─── Price wrapper ────────────────────────────────────────────────── */

.plcd-price-wrapper {
	display: block;
	margin-top: 0.25em;
	line-height: 1.3;
}

/* ─── Converted price (primary focus) ─────────────────────────────── */

.plcd-price-converted {
	display: block;
	font-size: 1.1em;
	font-weight: 600;
	color: inherit;
}

.plcd-approx {
	font-weight: 400;
	opacity: 0.6;
	margin-right: 0.1em;
}

/* Sale: crossed-out original */
.plcd-price-converted del {
	opacity: 0.5;
	font-weight: 400;
	text-decoration: line-through;
}

/* Sale: active sale price */
.plcd-price-converted ins {
	text-decoration: none;
	color: inherit;
}

/* ─── CHF subordinate label ────────────────────────────────────────── */

.plcd-price-chf {
	display: block;
	font-size: 0.78em;
	color: #888;
	margin-top: 0.1em;
	font-weight: 400;
}

/* ─── Checkout notice ──────────────────────────────────────────────── */

.plcd-checkout-notice {
	background: #eef5fb;
	border-left: 4px solid #3498db;
	padding: 0.75em 1em;
	margin-bottom: 1.25em;
	font-size: 0.9em;
	color: #2c3e50;
	border-radius: 2px;
}

/* ─── Currency selector block ──────────────────────────────────────── */

.plcd-selector {
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}

.plcd-selector__label {
	font-size: 0.85em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.7;
}

.plcd-selector__select {
	padding: 0.4em 0.6em;
	border: 1px solid currentColor;
	border-radius: 3px;
	background: transparent;
	color: inherit;
	font-size: 0.9em;
	cursor: pointer;
	max-width: 200px;
}

.plcd-selector__select:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.plcd-selector__note {
	font-size: 0.75em;
	opacity: 0.6;
	margin: 0;
}

/* ─── Shop archive (inline format) ────────────────────────────────── */

.woocommerce ul.products .plcd-price-wrapper {
	display: inline-flex;
	flex-direction: column;
}

.woocommerce ul.products .plcd-price-chf {
	font-size: 0.72em;
}
