/*-----------------------------------------------FOOTER--------------------------------------------------*/
footer {
    background-color: black;
    padding: 20px;
    text-align: center;
    color: white;
    min-height: 50vh;
}

footer a {
    text-decoration: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 300px;
    padding: 10px;
}

.footer-column img {
    max-width: 83%;
    height: auto;
}

.garenties-certifications,
.avis-footer,
.magasin,
.localisation {
    background-color: #0994dc;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: block;
    margin: 10px auto;
    width: 80%;
    border-radius: 10px;
}

.sav {
    background-color: #ffb103;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: block;
    margin: 10px auto;
    width: 80%;
    border-radius: 10px;
}

.magasin {
    font-size: 1.1rem;
}

.garenties-certifications:hover,
.avis-footer:hover,
.magasin:hover,
.localisation:hover {
    background-color: #0994dc;
}

.sav:hover {
    background-color: #b27d03;
}

.adresse {
    padding: 5%;
}

.espace {
    padding-top: 4%;
}

.le-saviez-vous {
    padding: 5%;
    font-size: 1.2rem;
}

.footer-column span {
    color: #ffb103;
}
/* Style pour la section des liens légaux */
.legal-links {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    font-size: 14px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 5px;
}

.legal-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.separator {
    color: #999;
    margin: 0 5px;
}

.copyright {
    margin-top: 10px;
    color: #777;
    font-size: 13px;
}
/*-------------------------------------------------RECHERCHE---------------------------------------------------------*/
.recherches-frequentes-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
}

.recherches-frequentes-section h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.recherches-frequentes {
    list-style: none;
    padding: 0;
    column-count: 3;
    column-gap: 20px;
}

.recherches-frequentes li {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    margin-bottom: 10px;
    break-inside: avoid;
    transition: all 0.3s ease;
}

.recherches-frequentes li a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.recherches-frequentes li:hover {
    background-color: #000;
    border-color: #fff;
}

.recherches-frequentes li:hover a {
    color: #fff;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    footer {
        text-align: center;
        padding: 20px 0 200px 0;
    }
    .recherches-frequentes {
        column-count: 2;
    }
    .recherches-frequentes-section {
        max-width: 90%;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .footer-column {
        min-width: 200px;
    }
    .recherches-frequentes {
        column-count: 1;
    }
    .recherches-frequentes li a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
