/* ====== FOOTER ====== */
.n8-footer { background: #111; color: #fff; }

/* --- Zone haute — Newsletter (fond blanc) --- */
.n8-footer__top { background: #fff; border-bottom: none; }
.n8-footer__top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 32px 44px;
}
.n8-footer__nl-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 36px;
    letter-spacing: 3px;
    color: #1a2744;
    margin: 0;
    text-align: center;
    font-weight: 400;
}
.n8-footer__nl-title strong {
    font-weight: 700;
}
.n8-footer__nl-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #8896a6;
    text-align: center;
    margin: 10px 0 28px;
}
.n8-footer__nl-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.n8-footer__nl-form {
    display: flex;
    gap: 0;
    align-items: center;
    max-width: 480px;
    flex: 1;
}
.n8-footer__nl-input {
    flex: 1;
    padding: 14px 20px;
    background: #f4f5f7;
    border: none;
    border-radius: 30px 0 0 30px;
    color: #1a2744;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
}
.n8-footer__nl-input::placeholder { color: #b0bec5; }
.n8-footer__nl-btn {
    padding: 14px 28px;
    background: #1a2744;
    color: #fff;
    border: none;
    border-radius: 0 30px 30px 0;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.n8-footer__nl-btn:hover { background: #2d3f5e; }

/* --- Réseaux sociaux --- */
.n8-footer__socials { display: flex; gap: 16px; align-items: center; }
.n8-footer__socials a { color: rgba(26,39,68,0.4); transition: color 0.2s; display: flex; }
.n8-footer__socials a:hover { color: #1a2744; }

/* --- Paiement --- */
.n8-footer__payments {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 10px 32px;
    text-align: right;
    max-width: 1200px;
    margin: 0 auto;
}
.n8-footer__payments-img { height: 20px; width: auto; opacity: 0.5; }

/* --- Colonnes --- */
.n8-footer__cols { padding: 32px 0; }
.n8-footer__cols-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.n8-footer__col { flex: 1; min-width: 130px; display: flex; flex-direction: column; gap: 8px; }
.n8-footer__col--brand { min-width: 100px; flex: 0 0 auto; }
.n8-footer__bear { width: 100px; height: 100px; object-fit: contain; margin-bottom: 2px; opacity: 0.7; }
.n8-footer__col--brand { align-items: center; text-align: center; }
.n8-footer__brand-name {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
    color: #fff;
    margin: 0;
    font-weight: 700;
}
.n8-footer__brand-name sup {
    font-size: 10px;
    vertical-align: super;
    letter-spacing: 0;
}
.n8-footer__col h4 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    color: #fff !important;
    margin: 0 0 4px;
}
.n8-footer__col a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.n8-footer__col a:hover { color: #fff; }

.n8-footer__contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
}
.n8-footer__contact-link svg {
    flex-shrink: 0;
    opacity: 0.6;
}
.n8-footer__contact-link:hover svg { opacity: 1; }

/* --- Bottom --- */
.n8-footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.n8-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.n8-footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.n8-footer__legal a {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.15s;
}
.n8-footer__legal a:hover { color: rgba(255,255,255,0.5); }
.n8-footer__copy {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.15);
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .n8-footer__top-inner { padding: 32px 20px; }
    .n8-footer__nl-title { font-size: 28px; }
    .n8-footer__nl-sub { font-size: 12px; }
    .n8-footer__nl-row { flex-direction: column; align-items: center; }
    .n8-footer__nl-form { max-width: 100%; width: 100%; }
    .n8-footer__socials { margin-top: 8px; }
    .n8-footer__payments { padding: 10px 20px; }
    .n8-footer__cols-inner { flex-direction: column; gap: 24px; padding: 0 20px; }
    .n8-footer__bottom-inner { flex-direction: column; text-align: center; padding: 14px 20px; }
    .n8-footer__legal { justify-content: center; }
}
