/* --- FOOTER GLOBAL --- */
.main-footer {
    position: relative;
    background: #0b0e14;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer-container {
    max-width: 1800px;
    width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* --- TOP SECTION --- */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #a0a7b1;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-item:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    /* Optionnel : On peut aussi enlever le glow sous les icones ici si tu veux du full flat */
}

/* Groupes de liens */
.footer-links-group {
    display: flex;
    justify-content: space-around;
}

.footer-links h4, .footer-newsletter h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0a7b1;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(8px); 
}

/* Newsletter */
.footer-newsletter p {
    color: #a0a7b1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 5px;
    transition: 0.3s;
}

.newsletter-form .input-group:focus-within {
    border-color: var(--primary);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #fff;
    width: 100%;
    outline: none;
}

.newsletter-form button {
    background: var(--primary);
    border: none;
    width: 50px;
    border-radius: 10px;
    cursor: pointer;
}

/* --- BOTTOM SECTION --- */
.footer-divider {
    height: 1px;
    /* Remplacé par une ligne solide très discrète sans effet de lumière */
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-info p {
    color: #6a727d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.legal-links a {
    color: #a0a7b1;
    text-decoration: none;
    font-size: 0.85rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icons {
    font-size: 1.5rem;
    color: #a0a7b1;
    display: flex;
    gap: 15px;
}

/* --- SUPPRESSION DE LA LUEUR --- */
.footer-glow {
    display: none; /* Désactive complètement l'effet de lumière en fond */
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto 25px; }
    .social-links { justify-content: center; }
    .footer-links-group { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}