/* ═══════════════════════════════════════════════
   FOOTER EISENVOLT — Style Colas Premium
   ═══════════════════════════════════════════════ */

/* ── Reset Astra Footer ── */
.ast-footer-overlay,
.site-footer,
.ast-small-footer {
	display: none !important;
}

/* ── Footer Container ── */
.ese-footer {
	background-color: var(--cat-noir);
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-primary);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-top: 0;
}

/* ── Top Section : 4 colonnes ── */
.ese-footer__top {
	padding: 5rem 0 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ese-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 3rem;
}

/* ── Branding (colonne 1) ── */
.ese-footer__logo {
	max-height: 48px;
	width: auto;
	margin-bottom: 1.2rem;
	filter: brightness(0) invert(1);
}

.ese-footer__logo-link {
	display: inline-block;
}

.ese-footer__logo-text {
	font-family: var(--font-headings);
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--cat-blanc);
	text-decoration: none;
	letter-spacing: -0.5px;
	display: inline-block;
	margin-bottom: 1.2rem;
}

.ese-footer__logo-text span {
	color: var(--cat-jaune);
}

.ese-footer__baseline {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
	max-width: 280px;
	line-height: 1.6;
}

/* ── Titres de colonne ── */
.ese-footer__heading {
	color: var(--cat-blanc);
	font-family: var(--font-headings);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.ese-footer__heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 2px;
	background: var(--cat-jaune);
	border-radius: 2px;
}

/* ── Listes de liens ── */
.ese-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ese-footer__links li {
	margin-bottom: 0.6rem;
}

.ese-footer__links a,
.ese-footer__links span {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color var(--transition-fast), padding-left var(--transition-fast);
	font-size: 0.9rem;
}

.ese-footer__links a:hover {
	color: var(--cat-jaune);
	padding-left: 4px;
}

/* ── Contact info avec icônes ── */
.ese-footer__contact-info li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.ese-footer__contact-info svg {
	color: var(--cat-jaune);
	flex-shrink: 0;
}

/* ── Réseaux sociaux ── */
.ese-footer__socials {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.ese-footer__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	transition: all var(--transition-fast);
}

.ese-footer__social-icon:hover {
	background: var(--cat-jaune);
	border-color: var(--cat-jaune);
	color: var(--cat-noir);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(255, 214, 0, 0.3);
}

/* WhatsApp avec couleur verte */
.ese-footer__social-icon--whatsapp:hover {
	background: #25D366;
	border-color: #25D366;
	color: var(--cat-blanc);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ── Barre du bas (copyright) ── */
.ese-footer__bottom {
	padding: 1.5rem 0;
	background: rgba(0, 0, 0, 0.25);
}

.ese-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.ese-footer__copyright {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.82rem;
	margin: 0;
}

.ese-footer__bottom-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 1.5rem;
}

.ese-footer__bottom-links a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	font-size: 0.82rem;
	transition: color var(--transition-fast);
}

.ese-footer__bottom-links a:hover {
	color: var(--cat-jaune);
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1024px) {
	.ese-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.ese-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.ese-footer__top {
		padding: 3rem 0 2rem;
	}

	.ese-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ese-footer__brand {
		grid-column: auto;
		text-align: center;
	}

	.ese-footer__baseline {
		max-width: 100%;
		margin: 0 auto;
	}

	.ese-footer__heading::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.ese-footer__col {
		text-align: center;
	}

	.ese-footer__contact-info li {
		justify-content: center;
	}

	.ese-footer__socials {
		justify-content: center;
	}

	.ese-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.ese-footer__bottom-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.ese-footer__logo {
		margin-left: auto;
		margin-right: auto;
	}
}
