/* =========================================
   FOOTER STYLE (COMPACT & CÔTE À CÔTE)
   ========================================= */
   footer {
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 40px 0 20px; 
    text-align: center;
    position: relative; 
    z-index: 2;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO */
.footer-logo {
    width: 100px;
    margin: 0 auto 20px; 
    opacity: 0.9;
    transition: opacity 0.3s;
}
.footer-logo:hover { opacity: 1; }
.footer-logo img { width: 100%; height: auto; display: block; }

/* =========================================
   GRILLE DES LIENS (3 COLONNES)
   ========================================= */
.footer-links-container {
    display: flex;
    justify-content: center; /* Centre le bloc global */
    gap: 80px; /* Espace entre les 3 colonnes */
    margin-bottom: 25px; 
    flex-wrap: wrap;
    text-align: left; /* Alignement par défaut sur PC */
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Titres des colonnes */
.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #000;
}

/* Liens classiques */
.footer-column a {
    text-decoration: none;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 8px 0;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: #c9a473;
    transform: translateX(5px);
}

/* =========================================
   STYLE SPÉCIFIQUE RÉSEAUX SOCIAUX (INSTAGRAM)
   ========================================= */
/* Cible l'icône dans la colonne "social-column" */
.social-column a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* MODIFICATION ICI : On force un carré parfait pour que le rond soit parfait */
    width: 48px; 
    height: 48px;
    padding: 0; /* On retire le padding car on a fixé la taille */
    
    color: #0a0a0a;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin-top: -5px;
    border: 1px solid transparent;
}

.social-column a:hover {
    color: #c9a473; /* Doré au survol */
    background-color: rgba(201, 164, 115, 0.1);
    transform: translateY(-3px) !important;
}

.social-column svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

/* =========================================
   BAS DE PAGE
   ========================================= */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-methods span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #666; }
.copyright { font-size: 0.7rem; color: #666; font-family: 'Montserrat', sans-serif; }


/* =========================================
   MEDIA QUERIES (MOBILE OPTIMISÉ)
   ========================================= */
@media (max-width: 768px) {
    footer { padding: 30px 0 20px; }
    
    .footer-links-container {
        display: flex;
        flex-direction: row; 
        flex-wrap: wrap; /* Permet le passage à la ligne */
        justify-content: center;
        gap: 20px; 
        margin-bottom: 20px;
    }

    /* 1. Les colonnes Navigation et Infos (45% chacune) */
    .footer-column:not(.social-column) {
        width: 45%; 
        align-items: center; 
        text-align: center;
    }

    /* 2. La colonne Instagram (100% largeur, en dessous) */
    .social-column {
        width: 100%;
        align-items: center;
        text-align: center;
        margin-top: 10px; 
    }

    /* Optionnel : Masquer le titre "Suivez-nous" sur mobile pour épurer */
    .social-column h4 { display: none; }

    /* Ajustement des textes sur mobile */
    .footer-column h4 { font-size: 0.7rem; letter-spacing: 1px; }
    .footer-column a { font-size: 0.8rem; }
}


/* =========================================
   BANNIÈRE COOKIES (Inchangé)
   ========================================= */
.cookie-banner {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 600px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 12px; padding: 20px;
    z-index: 9999;
    display: none; opacity: 0; transition: opacity 0.5s ease;
    text-align: left;
}
.cookie-banner.show { display: block; opacity: 1; }
.cookie-content { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-content p { color: #eee; font-size: 0.85rem; margin: 0; flex: 1; line-height: 1.5; }
.cookie-content a { color: #c9a473; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }

.btn-cookie {
    padding: 8px 16px; border-radius: 4px; font-size: 0.75rem; font-weight: 700;
    cursor: pointer; border: none; text-transform: uppercase; letter-spacing: 1px;
}
.btn-cookie.accept { background: #c9a473; color: #000; }
.btn-cookie.decline { background: transparent; border: 1px solid #fff; color: #fff; }

@media (max-width: 600px) {
    .cookie-content { flex-direction: column; text-align: center; }
}