/* ─── Currency Switcher ─── */
.currency-switch {
	display: inline-flex;
	align-items: center;
	background: #F0F1F5;
	border-radius: 50px;
	padding: 2px;
	gap: 1px;
}

.currency-switch__btn {
	padding: 4px 10px;
	border: none;
	border-radius: 50px;
	background: transparent;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #8C91A6;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1;
}

.currency-switch__btn:hover {
	color: #1A2038;
}

.currency-switch__btn--active {
	background: #ffffff;
	color: #1A2038;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ─── Currency Label on prices ─── */
.citsolar-currency-label {
	font-size: 0.55em;
	font-weight: 700;
	color: #22A652;
	vertical-align: baseline;
	margin-left: 3px;
	letter-spacing: 0.02em;
	display: inline !important;
}

/* Keep price + label on same line */
.citsolar-price {
	display: inline;
	white-space: nowrap;
}

/* Fix add to cart button wrapping in shop grid */
ul.products li.product .button,
ul.products li.product .add_to_cart_button,
ul.products li.product .product_type_variable,
ul.products li.product .product_type_grouped {
	white-space: nowrap !important;
}
