/**
 * Currency switcher — Design.html pill dropdown
 */

.noureldeing-currency-dropdown {
	position: relative;
	width: auto;
	max-width: 100%;
}

.noureldeing-currency-dropdown .currency-pill {
	border: 1px solid var(--nd-line);
	border-radius: 20px;
	padding: 6px 14px;
	font-family: var(--nd-font-primary);
	font-size: 12px;
	font-weight: 700;
	color: var(--nd-dark-green);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--nd-mint);
	line-height: 1.4;
	cursor: pointer;
	box-shadow: none;
}

.noureldeing-currency-dropdown .currency-pill:hover,
.noureldeing-currency-dropdown .currency-pill:focus {
	background: var(--nd-mint);
	color: var(--nd-dark-green);
	outline: none;
}

.noureldeing-currency-dropdown .cur-flag {
	font-size: 14px;
	line-height: 1;
}

.noureldeing-currency-dropdown .cur-label {
	white-space: nowrap;
}

.noureldeing-currency-dropdown .cur-arrow {
	font-size: 10px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.noureldeing-currency-dropdown.open .cur-arrow {
	transform: rotate(180deg);
}

.noureldeing-currency-dropdown .currency-menu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	inset-inline-start: 0;
	background: var(--nd-white);
	border: 1px solid var(--nd-line);
	border-radius: 8px;
	box-shadow: 0 10px 26px rgba(8, 64, 51, 0.14);
	min-width: 170px;
	overflow: hidden;
	z-index: 120;
}

.noureldeing-currency-dropdown.open .currency-menu {
	display: block;
}

.noureldeing-currency-dropdown .cur-option {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 11px 16px;
	font-family: var(--nd-font-primary);
	font-size: 12.5px;
	font-weight: 600;
	color: #33423c;
	cursor: pointer;
	text-decoration: none;
	box-shadow: none;
}

.noureldeing-currency-dropdown .cur-option-flag {
	font-size: 14px;
	line-height: 1;
}

@media (max-width: 767px) {
	.noureldeing-currency-dropdown .currency-pill .cur-country,
	.noureldeing-currency-dropdown .currency-pill .cur-sep {
		display: none;
	}

	.noureldeing-currency-dropdown .currency-pill {
		padding: 6px 10px;
		gap: 5px;
	}
}

.noureldeing-currency-dropdown .cur-option:hover,
.noureldeing-currency-dropdown .cur-option:focus {
	background: var(--nd-mint);
	color: var(--nd-emerald);
	text-decoration: none;
}

.woocommerce .noureldeing-currency-dropdown--product {
	overflow: visible;
}

.noureldeing-currency-dropdown .wcml-spinner {
	position: absolute;
	inset-inline-end: -20px;
	top: 50%;
	transform: translateY(-50%);
}
