/* ==========================================================================
   Plugin Traduction IA — Frontend language switcher styles
   ========================================================================== */

/* ── List style ──────────────────────────────────────────────────────── */
.pt-switcher--list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pt-switcher--list li {
	margin: 0;
}

.pt-switcher--list a {
	display: inline-block;
	padding: 4px 10px;
	border: 1px solid currentColor;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9em;
	transition: opacity 0.2s;
}

.pt-switcher--list a:hover {
	opacity: 0.75;
}

.pt-switcher--list .pt-active a {
	font-weight: 700;
	border-width: 2px;
}

/* ── Dropdown style ──────────────────────────────────────────────────── */
.pt-switcher--dropdown select {
	padding: 6px 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
	font-size: 0.9em;
	cursor: pointer;
	background: #fff;
}

/* ── Flags style ─────────────────────────────────────────────────────── */
.pt-switcher--flags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pt-flag-link {
	display: inline-block;
	font-size: 1.6em;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.15s, opacity 0.15s;
	opacity: 0.7;
}

.pt-flag-link:hover,
.pt-flag-link.pt-active {
	opacity: 1;
	transform: scale( 1.2 );
}

.pt-flag-link.pt-active {
	cursor: default;
	pointer-events: none;
}
