/* ============ Desktop Header Dropdown Switcher ============ */
.sgcs-dropdown-switcher {
	position: relative;
	display: inline-block;
	font-family: Arial, Helvetica, sans-serif;
	z-index: 999;
}

.sgcs-dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 6px;
	padding: 7px 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	color: inherit;
}

.sgcs-globe-icon {
	font-size: 14px;
}

.sgcs-caret {
	font-size: 10px;
	margin-left: 2px;
	transition: transform 0.2s ease;
}

.sgcs-dropdown-switcher.sgcs-open .sgcs-caret {
	transform: rotate(180deg);
}

.sgcs-dropdown-menu {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.12);
	min-width: 170px;
	padding: 6px;
	display: none;
	flex-direction: column;
}

.sgcs-dropdown-switcher.sgcs-open .sgcs-dropdown-menu {
	display: flex;
}

.sgcs-dropdown-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 6px;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 500;
}

.sgcs-dropdown-item:hover {
	background: #f5f0e6;
}

.sgcs-dropdown-item.sgcs-active {
	background: #fdf1d9;
	font-weight: 700;
	color: #b3001b;
}

.sgcs-flag {
	font-size: 16px;
	line-height: 1;
}

/* ============ WoodMart-style Mobile Menu CURRENCY block ============ */
.sgcs-mobile-currency-block {
	border-top: 1px solid #ececec;
	font-family: Arial, Helvetica, sans-serif;
}

.sgcs-mobile-currency-title {
	background: #f6f6f6;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #1a1a1a;
	padding: 14px 18px;
	text-transform: uppercase;
}

.sgcs-mobile-currency-list {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	padding: 14px 18px 18px 18px;
}

.sgcs-mobile-currency-item {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 600;
}

.sgcs-mobile-currency-item .sgcs-flag {
	font-size: 16px;
}

.sgcs-mobile-currency-item.sgcs-active .sgcs-code {
	text-decoration: underline;
	color: #b3001b;
}

/* Highlight box matching the reference screenshot's red outline emphasis (subtle, optional) */
.sgcs-mobile-currency-block.sgcs-highlight {
	border: 2px solid #b3001b;
	border-radius: 6px;
	margin: 0 10px 10px 10px;
}

@media (max-width: 480px) {
	.sgcs-mobile-currency-list {
		gap: 14px;
	}
}
