/**
 * Hexfy Selector de idioma (i18n) - Widget compacto tipo botón
 */

.hexfy-lang {
	--hexfy-lang-border: rgba(248, 250, 252, 0.2);
	--hexfy-lang-text: #94a3b8;
	--hexfy-lang-accent: #3b82f6;
}

.hexfy-lang {
	display: inline-block;
}

/* Varios botones (ES | EN) */
.hexfy-lang__buttons {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	flex-wrap: wrap;
}

.hexfy-lang__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	padding: 0.35rem 0.6rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--hexfy-lang-text);
	text-decoration: none;
	border: 1px solid var(--hexfy-lang-border);
	border-radius: 6px;
	transition: border-color 0.2s, color 0.2s;
}

.hexfy-lang__btn:hover,
.hexfy-lang__btn.is-current {
	border-color: var(--hexfy-lang-accent);
	color: var(--hexfy-lang-accent);
}

/* Dropdown */
.hexfy-lang__dropdown {
	position: relative;
	display: inline-block;
}

.hexfy-lang__dropdown-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.6rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--hexfy-lang-text);
	background: transparent;
	border: 1px solid var(--hexfy-lang-border);
	border-radius: 6px;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

.hexfy-lang__dropdown-btn:hover {
	border-color: var(--hexfy-lang-accent);
	color: var(--hexfy-lang-accent);
}

.hexfy-lang__dropdown-btn[aria-expanded="true"] {
	border-color: var(--hexfy-lang-accent);
}

.hexfy-lang__dropdown-arrow {
	transition: transform 0.2s;
}

.hexfy-lang__dropdown-btn[aria-expanded="true"] .hexfy-lang__dropdown-arrow {
	transform: rotate(180deg);
}

.hexfy-lang__dropdown-list {
	position: absolute;
	top: 100%;
	right: 0;
	left: auto;
	margin: 0.25rem 0 0;
	padding: 0.25rem 0;
	list-style: none;
	background: #1e293b;
	border: 1px solid var(--hexfy-lang-border);
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	min-width: 6rem;
	z-index: 100;
}

.hexfy-lang__dropdown-list[hidden] {
	display: none;
}

.hexfy-lang__dropdown-item {
	display: block;
	padding: 0.4rem 0.75rem;
	font-size: 0.8125rem;
	color: var(--hexfy-lang-text);
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
}

.hexfy-lang__dropdown-item:hover,
.hexfy-lang__dropdown-item.is-current {
	color: var(--hexfy-lang-accent);
}

.hexfy-lang__dropdown-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

/* Flotante: posición fija en pantalla */
.hexfy-lang--float {
	position: fixed;
	z-index: 9999;
	margin: 0;
}

.hexfy-lang--float-bottom-right {
	bottom: var(--hexfy-lang-float-offset, 20px);
	right: var(--hexfy-lang-float-offset, 20px);
	left: auto;
	top: auto; 
}

.hexfy-lang--float-bottom-left {
	bottom: var(--hexfy-lang-float-offset, 20px);
	left: var(--hexfy-lang-float-offset, 20px);
	right: auto;
	top: auto;
}

.hexfy-lang--float-top-right {
	top: var(--hexfy-lang-float-offset, 20px);
	right: var(--hexfy-lang-float-offset, 20px);
	bottom: auto;
	left: auto;
}

.hexfy-lang--float-top-left {
	top: var(--hexfy-lang-float-offset, 20px);
	left: var(--hexfy-lang-float-offset, 20px);
	bottom: auto;
	right: auto;
}

/* Dropdown del flotante: abrir hacia arriba si está abajo */
.hexfy-lang--float-bottom-right .hexfy-lang__dropdown-list,
.hexfy-lang--float-bottom-left .hexfy-lang__dropdown-list {
	top: auto;
	bottom: 100%;
	margin: 0 0 0.25rem 0;
}

.hexfy-lang--float-bottom-right .hexfy-lang__dropdown-list {
	right: 0;
	left: auto;
}

.hexfy-lang--float-bottom-left .hexfy-lang__dropdown-list {
	left: 0;
	right: auto;
}
