
.site-footer {
    background: #0A0A0A;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 80px;
    padding: 60px 0 24px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-brand-name {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin: 0 0 14px 0;
    letter-spacing: 0.18em;
    margin-right: -0.18em;
    line-height: 1;
    white-space: nowrap;
}
.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    max-width: 240px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    color: #0A0A0A;
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-link-bold {
    font-weight: 700 !important;
    color: white !important;
}

.footer-link-bold:hover {
    color: var(--primary) !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-mini {
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.15em;
    margin-right: -0.15em;
    line-height: 1;
    white-space: nowrap;
}

.footer-currency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.footer-currency i {
    font-size: 11px;
    color: var(--primary);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 500;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-bottom-right a:hover {
    color: var(--primary);
}


@media (max-width: 968px) {
    /* Marque en pleine largeur, puis les 3 sections alignées côte à côte */
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 48px 0 24px 0;
        margin-top: 60px;
    }

    .footer-container {
        padding: 0 22px;
    }

    /* Les 3 titres restent alignés sur une seule rangée (jamais empilés) */
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding-bottom: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 4px;
    }

    .footer-col h4 {
        font-size: 12px;
        letter-spacing: 0.5px;
        margin-bottom: 14px;
    }

    .footer-col ul {
        gap: 10px;
    }

    .footer-col ul a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-bottom-right {
        gap: 10px;
        font-size: 12px;
    }

    .footer-bottom-right .footer-copyright,
    .footer-bottom-right a {
        font-size: 12px;
    }
}