/* Reset & Base */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

html {
  font-display: swap;
}

body {
 font-family: 'Poppins', Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
}

/* Header & Menu */
header {
background: #fff; /* Menu background blanc */
padding: 15px 20px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1000;

}



.logo {
font-size: 24px; 
font-weight: 600; 
color: #2A3775; 
text-shadow: 0 1px 0 #ccc;
 font-family: 'Poppins', Arial, sans-serif;


}
		
.logo a {
font-size: 24px;
font-weight: 600;
color: #2A3775;
			text-decoration: none;
			 font-family: 'Poppins', Arial, sans-serif;
}

.search-region {
 width: 100%;
}

nav {
flex-grow: 1;
}

nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 20px;
padding-right: 200px;
}

nav ul li a {
text-decoration: none;
color: #2A3775;
font-weight: 600; /* Liens en gras */
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
display: inline-block;
width: 100%;
}

nav ul li a:hover {
background-color: #2A3775;
color: #fff;
padding: 5px 10px;	
}

.menu-icon {
display: none;
cursor: pointer;
flex-direction: column;
gap: 5px;
}

.menu-icon span {
display: block;
height: 3px;
width: 25px;
background-color: #2A3775;
border-radius: 2px;
}

/* Sous-menu */
.submenu {
    display: none; /* Masquer par défaut */
    position: absolute;
    background: #fff; /* Fond blanc */
    padding: 10px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 10;
}

nav ul li {
    position: relative; /* Position relative pour que le sous-menu s'affiche correctement */
}

nav ul li:hover .submenu {
    display: block; /* Afficher au survol */
}

.submenu li {
    padding: 5px 20px;
    text-align: left;
}

.submenu li a {
    text-decoration: none;
    color: #2A3775;
    font-weight: 500;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.submenu li a:hover {
    background-color: #2A3775;
    color: #fff;
padding: 5px 10px;	
}


@media (max-width: 768px) {
.menu-icon {
display: flex;
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);

}

nav ul {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
left: 10px;
background: #fff;
border: 1px solid #ddd;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 10px;
border-radius: 5px;
width: 200px;
}

nav ul.show {
display: flex;
}

nav ul li {
margin-bottom: 10px;
}


}

/* Hero Section */

.hero-concess {
background: #796060; /* Dégradé bleu clair */
color: #fff;
text-align: center;
padding: 20px 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.hero {

background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://www.soscassemoto.fr/hero.jpg");
background-size: cover;
background-position: center;
color: #fff;
text-align: center;
/*padding: 60px 20px; */
padding: 30px 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.hero h1 {
font-size: 32px;
font-weight: 600;
margin-bottom: 20px;
}

.hero p {
font-size: 16px;
margin-bottom: 30px;
color: #fff;
}

.hero1 {
background: #DF1D1D; /* Dégradé bleu clair */
color: #fff;
text-align: center;
/*padding: 60px 20px; */
padding: 15px 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.hero1 h1 {
font-size: 32px;
font-weight: 600;
margin-bottom: 20px;
}

.hero1 p {
font-size: 16px;
margin-top: 15px;
color: #fff;
font-weight: 600;
}

.hero1 p a{
    text-decoration: none;
	background-image: linear-gradient(#0098D9, #0098D9);
    margin: 10px;
    padding: 5px 5px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.hero2 {
background: #00A9CD; /* Dégradé bleu clair */
color: #fff;
text-align: center;
/*padding: 60px 20px; */
padding: 15px 5px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.hero2 h1 {
font-size: 32px;
font-weight: 600;

}

.hero2 p {
font-size: 16px;
margin-top: 15px;
color: #fff;
font-weight: 600;
padding-bottom: 20px;
}

.hero2 p a{
    text-decoration: none;
	background-image: linear-gradient(#0098D9, #0098D9);
    margin: 10px;
    padding: 5px 5px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}


/* Style global pour le formulaire */
.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;

}

.search-box select,
.search-box input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
	font-family: 'Poppins', sans-serif;		
}

.search-box button {
    padding: 10px 20px;
    background-color: #EE1C24; /* Couleur du bouton */
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-family: 'Poppins', sans-serif;		
}

.search-box button:hover {
    background-color: #EE1C24; /* Couleur du bouton au survol */
}

.search-box select {
    cursor: pointer;
}

/* Style global pour le formulaire par marque dans partie concess */
.search-box1 {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
	flex-direction: column;
}

.search-box1 select,
.search-box1 input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
	font-family: 'Poppins', sans-serif;		
}

.search-box1 button {
    padding: 10px 20px;
    background-color: #EE1C24; /* Couleur du bouton */
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-family: 'Poppins', sans-serif;		
}

.search-box1 button:hover {
    background-color: #EE1C24; /* Couleur du bouton au survol */
}

.search-box1 select {
    cursor: pointer;
}


@media (max-width: 768px) {
	
	
.hero h1 {
font-size: 24px;

}


.hero1 h1 {
font-size: 24px;
color: #000;
}

.search-box select {
width: 100%;

}

.search-box input[type="text"] {
width: 100%;
}

.search-box {
flex-direction: column;
align-items: center;
gap: 15px;
}

.search-box1 select {
width: 100%;

}

.search-box1 input[type="text"] {
width: 100%;
}

.search-box1 {
flex-direction: column;
align-items: center;
gap: 15px;
}

}


.container-intro {
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    align-content: center;
    justify-content: center;


}

.container-intro ul {
    list-style: none;
	max-width: 1140px;

}

/* Styling des <li> */
.container-intro ul li {
    color: #555;
    line-height: 1.6;	
    align-items: center;
list-style-type: none;

}

.container-intro ul li::before{
  padding-right: 8px;
}


.container-intro h1 {
font-size: 25px;
font-weight: 600;
color: #2A3775;
text-align:center;

}

.container-intro h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
    text-align: center;
	margin: 20px 20px 0px 20px;
}

.container-intro h2 a {
  text-decoration: none;	
	font-weight: 600;
	color: #2A3775;	
}

.container-intro h3 {
color: #2A3775;
    font-weight: 700;
    font-size: 22px;
    max-width: 1140px;
    margin-top: 15px;
}

.container-intro p {
    color: #555;
    font-size: 16px;
    max-width: 1140px;
	margin-top: 20px;
	text-align: justify;	


}

.container-intro p a {
  text-decoration: none;	
    font-size: 16px;
	text-align: left;
	margin-top: 20px;
	font-weight: 600;
	color: #2A3775;	
	
}

.container-intro a {
  text-decoration: none;	
    font-size: 16px;
	text-align: left;
	color: #2A3775;	
	
}

.container-intro span {
	margin-top: 20px;
}


.container-intro span p{
	margin-top: 20px;
padding-right: 10px;
display : inline;
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;	
}

.container-intro1 {
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    align-content: center;
    justify-content: center;
    margin: 20px 20px 20px 20px;
	background-color : #EDEDF1;
}

.container-intro1 ul li{
list-style: none;

}

.container-intro1 ul li span{
color: red;
font-weight: 600;
padding-right: 10px;

}


.container-intro1 h1 {
font-size: 25px;
font-weight: 600;
color: #2A3775;
text-align:center;
}

.container-intro1 h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
    text-align: center;
}


.container-intro1 p {
    color: #555;
    font-size: 16px;
	text-align: left;
    max-width: 1140px;
	margin-top: 20px;
}

.container-intro1 p a {
  text-decoration: none;	
    font-size: 16px;
	text-align: left;
	margin-top: 20px;
	font-weight: 600;
	color: #2A3775;	
	
}

.container-intro1 span {
	margin-top: 20px;
}


.container-intro1 span p{
	margin-top: 20px;
padding-right: 10px;
display : inline;
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;	
}


.services-intro {
    display: flex;
    background-color: #EDEDF1;
    flex-wrap: wrap;
	flex-direction: column;
    align-content: center;
    justify-content: center;
    padding-left: 20px;
	padding-right: 20px;
}

/* Réinitialisation des marges et paddings des <li> */
.services-intro ul {
    list-style: none;
	max-width: 1140px;
	margin: 0 auto;	
}

/* Styling des <li> */
.services-intro ul li {
    color: #555;
    line-height: 1.6;	
    align-items: center;
list-style-type: none;
}

.services-intro ul li::before{
  content: "⚙️";
  padding-right: 8px;
}



.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -1px;
    padding-bottom: 20px;   
    background-color: #EDEDF1;
}

.services p {
    color: #555;
    font-size: 16px;
	text-align: left;
    max-width: 1140px;
	margin-top: 20px;
	margin-bottom: 10px;	

}

.services-marques {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -1px;
    padding-bottom: 20px;   
    background-color: #fff;
}

.services h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
    text-align: center;
}

.services-intro h1 {
font-size: 25px;
font-weight: 600;
color: #2A3775;
text-align:center;

}

.services-intro h2 {
    padding-top : 20px;
    padding-bottom : 10px;
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
    text-align: center;
	margin: 0px 20px 0px 20px;	
}

.services-intro h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2A3775;
    text-align: left;

}



.services-intro p {
    color: #555;
    font-size: 16px;
	text-align: left;
    max-width: 1140px;
	margin-top: 10px;
	margin-bottom: 20px;	
	text-align:justify;

}

.container-intro-concess {
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    align-content: center;
    justify-content: center;
    margin: 20px 20px 20px 20px;
}


.container-intro-concess h1 {
font-size: 25px;
font-weight: 600;
margin-bottom: 20px;
color: #2A3775;
text-align:center;
}

.container-intro-concess h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
}


.container-intro-concess p {
    color: #555;
    font-size: 16px;
	text-align: left;
    max-width: 1140px;
	margin-top: 20px;
}
	
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;

}

.container h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
    text-align: center;
}

.container p {
    color: #555;
    font-size: 16px;
    max-width: 1140px;
	margin-top: 20px;
	margin-bottom: 10px;	
	text-align: justify;
}

.container-suite {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.edito-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
/*    margin-bottom: 20px; */
	background-color: #fff;
flex-direction: column;	
font-family: 'Poppins', sans-serif;
}

.edito-container p{
    margin-top: 10px; 
}

.banniere {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 15px;

}
.banniere1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.banniere2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;

}


.container1 {
	background-color: #EDEDF1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.faq {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.faq a {
    padding-left:10px;
}

.faq b {
    padding-left:10px;
}

.ajouter-pro {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
	margin-right: 10px;
}

.ajouter-pro  a {
    padding-left:10px;
}

.ajouter-pro  b {
    padding-left:10px;
}

.ajouter-pro1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.ajouter-pro1  a {
    padding-left:10px;
}

.ajouter-pro1  b {
    padding-left:10px;
}

#add-pro-btn {
    background-color: #EE1C24;
    font-family: 'Poppins', sans-serif;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#add-pro-btn:hover {
    background-color: #EE1C24; /* Un peu plus foncé au survol */
}


.card {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    width: 30%;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
	margin: 10px;
}

.card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2A3775;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
	text-align:justify;
}

.card p a {
    text-decoration: none;
    color: #fff;
}

.card h3 a {
    text-decoration: none;
    color: #2A3775;
}

.card-reg {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    width: 30%;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
	margin: 10px;
}

.card-reg h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2A3775;
    margin-bottom: 15px;
}

.card-reg h3 {
    color: #2A3775;
    margin-bottom: 15px;
    font-size: 24px;
}


.card-reg p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
	text-align:justify;
}

.card-reg p a {
    text-decoration: none;
    color: #2A3775;
}

.card-reg h3 a {
    text-decoration: none;
    color: #2A3775;
}

.card2 {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
	margin: 10px;
	width:1160px;
}

.card2 ul {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    max-width: 1140px;
    margin: 15px auto;
}

.card2 ul li {
    color: #555;
    line-height: 1.6;
    align-items: center;
    list-style-type: none;
}

.card2 ul li::before {
	  content: "⚙️";
    padding-right: 8px;
}

.card2 h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2A3775;
    margin-bottom: 15px;
}

.card2 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2A3775;
    margin-top: 15px;
}

.card2 h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2A3775;
    margin-top: 15px;
}


.card2 p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
	margin-top: 10px;
text-align: justify;	
	
}

.card2 p a {
    text-decoration: none;
    color: #fff;
}

.card2 h3 a {
    text-decoration: none;
    color: #2A3775;
}

.card2 form {
    font-size: 20px;
    color: #2A3775;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
}

.card2 form p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
	display : flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;	
	
}

.card2 form p label {
    color: #2A3775;
	    font-family: 'Poppins', sans-serif;	
  font-weight: bold;	

}

.card2 p select{
	    font-family: 'Poppins', sans-serif;	

}

.card2 span {
	font-weight: 600;
    color: #EE1C24;
    font-size: 20px;
	    font-family: 'Poppins', sans-serif;	
}


.card2 form input {
width : 30%;
font-family: 'Poppins', sans-serif;
height: 35px;
}

.card2 form p a {
    text-decoration: none;
    color: #2A3775;
}

.card2 form textarea {
width : 100%;
font-family: 'Poppins', sans-serif;
}

.card2 button {
    background-color: #EE1C24;
    font-family: 'Poppins', sans-serif;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.card2 button:hover {
    background-color: #EE1C24; /* Un peu plus foncé au survol */
}

.card1 {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    transition: box-shadow 0.3s ease;
}

.card3 {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    transition: box-shadow 0.3s ease;
}

.card3 h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2A3775;
    margin-bottom: 15px;
}

.card3 p {
    font-size: 16px;
    color: #555;
}

.card3 p a {
    text-decoration: none;
    color: #fff;
}

.card3 h3 a {
    text-decoration: none;
    color: #2A3775;
}

.card-intro {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    transition: box-shadow 0.3s ease;

}

#regions, #departments {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;	
}

#regions:focus, #departments:focus {
    border-color: #2A3775;
}

.region-map img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.card-index {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    width: 30%;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
	margin: 10px;
}

.card-index h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2A3775;
    margin-bottom: 15px;
}

.card-index p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.card-index p a {
    text-decoration: none;
    font-weight: 600;	
    color: #2A3775;	
}

.card-index h3 a {
    text-decoration: none;
    color: #2A3775;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }

    .card1 {
        width: 100%;
    }
 
    .card2 {
        width: 100%;
    }

    .card-reg {
        width: 100%;
    }

    .card-index {
        width: 100%;
    }

    .card2 form {
        width: 100%;
    }
	
	.card2 form label {
        width: 100%;
    }
	
	.card2 form input {
        width: 100%;
    }
	
	.card2 form textarea {
        width: 100%;
    }
			
	
    .card3 {
        width: 100%;
    }
	
    .card-intro {
        width: 100%;
    } 
   
    .region-map img {
        margin-top: 15px;
    }
	
	.container {
        width: 100%;

    }
	
	.container-intro {
        width: 100%;

    }

	.container p {
        width: 100%;


    }
	
	.container-intro p {
        width: 100%;
		padding-left: 15px;
        padding-right: 15px;

    }
	
	.container-intro ul li {
        width: 100%;
		padding-left: 15px;
        padding-right: 15px;		
	}	
	
	.container-intro h3 {
        width: 100%;
		padding-left: 15px;
        padding-right: 15px;		
	}	
	
	.edito-container {
        width: 100%;
    }

	.latest-blog-section {
        width: 100%;
    }
	
	.services-intro {
        width: 100%;
    }
	
	.hero {
        width: 100%;
    }
	


	header {
        width: 100%;
    }
	
}
	



/* Section avec Dégradé */
.last-section-intro {
    background: #eee;
    padding: 20px 20px;
    font-family: 'Poppins', sans-serif;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	}
	
@media (max-width: 768px) {
	.last-section-intro {
        width: 100%;

    }
}	
	
.last-section-intro h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
    text-align: center;
}

.last-section-intro p {
    color: #555;
    font-size: 16px;
	text-align: left;
    max-width: 1140px;
	margin-top: 20px;
}

@media (max-width: 768px) {
		.last-section-intro p {
        width: 100%;
				padding-left: 15px;
        padding-right: 15px;
    }
}
/* Section avec Dégradé */
.intro-section {
    background: #d8feff;
    padding: 20px 20px;
    font-family: 'Poppins', sans-serif;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	}
	
.intro-section h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
    text-align: center;
}

.intro-section p {
    color: #555;
    font-size: 16px;
	text-align: left;
    max-width: 1140px;
}

.last-section {
    background: #defcfb;
    padding-bottom: 20px;
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
	}

/* Cards - Derniers Kinés et Derniers Avis */
.card h3 {
    color: #2A3775;
    margin-bottom: 15px;
    font-size: 24px;
}

/* Derniers Kinés */
.last-pros {
    display: flex;
    flex-direction: column;
}

.pros-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pros-item:last-child {
    border-bottom: none;
}

.pros-item a {
    text-decoration: none;
    color: #2A3775;
    font-weight: 500;
}

.pros-item a:hover {
    color: #fff;
    background-color: #2A3775;
    padding-left: 10px;
}

/* Derniers Avis */
.last-reviews {
    display: flex;
    flex-direction: column;
}

.last-reviews a{
    color: #2A3775;
    text-decoration: none;
}

.review-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.review-item p a {
	color: #2A3775;
     text-decoration: none;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item p {
    color: #555;
    font-size: 16px;
}

.review-item .reviewer {
    color: #2A3775;
    font-weight: 500;
    margin-bottom: 5px;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-5px);
}	

/* Section Dernières Actualités */

.latest-blog-section-intro {
    background-color: #f0f0f0; /* Couleur discrète grise claire */
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;

}

.latest-blog-section-intro h2 {
    font-size: 25px;
    font-weight: 700;
    color: #2A3775;
    text-align: center;
}

.latest-blog-section-intro h3 {
    color: #2A3775;
	font-weight: 700;
    font-size: 22px;
	max-width: 1140px;
    margin: 15px auto;	
}

.latest-blog-section-intro p {
    color: #555;
    font-size: 16px;
	text-align: left;
    max-width: 1140px;
	margin-top: 20px;
}

.latest-blog-section-intro a {
    color: #FF9F43;
    font-weight: bold;
	    text-decoration: none;
}


.latest-blog-section {
    background-color: #f0f0f0; /* Couleur discrète grise claire */
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-family: 'Poppins', sans-serif;

}

.blog-card {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    width: 90%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
	max-width: 1140px;
}

.blog-card h3 {
    color: #2A3775;
    margin-bottom: 15px;
    font-size: 24px;
}

.blog-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.blog-card a {
    text-decoration: none;
    color: #2A3775;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.blog-card a:hover {
    color: #fff;
    background-color: #2A3775;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Hover Effect */
.blog-card:hover {
    transform: translateY(-5px);
}

/* Section Explications */
.breadcrump-section {
    background-color: #fff;
    padding: 10px 10px;
    font-family: 'Poppins', sans-serif;
	text-align: center;

}

/* Section Explications */
.explanation-section {
    background-color: #fff;
    padding: 20px 20px;
    font-family: 'Poppins', sans-serif;
    align-content: center;
    padding-left: 20px;
    padding-right: 20px;	

}

.explanation-section h2 {
    color: #2A3775;
    text-align: center;
    margin-bottom: 25px;
	font-weight: 700;
    font-size: 25px;
}

.explanation-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
	max-width: 1140px;
    margin: 15px auto;
	text-align: justify;	
}

@media (max-width: 768px) {
	
	    .explanation-section {
	     width: 100%;
		}
		
		.explanation-section p {
        width: 100%;

    }
}

.explanation-section ul {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
	max-width: 1140px;
    margin: 15px auto;
}

.explanation-section h3 {
    color: #2A3775;
	font-weight: 700;
    font-size: 22px;
	max-width: 1140px;
    margin: 15px auto;	
}

.explanation-section h4 {
    color: #2A3775;
	font-weight: 700;
    font-size: 20px;
	max-width: 1140px;
    margin: 15px auto;		
}


.explanation-section h5 {
    color: #2A3775;
	font-weight: 700;
    font-size: 18px;
	max-width: 1140px;
    margin: 15px auto;	
}

.explanation-section h6 {
    color: #2A3775;
	font-weight: 700;
    font-size: 18px;
		max-width: 1140px;
    margin: 15px auto;		
}


.explanation-section .highlight {
    color: #FF9F43; /* Orange clair */
    font-weight: bold;
}

.explanation-section a {
    text-decoration: none;
	color: #2A3775;

}	
}



/* Réinitialisation des marges et paddings des <li> */
.explanation-section ul {
    list-style: none;
	max-width: 1140px;
	margin: 0 auto;	
}

/* Styling des <li> */
.explanation-section ul li {
    color: #555;
    line-height: 1.6;	
    align-items: center;
list-style-type: none;
}

.explanation-section ul li::before{
  content: "⚙️";
  padding-right: 8px;
}


/* Correction pour le centrage des icônes ou texte dans les <li> */
.explanation-section ul li::marker {
    color: #2A3775; /* Couleur des points */
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
	
	.explanation-section ul {
       width: 100%;
    }

	
}

/* Section Recherche Villes Rapides */
.footer {
    background-color: #03475F;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;	
}

.footer h2 {
    color: #2A3775;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    color: #fff;	
	line-height: 1.6;	
    font-family: 'Poppins', sans-serif;		
}

.footer a {
    color: #fff; /* Orange clair */
    font-weight: bold;
	line-height: 1.6;	
		text-decoration: none;
}

/* Grid de 3 colonnes */
.recherche-villes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.villes-prox-villes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
	margin-top: 20px;
}

.ville-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ville-card a {
    color: #2A3775;
    text-decoration: none;
    font-size: 16px;
}

.ville-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.card-ville {
    background-color: #00A9CD;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-ville a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
	font-weight: bold;	
}

.card-ville:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .recherche-villes-grid {
        grid-template-columns: repeat(2, 1fr);

    }

	
	.villes-prox-villes {
        grid-template-columns: repeat(2, 1fr);	
	}
}

@media (max-width: 768px) {
    .recherche-villes-grid {
        grid-template-columns: 1fr;
    }
	
	.villes-prox-villes {
        grid-template-columns: 1fr;
    }
}

.features-list {
    font-family: 'Poppins', sans-serif;
	margin: 30px 0px 0px 0px;
    padding: 0;
    display: flex;
    justify-content: center; /* Centrer le container principal */
}

.features-list ul {
    list-style: none;
    padding: 0;
    display: flex;
   flex-wrap: wrap; /* Gère les retours à la ligne en responsive */
    gap: 5px; /* Espacement entre les items */
    justify-content: center; /* Centre les items dans le container */
}

.features-list li {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px; /* Largeur fixe pour garantir une bonne présentation */
    margin: 10px 0;
}

.features-list .check-icon {
    color: #EE1C24; /* Vert pour le check */
    font-size: 24px;
    line-height: 0.8;
}

.features-list .feature-text {
    font-size: 14px;
    color: #fff;
    margin-top: 5px; /* Petit espace entre le check et le texte */
    font-weight: bold;
}


.telopt2 {
            background-image: linear-gradient(#0098D9,#0098D9);
            margin: 10px;
            padding: 5px 5px;
            text-align: center;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
			max-width: 30%;
}
a.telopt2:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
}



/* Media query pour les petits écrans */
@media (max-width: 768px) {
    .features-list li {
        width: 100px; /* Réduit la largeur pour éviter trop d'espace */
    }
	.telopt2 {
        max-width: 100%; /* Réduit la largeur pour éviter trop d'espace */
    }
	
}

.telopt {
            background-image: linear-gradient(#0098D9,#0098D9);
            margin: 10px;
            padding: 5px 5px;
            text-align: center;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            display: block;
}
a.telopt:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
}




#textNum {

position: relative;
display: inline-block;
background: url(https://www.soscassemoto.fr/fond_tel_300_229x30_FR.png) no-repeat left top;
width: 229px;
height: 30px;
 font-family: 'Poppins', Arial, sans-serif;
font-weight: bold;
background-size: auto 30px;
vertical-align: middle;	
margin-top: 10px;

}

#textNum a {
display: inline;
top: 0px;
left: 0px;
width: 125px;
height: 30px;
text-align: center;
font-size: 16px;
text-decoration: none;
color: #000;
line-height: 31px;

}

#textNum div {
display: inline-block;
color: #4a4a4a;
font-size: 14px;
margin-left: 5px;
font-weight: 700;
}

.breadcrumb {
  font: .75em Poppins;
  list-style: none;

  
}

.breadcrumb.bc2x {
  font-size: 1em;
  margin-top:5px;
    margin-bottom:5px;
	background-color: #fff;
}

.breadcrumb.bc3x {
  font-size: 1.25em;
}

.breadcrumb p {
  margin: 0;
}

.breadcrumb li {
  display: inline-block;
  margin-bottom: .2em;

}

.breadcrumb li a {
  background-color: #EE1C24;
  box-sizing: border-box;
  color: #fff;
  display: block;
  padding: 0.25em 0.25em 0.25em 1.5em;
  position: relative;
  text-decoration: none;
  transition: .25s;

}

.breadcrumb li a:before {
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #fff;
  content: "";
  position: absolute;
  top: 0;
  right: -1.25em;
  z-index: 1;
}

.breadcrumb li a:after {
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #EE1C24;
  content: "";
  position: absolute;
  top: 0;
  right: -1em;
  transition: .25s;
  z-index: 1;

}

.breadcrumb li a:hover {
  background-color: #0098d9;
}

.breadcrumb li a:hover:after {
  border-left-color: #0098d9;
}

.breadcrumb li:last-child a {
  background-color: #0098d9;
  pointer-events: none;
}

.breadcrumb li:last-child a:after {
  border-left-color: #0098d9;
}

.mainmenubtn {
    background-color: #0098D9;
    color: white;
    border: none;
    cursor: pointer;
    padding:20px;
	border-radius: 5px;	
	font-family: 'Poppins', sans-serif;		
	font-size: 16px;
}
.mainmenubtn:hover {
    background-color: #0098D9;
    }
.dropdown {
    position: relative;
    display: inline-block;
	font-family: 'Poppins', sans-serif;	

}
.dropdown-child {
    display: none;
    background-color: #0098D9;
    min-width: 100px;
}
.dropdown-child a {
    color: white;
    padding: 20px;
    text-decoration: none;
    display: block;
}
.dropdown:hover .dropdown-child {
    display: block;
}

.blockquote {
    padding: 60px 80px 40px;
    position: relative;
}
.blockquote p {
font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700px;
    text-align: center;
}

/*blockquote p::before {
    content: "\f095"; 
font-family: 'Poppins', sans-serif;
   display: inline-block;
   padding-right: 6px;
   vertical-align: middle;
  font-size: 180px;
 }*/

.blockquote:before {
  position: absolute;
font-family: 'Poppins', sans-serif;
  top: 0;
    content:"\f10d";
  font-size: 200px;
  color: rgba(0,0,0,0.1);
   
}

.blockquote::after {
    content: "";
    top: 20px;
    left: 50%;
    margin-left: -100px;
    position: absolute;
    border-bottom: 3px solid #bf0024;
    height: 3px;
    width: 200px;
}

.otro-blockquote{
  width:60%;
  margin:20px auto;
  font-family: 'Poppins', sans-serif;
  color: #555555;
  padding:1em 30px 1.2em 45px;
  border-left:8px solid #EE1C24;
  line-height:1.6;
  position: relative;
  background: linear-gradient(to bottom, rgba(216, 218, 220, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(216, 218, 220, 1) 100%);
}

.otro-blockquote::before{
  font-family: 'Poppins', sans-serif;
  content: "\201C";
  color:#EE1C24;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-8px;
}

.otro-blockquote::after{
  content: '';
}

.otro-blockquote span{
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}

/* Réinitialisation des marges et paddings des <li> */
.otro-blockquote ul {
    list-style: none;
	max-width: 1140px;
	padding-top : 10px;
	margin: 0 auto;	
}

/* Styling des <li> */
.otro-blockquote ul li {
    color: #555;
    line-height: 1.6;	
}

.otro-blockquote ul li::before{
  content: "⚙️";
  padding-right: 8px;
}

/* Correction pour le centrage des icônes ou texte dans les <li> */
.otro-blockquote ul li::marker {
    color: #2A3775; /* Couleur des points */
}


@media (max-width: 768px) {
    .otro-blockquote {
        width: 100%;
		margin-left:10px;
		margin-right: 10px;
    }

}

        /* Bouton flottant */
        #chat-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
            font-size: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;
        }

        #chat-button:hover {
            background: #0056b3;
        }

        /* Fenêtre du chatbot */
        #chat-container {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 350px;
            max-height: 500px;
            background: white;
            border-radius: 15px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        /* En-tête */
        #chat-header {
            background: #007bff;
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: bold;
            cursor: pointer;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }

        /* Corps du chat */
        #chat-body {
            padding: 10px;
            height: 300px;
            overflow-y: auto;
            background: #f8f9fa;
            display: flex;
            flex-direction: column;
        }

        .chat-message {
            max-width: 80%;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 8px;
            font-size: 14px;
        }

        .user-message {
            align-self: flex-end;
            background: #007bff;
            color: white;
        }

        .admin-message {
            align-self: flex-start;
            background: #e3e3e3;
            color: black;
        }

        /* Zone d'envoi */
        #chat-form {
            display: flex;
            border-top: 1px solid #ddd;
            padding: 10px;
            background: white;
        }

        #chat-form input {
            flex: 1;
            border: 1px solid #ccc;
            padding: 10px;
            border-radius: 20px;
            font-size: 14px;
        }

        #chat-form button {
            background: #007bff;
            border: none;
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            cursor: pointer;
            margin-left: 5px;
        }
  .note-container {
    max-width: 24rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
  font-family: 'Poppins', sans-serif;
  }

  .note-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    color: #facc15; /* jaune */
  }

  .note-content {
    margin-left: 1rem;
  }

  .note-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
  }

  .note-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin: 0.25rem 0;
  }

  .note-avis {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
  }
  
/* Style des notes Google et SCA */

.star-rating {
  display: flex;
  align-items: center;
  background: none;       /* Supprime le fond */
  border: none;           /* Supprime le contour */
  box-shadow: none;       /* Supprime l’ombre */
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0;
}

.star-rating .stars {
  display: flex;
  gap: 0.2rem;
}

.star-rating .star {
  width: 18px;
  height: 18px;
  fill: #e4e4e7;
  transition: fill 0.2s ease;
}

.star-rating .star.filled {
  fill: #ffb900;
}

.star-rating .note-value {
  margin-left: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}

.star-rating .note-avis {
  font-size: 0.875rem;
  color: #6b7280;
  margin-left: 0.5rem;
  opacity: 0.7;
}

#ban1-oscaro {
    width: 728px;
    height: 90px;
    margin: 10px auto 15px auto; /* Centrage horizontal + marges */
    padding: 0;
    border-radius: 12px;
    background: none; /* Pas de fond */
    display: block;
    clear: both; /* Le prochain div passe en dessous */
}

    .search-section {
      text-align: center;
      padding: 40px 20px;
      background-color: #4e73df;
      color: white;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
    }

    .search-section h2 {
      margin: 0;
      font-size: 28px;
      font-weight: 600;
    }

    .search-section p {
      font-size: 16px;
      margin-top: 10px;
    }

    .search-container {
      max-width: 500px;
      margin: 40px auto;
      background: #ffffff;
      border-radius: 16px;
      padding: 30px 25px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      text-align: left;
      position: relative;
	  border: #4E73DF solid;  
    }
	
    .search-container p {
	margin-top: 10px;
	margin-bottom: 10px;  
	font-weight: 600;
    }	
	
	
    .search-container1 {
	        width:100%;	
      max-width: 500px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      text-align: left;
      position: relative;
	  color:#000;
    }	

    .search-container-intro {
      max-width: 500px;
      margin: 30px auto;
      background: #4e73df;
      border-radius: 16px;
      padding: 30px 25px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      text-align: left;
      position: relative;
		color: white;
    }


    .search-container h2 {
      margin: 0;
      font-size: 28px;
      font-weight: 600;
	  text-align: center;
    }

    .search-container p {
      font-size: 16px;
      margin-top: 10px;
    }



    .input-wrapper {
      position: relative;
      margin-bottom: 20px;
    }

    .search-input {
      width: 100%;
      padding: 12px 16px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
      transition: border 0.3s ease;
	  font-family: 'Poppins';
    }

    .search-input:focus {
      border-color: #4e73df;
      outline: none;
      box-shadow: 0 0 0 2px rgba(78, 115, 223, 0.2);
    }

    .suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      border: 1px solid #ddd;
      border-top: none;
      max-height: 250px;
      overflow-y: auto;
      background-color: white;
      display: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 0 0 8px 8px;
      z-index: 10;
    }

    .suggestions div {
      padding: 12px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .suggestions div:hover {
      background-color: #f0f0f0;
    }

    .search-button {
      width: 100%;
      padding: 14px;
      background: #4e73df;
      color: white;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
		font-family: 'Poppins';	  
    }

    .search-button:hover {
      background: #3c5ec2;
    }

    @media screen and (max-width: 540px) {
      .search-container {
        margin: 20px 15px;
        padding: 25px 20px;
      }
	  
	       .search-container1 {
        width:100%;
      }
    }


/* Section pieces */
.pieces-section {
    background-color: #F9F9F9;
    padding: 20px 20px;
    font-family: 'Poppins', sans-serif;
    align-content: center;
    padding-left: 20px;
    padding-right: 20px;	

}

.pieces-section h2 {
    color: #2A3775;
    text-align: center;
    margin-bottom: 25px;
	font-weight: 700;
    font-size: 25px;
}

.pieces-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
	max-width: 1140px;
    margin: 15px auto;
	text-align: justify;	
}

.pieces-section ul {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
	max-width: 1140px;
    margin: 15px auto;
}

.pieces-section h3 {
    color: #2A3775;
	font-weight: 700;
    font-size: 22px;
	max-width: 1140px;
    margin: 15px auto;	
}

.pieces-section h4 {
    color: #2A3775;
	font-weight: 700;
    font-size: 15px;
	max-width: 1140px;
    margin: 15px auto;		
}


.pieces-section h5 {
    color: #2A3775;
	font-weight: 700;
    font-size: 18px;
	max-width: 1140px;
    margin: 15px auto;	
}

.pieces-section h6 {
    color: #2A3775;
	font-weight: 700;
    font-size: 18px;
		max-width: 1140px;
    margin: 15px auto;		
}


.pieces-section .highlight {
    color: #FF9F43; /* Orange clair */
    font-weight: bold;
}

.pieces-section a {
    text-decoration: none;
	color: #2A3775;

}	
}



/* Réinitialisation des marges et paddings des <li> */
.pieces-section ul {
    list-style: none;
	max-width: 1140px;
	margin: 0 auto;	
}

/* Styling des <li> */
.pieces-section ul li {
    color: #555;
    line-height: 1.6;	
    align-items: center;
list-style-type: none;
}

.pieces-section ul li::before{
  content: "⚙️";
  padding-right: 8px;
}


/* Correction pour le centrage des icônes ou texte dans les <li> */
.pieces-section ul li::marker {
    color: #2A3775; /* Couleur des points */
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
    .pieces-section {
	width:100%;	
	}
	
	.pieces-section ul {
        padding-left: 15px;
    }

	
}

.affichagemarque {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background-color: #F1F6FF;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  max-width: 1140px;
  margin: 20px auto;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;

}

.affichagemarque .marque-item {
  padding: 10px 16px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: all 0.2s ease-in-out;
  cursor: default;
}

.affichagemarque .marque-item:hover {
  background-color: #E8E8E8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: space-between;
}

.category-block {
  flex: 1 1 300px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.category-block:hover {
  transform: translateY(-2px);
}

.category-block h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}
.category-block h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.piece-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.piece-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

.piece-list li a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.piece-list li a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.piece-list li.hidden {
  display: none;
}

.voir-plus {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background-color: #4E73DF;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: center;
  text-decoration: none;
  border: none;
}

.voir-plus:hover {
  background-color: #3759c7;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .categories-container {
    flex-direction: column;
  }

  .category-block {
    width: 100%;
  }
}

.productoscaro-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.productoscaro-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 300px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
}

.productoscaro-card:hover {
  transform: translateY(-5px);
}

.productoscaro-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.productoscaro-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.productoscaro-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 8px;
}

.productoscaro-description {
  font-size: 14px;
  color: #666;
  flex-grow: 1;
  margin-bottom: 15px;
}

.productoscaro-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.productoscaro-price {
  font-size: 16px;
  color: #D62828;
  font-weight: bold;
}

.productoscaro-button {
  background-color: #4E73DF;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.productoscaro-button a {
	color:#fff;
}

.productoscaro-button:hover {
  background-color: #126782;
}

#adsense-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
#adsense-sticky-inner {
  position: relative;
  padding: 5px;
}
#adsense-close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10000;
}
@media (min-width: 768px) {
  #adsense-sticky-footer {
    display: none !important;
  }
}

#popup-bottom {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  
}

#popup-bottom.popup-hidden {
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
}

#popup-bottom.popup-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  background: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  width: 300x; /* Par défaut mobile */
  height: 120px;
}

.popup-close {
	position: relative; 
	background: white; 
	padding-top: 20px;
	height:20px;
}


/* Fermer */
#popup-close {
  position: absolute;
  top: 0px;
  left: 0px;
  font-weight: bold;
  font-size: 22px;
  cursor: pointer;
  color: #444;
  z-index: 10;
background-color: #EDEDF1;
  padding: 0 6px;
  line-height: 20px;
}


/* Desktop */
@media (min-width: 768px) {
  .popup-content {
    width: 728px;
    height: 110px;
  }
}



