/* Deli Multi Currency — frontend switcher.
   Intentionally minimal so it inherits your theme's look. Override freely. */

.dmc-switcher {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	line-height: 1.4;
}

.dmc-switcher .dmc-select {
	padding: 6px 10px;
	border: 1px solid rgba( 0, 0, 0, 0.18 );
	border-radius: 8px;
	background: #fff;
	color: inherit;
	cursor: pointer;
	max-width: 220px;
}

.dmc-style-buttons,
.dmc-style-flags {
	flex-wrap: wrap;
}

.dmc-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 10px;
	border: 1px solid rgba( 0, 0, 0, 0.18 );
	border-radius: 8px;
	background: #fff;
	color: inherit;
	cursor: pointer;
	font: inherit;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.dmc-btn:hover {
	border-color: rgba( 0, 0, 0, 0.4 );
}

.dmc-btn.dmc-active {
	background: #111;
	color: #fff;
	border-color: #111;
}

.dmc-flag {
	font-size: 1.05em;
	line-height: 1;
}

/* Floating / sticky switcher */
.dmc-sticky {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 9999;
	background: #fff;
	padding: 8px 10px;
	border-radius: 12px;
	box-shadow: 0 6px 24px rgba( 0, 0, 0, 0.18 );
}

@media ( max-width: 600px ) {
	.dmc-sticky {
		right: 10px;
		bottom: 10px;
		padding: 6px 8px;
	}
}

/* In a nav menu */
.dmc-menu-item {
	display: flex;
	align-items: center;
}
