.carbone-market-popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
}

.carbone-market-popup__box {
	border-radius: 16px;
	background: #E8E8E8;
	padding: 24px;
	max-width: 450px;
	width: 90%;
	text-align: center;
	.carbone-market-popup__option{
		background:#FFF!important;
	}
}
.carbone-market-switcher-item{
	width:100%;
	.carbone-market-switcher{
		width:100%;
	}
	.carbone-market-switcher__toggle{
		width:100%;
		flex: 1 1 0%;
		padding: 5px 20px;
		min-height: 50px;
		border: none;
		border-bottom: 1px solid var(--brdcolor-gray-300);
		text-align:left;
		justify-content: flex-start;
	}
	.carbone-market-switcher__code{
		color:#333;
		font-weight:600;
		font-size:13px;
	}
	.carbone-market-switcher__chevron{
		border-top: 5px solid #333;
	}
	.carbone-market-switcher__menu{
		left:10px!important;
	}
}

.carbone-market-popup__title {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 700;
	color: #000;
}

.carbone-market-popup__subtitle {
	margin: 0 0 22px;
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

.carbone-market-popup__options {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.carbone-market-popup__option {
	flex: 1 1 160px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;

	border-radius: 8px!important;
	border: 1px solid var(--brown-opacity-20, rgba(119, 98, 92, 0.20));
	background:transparent!important;


}

.carbone-market-popup__option:hover,
.carbone-market-popup__option:focus {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-1px);
	outline: none;
}

.carbone-market-popup__flag {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
}

.carbone-market-popup__flag img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carbone-market-popup__label {
	font-weight: 700;
	font-size: 14px;
	color: #000;
}

.carbone-market-popup__currency {
	margin-left: auto;
	font-size: 13px;
	color: #9a9a9a;
}

/* [carbone_market_switcher] shortcode dropdown */
.carbone-market-switcher {
	position: relative;
	display: inline-block;
}

.carbone-market-switcher__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px!important;
	padding: 6px 12px 6px 6px;
	border: none;
	border-radius: 999px;
	background: transparent!important;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	color: #1a1a1a;
}

.carbone-market-switcher__toggle:hover,
.carbone-market-switcher__toggle:focus {
	background: #d3ccc2;
	outline: none;
}

.carbone-market-switcher__flag {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
}

.carbone-market-switcher__flag img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.carbone-market-switcher__code{
	color:white;
	font-weight:400;
	font-size:16px;
}

.carbone-market-switcher__chevron {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #fff;
	margin-left: 2px;
	transition: transform 0.15s ease;
}

.carbone-market-switcher.is-open .carbone-market-switcher__chevron {
	transform: rotate(180deg);
}

.whb-sticked .whb-color-light:not(.whb-with-bg) {
    .carbone-market-switcher__chevron {
        border-top: 5px solid #292929;
    }
}

.carbone-market-switcher.is-loading .carbone-market-switcher__toggle {
	opacity: 0.6;
	pointer-events: none;
}

.carbone-market-switcher__menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 160px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
	z-index: 1000;
}

.carbone-market-switcher__option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	color: #1a1a1a;
	white-space: nowrap;
}

.carbone-market-switcher__option:hover {
	background: #f2f0ee;
}

.carbone-market-switcher__option.is-current {
	background: #f2f0ee;
	cursor: default;
}

.carbone-market-switcher__option .carbone-market-switcher__flag {
	width: 22px;
	height: 22px;
}

.carbone-market-switcher__currency {
	margin-left: auto;
	font-size: 12px;
	color: #9a9a9a;
}

/* Nav menu item: device visibility (set per-item in Appearance > Menus) */
.carbone-market-switcher-item {
	display: flex;
	align-items: center;
}

@media (max-width: 767px) {
	.carbone-hide-on-mobile.carbone-market-switcher-item {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.carbone-hide-on-tablet.carbone-market-switcher-item {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.carbone-hide-on-desktop.carbone-market-switcher-item {
		display: none !important;
	}
}
