/* -----------------------------------------------------------
 * Currency Switcher — styled to match Elementor nav menu items
 * --------------------------------------------------------- */

.lcs-switcher {
	position: relative;
	display: inline-block;
}

/* Button reset — match the nav menu item appearance */
.lcs-switcher button.lcs-switcher-btn {
	display: flex;
	align-items: center;
	padding: 8px 15px;
	margin: 0;
	border: none;
	border-radius: 0;
	background: none;
	color: #fff;
	font-family: inherit;
	font-size: 12px;
	font-weight: 500;
	text-transform: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.3s;
}

.lcs-switcher button.lcs-switcher-btn:hover,
.lcs-switcher button.lcs-switcher-btn:focus {
	background: none;
	border: none;
	color: #fff;
	text-decoration: none;
	outline: none;
}

.lcs-switcher button.lcs-switcher-btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Chevron */
.lcs-switcher-arrow {
	flex-shrink: 0;
	margin-left: 0.4em;
	opacity: 0.5;
	transition: transform 0.2s;
}

[aria-expanded="true"] .lcs-switcher-arrow {
	transform: rotate(180deg);
}

/* Dropdown menu */
.lcs-switcher-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 9999;
	min-width: 100%;
	margin: 4px 0 0;
	padding: 4px 0;
	list-style: none;
	border-radius: 6px;
	background: #1a1a2e;
	color: #eee;
	font-size: 13px;
	font-weight: 400;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	overflow: auto;
	max-height: 320px;
}

.lcs-switcher-menu.lcs-open {
	display: block;
}

/* Menu items */
.lcs-switcher-menu [role="option"] {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.1s;
}

.lcs-switcher-menu [role="option"]:hover,
.lcs-switcher-menu [role="option"]:focus {
	background: rgba(255, 255, 255, 0.1);
	outline: none;
}

.lcs-switcher-menu [role="option"][aria-selected="true"] {
	background: rgba(255, 255, 255, 0.08);
}

.lcs-switcher-menu [role="option"][aria-selected="true"]::after {
	content: "\2713";
	margin-left: auto;
	opacity: 0.5;
}

.lcs-item-code {
	font-weight: 600;
}

.lcs-item-symbol {
	opacity: 0.5;
	min-width: 24px;
}

.lcs-item-name {
	display: none;
}

/* Jet Smart Filters range — converted price display */
.lcs-range-display {
	display: flex;
	justify-content: space-between;
	padding: 0;
	font-size: 14px;
}
