/* Banner de consentimiento de cookies — Parrilla El Enemigo */
#ee-cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: flex;
	justify-content: center;
	padding: 16px;
	font-family: 'Montserrat', sans-serif;
	box-sizing: border-box;
}

#ee-cookie *,
#ee-cookie *::before,
#ee-cookie *::after {
	box-sizing: border-box;
}

.ee-cookie__box {
	width: 100%;
	max-width: 900px;
	background: #1f1613;
	color: #f2ece7;
	border: 1px solid #5B372F;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
	padding: 20px 22px;
}

.ee-cookie__text strong {
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
	color: #fff;
}

.ee-cookie__text p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.55;
	color: #d8cfc8;
}

.ee-cookie__text a {
	color: #AB8D79;
	text-decoration: underline;
}

.ee-cookie__text a:hover {
	color: #fff;
}

.ee-cookie__panel {
	margin-top: 14px;
	border-top: 1px solid rgba(171, 141, 121, 0.25);
	padding-top: 12px;
}

.ee-cookie__row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	line-height: 1.5;
	color: #d8cfc8;
	margin-bottom: 10px;
	cursor: pointer;
}

.ee-cookie__row input {
	margin-top: 2px;
	flex: 0 0 auto;
}

.ee-cookie__row strong {
	color: #fff;
}

.ee-cookie__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 18px;
}

.ee-cookie__btn {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 10px 20px;
	border-radius: 6px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Aceptar y Rechazar tienen la misma prominencia (requisito AEPD) */
.ee-cookie__btn--primary {
	background: #5B372F;
	color: #fff;
	border-color: #5B372F;
}

.ee-cookie__btn--primary:hover {
	background: #74463b;
	border-color: #74463b;
}

.ee-cookie__btn--secondary {
	background: transparent;
	color: #f2ece7;
	border-color: #AB8D79;
}

.ee-cookie__btn--secondary:hover {
	background: rgba(171, 141, 121, 0.15);
}

.ee-cookie__btn--ghost {
	background: transparent;
	color: #AB8D79;
	border-color: transparent;
	margin-right: auto; /* empuja Configurar a la izquierda */
	text-decoration: underline;
	padding-left: 4px;
	padding-right: 4px;
}

.ee-cookie__btn--ghost:hover {
	color: #fff;
}

@media (max-width: 560px) {
	.ee-cookie__actions {
		justify-content: stretch;
	}
	.ee-cookie__btn--primary,
	.ee-cookie__btn--secondary {
		flex: 1 1 auto;
	}
	.ee-cookie__btn--ghost {
		flex: 1 1 100%;
		margin-right: 0;
		text-align: center;
		order: 3;
	}
}
