/* ============================================================
   Expertise Bière Widgets — CSS Overrides
   Surcharges de styles tiers (Brevo, plugins, thème…)
   ============================================================ */

/* ── Liens adresse + téléphone ── */
.elementor-element-45d892c a,
.elementor-element-ac91a1b a {
	color: #1a1a1a !important;
	text-decoration: none !important;
}

/* ── References line one (mobile) ── */
@media (max-width: 767px) {
	.references-line-one {
		position: absolute;
		top: -60px;
	}
}

/* ── Slider horizontal "Pourquoi nous ?" (mobile) ── */
@media (max-width: 767px) {
	.elementor-element-fb7b9cf {
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		overflow-x: scroll !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch;
		gap: 16px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
		scroll-padding-left: 20px;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.elementor-element-fb7b9cf::-webkit-scrollbar {
		display: none;
	}

	.elementor-element-fb7b9cf > .e-con {
		flex: 0 0 85% !important;
		width: 85% !important;
		min-width: 0 !important;
		scroll-snap-align: start !important;
	}
}

/* ── Trusted clients : marquee (tous écrans) ── */
.trusted-clients {
	overflow: hidden !important;
	flex-wrap: nowrap !important;
	padding: 20px 0 !important;
}

.trusted-clients .tc-track {
	display: flex;
	width: max-content;
	animation: tc-scroll 25s linear infinite;
}

.trusted-clients .tc-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 0 16px;
	flex-shrink: 0;
}

.trusted-clients .tc-inner img {
	height: 90px !important;
	width: auto !important;
	max-width: none !important;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.trusted-clients .tc-inner img {
		width: calc((100vw - 96px) / 3) !important;
		height: auto !important;
	}
}

@keyframes tc-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ── Bouton inscription Brevo (shortcode [sibwp_form]) ── */
/* ── Portfolio : forcer fond blanc + texte sombre (override Salient) ── */
/* ── Menu mobile : supprimer puces nav ── */
.eb-mmenu__nav-list,
.eb-mmenu__nav-list li {
	list-style: none !important;
}

html body .eb-portfolio__card {
	background-color: #ffffff !important;
	color: #1a1a1a !important;
}

html body .eb-portfolio__card h3,
html body .eb-portfolio__card p,
html body .eb-portfolio__card li,
html body .eb-portfolio__card span,
html body .eb-portfolio__card a:not(.eb-portfolio__cta):not(.eb-portfolio__cta-wrap a) {
	color: #1a1a1a !important;
}

/* ── Bouton inscription Brevo (shortcode [sibwp_form]) ── */
.sib-default-btn {
	background-color: #1a1a1a !important;
	color: #ffffff !important;
	border-radius: 50px !important;
	border: 2px solid #ffffff !important;
	box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.55) !important;
	padding: 14px 40px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	line-height: 1.2 !important;
	min-height: unset !important;
	cursor: pointer !important;
	display: inline-block !important;
	width: auto !important;
}

.sib-default-btn:hover {
	opacity: 0.85 !important;
	box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.55) !important;
	transform: translateY(2px) !important;
	transition: all 0.15s ease !important;
}

/* ============================================================
   WPForms #321 — Contact 2026 (scope : .contact-form uniquement)
   ============================================================ */

/* Typo globale */
.contact-form {
	font-family: 'Roboto Condensed', sans-serif !important;
}

/* Cacher les labels principaux uniquement */
.contact-form .wpforms-field-label {
	display: none !important;
}

/* Sublabels : faux placeholders positionnés en overlay sur l'input */
.contact-form .wpforms-field-row-block {
	position: relative !important;
}

.contact-form .wpforms-field-sublabel {
	position: absolute !important;
	top: 50% !important;
	left: 22px !important;
	transform: translateY(-50%) !important;
	pointer-events: none !important;
	color: #aaa !important;
	font-weight: 600 !important;
	font-size: 1em !important;
	margin: 0 !important;
	transition: opacity 0.15s !important;
	z-index: 1 !important;
}

/* Masquer le sublabel quand l'input est actif ou rempli */
.contact-form input:focus ~ .wpforms-field-sublabel,
.contact-form input:not([value=""]) ~ .wpforms-field-sublabel {
	opacity: 0 !important;
}

/* Inputs texte + email */
.contact-form input[type="text"],
.contact-form input[type="email"] {
	background: #ffffff !important;
	border: 2px solid #1a1a1a !important;
	border-radius: 10px !important;
	padding: 14px 22px !important;
	font-size: 1em !important;
	font-weight: 600 !important;
	color: #1a1a1a !important;
	width: 100% !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
	outline: none !important;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus {
	border-color: #1a1a1a !important;
	box-shadow: 0 0 0 3px rgba(26,26,26,0.1) !important;
}

/* Textarea */
.contact-form textarea {
	background: #ffffff !important;
	border: 2px solid #1a1a1a !important;
	border-radius: 10px !important;
	padding: 16px 22px !important;
	font-size: 1em !important;
	font-weight: 600 !important;
	color: #1a1a1a !important;
	width: 100% !important;
	min-height: 200px !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
	outline: none !important;
	resize: vertical;
}

.contact-form textarea:focus {
	border-color: #1a1a1a !important;
	box-shadow: 0 0 0 3px rgba(26,26,26,0.1) !important;
}

/* Placeholders */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #aaa !important;
	font-weight: 600 !important;
}

/* Champ email pleine largeur */
.contact-form .wpforms-field-medium {
	max-width: 100% !important;
}

/* Empêcher le container de stretch le bouton */
.contact-form .wpforms-submit-container {
	display: flex !important;
	justify-content: flex-start !important;
}

/* Bouton Envoyer */
.contact-form .wpforms-submit.wpforms-submit {
	all: unset !important;
	position: relative !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 12px !important;
	width: fit-content !important;
	background: #1E1E1E !important;
	color: #ffffff !important;
	font-family: 'Roboto Condensed', sans-serif !important;
	font-weight: 700 !important;
	font-size: 20px !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	padding: 14px 28px !important;
	border-radius: 40px !important;
	cursor: pointer !important;
	border: 2px solid #ffffff !important;
	box-shadow: 0 2px 0 0 #1E1E1E !important;
	transition: opacity 0.2s !important;
	margin-top: 8px !important;
	box-sizing: border-box !important;
}

/* Icône flèche */
.contact-form .wpforms-submit.wpforms-submit::after {
	content: '' !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 24px !important;
	height: 24px !important;
	border: 2px solid #ffffff !important;
	border-radius: 50% !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6h8M7 3l3 3-3 3' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	flex-shrink: 0 !important;
}

.contact-form .wpforms-submit.wpforms-submit:hover {
	opacity: 0.85 !important;
}
