




/* ==========================================================================
   MENU MOBILE
   ========================================================================== */

/* Menu mobile pleine largeur */
body:not(.pp-visualbuilder) .pp-slideover > .pp-block {
	width: 100vw !important;
}


/* ==========================================================================
   FORMULAIRE DE CONTACT
   ========================================================================== */

/* Conteneur du formulaire */
#formulaire-responsive {
	margin: 0 auto;
	width: 100%;
}

/* Champs de saisie */
.name12345,
.whereabout12345,
.mail12345,
.tel12345,
.services12345 {
	background-color: #fdfdfd;
	border: 1px solid #ccc;
	color: #3e3e3e;
	font-size: calc(1em * 0.98);
	padding: 10px;
	margin: 0 0 10px 0;
}

.name12345,
.whereabout12345,
.services12345 {
	width: 100% !important;
}

/* Email / téléphone sur 2 colonnes */
.mail12345 {
	clear: left;
	width: calc(50% - 5px);
}

.tel12345 {
	clear: right;
	float: right;
	width: calc(50% - 5px);
}

/* Textarea du message */
.message12345 {
	background-color: #fdfdfd;
	border: 1px solid #ccc;
	color: #3e3e3e;
	width: 100% !important;
	max-width: 100%;
	height: 140px;
	min-height: 130px;
	max-height: 240px;
	font-size: calc(1em * 0.98);
	padding: 10px;
	clear: left;
}

/* Bouton d'envoi */
.button,
#searchsubmit,
input[type="submit"] {
	background: #e8e8e8;
	width: 140px;
	height: 40px;
	color: #979797;
	font-variant: all-petite-caps;
	font-size: 19px;
	border: solid 0px #555;
	margin: 0 0 0 0;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	border-radius: 0px;
	padding: 0 0 3px 0;
}

/* Survol (bug : ne touche que input[type="submit"], voir remarque à côté) */
.button,
#searchsubmit,
input[type="submit"]:hover {
	background-color: #f2f2f2;
}

/* Positionnement du bouton */
.form-pos-right {
	text-align: center;
	margin: 15px 0 0 0;
}

.wpcf7-form-control.has-spinner.wpcf7-submit {
	margin: 0 0 0 70px;
}

/* Champs invalides (CF7) */
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.name12345.wpcf7-not-valid,
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.mail12345.wpcf7-not-valid,
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.tel12345.wpcf7-not-valid,
.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.services12345.wpcf7-not-valid,
.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.message12345.wpcf7-not-valid {
	background-color: rgba(255, 0, 0, 0.02);
	border: 1px solid #f00;
}

/* Tooltip d'erreur masquée */
span.wpcf7-not-valid-tip {
	color: #f00;
	display: none;
	font-size: 1em;
}


/* ==========================================================================
   ACCORDÉON (plugin Easy Accordion)
   ========================================================================== */

/* État fermé */
.collapsed {
	background-color: #eee;
	font-weight: normal !important;
}

/* Carte */
.sp-easy-accordion .sp-ea-single {
	border: none !important;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(123, 123, 123, .25);
}

/* État ouvert */
.sp-ea-one .ea-card.ea-expand {
	border-radius: 10px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
}

/* Fond ouvert */
.sp-ea-one .ea-card.ea-expand .ea-header a {
	background-color: #ece6dd;
}

/* Header, version mobile */
@media (max-width: 768px) {
	.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
		font-size: 12px !important;
		line-height: 1.35;
	}
}

/* Header */
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
	position: relative !important;
	display: block !important;
	padding: 10px 54px 10px 20px !important; /* espace autour du titre h3 */
	color: #444 !important;
	background-color: #F2EFEB !important;
	font-size: 17px !important;
	font-weight: 400 !important;
	text-align: left !important;
	line-height: 1.45 !important;
	text-decoration: none !important;
	text-transform: none !important;
	box-sizing: border-box !important;
	border: 0 !important;
	outline: 0 !important;
	transition: background-color .2s ease;
}

/* Header au survol */
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a:hover {
	background-color: #EFEBE6 !important;
}

/* Icône +/- : neutralise l'icône native du plugin */
.sp-easy-accordion .ea-expand-icon::before {
	content: "" !important;
}

/* Icône +/- : base (chevron en SVG inline) */
.sp-easy-accordion .ea-expand-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' fill='none' stroke='%23686865' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
	transition: transform .25s ease;
}

/* Icône +/- : fermé */
.sp-easy-accordion .eap-icon-ea-expand-plus {
	transform: translateY(-50%) rotate(0deg);
}

/* Icône +/- : ouvert (rotation du chevron) */
.sp-easy-accordion .eap-icon-ea-expand-minus {
	transform: translateY(-50%) rotate(90deg);
}

/* Icône +/- : position */
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a .ea-expand-icon {
	position: absolute !important;
	right: 14px !important;
	left: auto !important;
	top: 50% !important;
	width: 20px !important;
	height: 20px !important;
	margin: 0 !important;
	text-align: left !important;
}

/* Listes : reset */
.pp-text-module-body ul,
.public-DraftEditor-content ul.public-DraftStyleDefault-ul {
	margin-top: 0;
	margin-bottom: 10px;
	padding-left: 0 !important;
	margin-left: 0 !important;
	list-style: none !important;
	overflow: visible;
}

/* Listes : structure des items */
.pp-text-module-body ul li,
.public-DraftEditor-content li.public-DraftStyleDefault-unorderedListItem {
	position: relative;
	margin-left: 0;
	margin-bottom: .5em;
	padding-left: 1.5em;
	overflow: visible;
	list-style: none !important;
	line-height: 1.4;
}

/* Listes : police */
.pp-text-module-body li,
.public-DraftEditor-content li {
	font-family: "Inter_24pt-Light.woff";
}

/* Contenu : taille de texte */
.sp-easy-accordion .ea-body,
.sp-easy-accordion .ea-body p,
.sp-easy-accordion .ea-body li,
.sp-easy-accordion .ea-body li a {
	font-size: 16px !important;
	line-height: 1.4 !important;
}

/* Contenu : espacement intérieur */
.sp-easy-accordion .ea-body {
	padding: 18px 18px !important;
	line-height: 1.5;
}

/* Contenu : paragraphes */
.sp-easy-accordion .ea-body p {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.5 !important;
}

.sp-easy-accordion .ea-body p:not(:last-child) {
	margin-bottom: 14px !important;
}

/* Contenu : masque les paragraphes vides */
.sp-easy-accordion .ea-body p:empty {
	display: none !important;
}

/* Contenu : titres de sous-section (strong en début de bloc) */
.sp-easy-accordion .ea-body > div strong,
.sp-easy-accordion .ea-body > p strong {
	display: block;
	margin-bottom: 14px;
	color: #2f2f2f;
	font-size: 1.15em;
	font-weight: 600;
}

/* Contenu : espace entre une liste et le paragraphe suivant */
.sp-easy-accordion .ea-body ul + p {
	margin-top: 18px !important;
}

/* Contenu : listes */
.sp-easy-accordion .ea-body ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.sp-easy-accordion .ea-body ul li {
	position: relative;
	margin-bottom: 6px;
	padding-left: 30px;
	list-style: none;
	line-height: 1.45;
}

.sp-easy-accordion .ea-body ul li:last-child {
	margin-bottom: 0 !important;
}

/* Contenu : puce = icône check en SVG */
.sp-easy-accordion .ea-body ul li::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 22px;
	height: 22px;
	background-image: url("/wp-content/uploads/svg/check_gold.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.sp-easy-accordion .ea-body p strong {
	margin-bottom: 10px;
}

/* Contenu : dernier paragraphe après une liste (mention légale, etc.) */
.sp-easy-accordion .ea-body ul + p:last-of-type {
	margin-top: 20px !important;
	color: #5f5f5f;
	font-size: .95em;
	line-height: 1.4;
}

/* Contenu : forçage de visibilité (probablement redondant, voir remarque à côté) */
.ea-body p,
.ea-body {
	display: block !important;
	color: #222 !important;
	font-size: 16px !important;
	line-height: 1.2 !important;
	opacity: 1 !important;
	visibility: visible !important;
}
