/* ===== FOOTER ===== */
.eco-footer {
    background: #16191d;
    color: #a8adb3;
    margin-top: 60px;
    font-size: 14px;
}

.eco-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 52px 20px 44px;
}

/* Titres de colonnes */
.eco-footer-title {
    color: #fff; font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px;
    margin: 0 0 18px; position: relative; padding-bottom: 10px;
}
.eco-footer-title::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 28px; height: 3px; border-radius: 2px;
    background: var(--eco-accent, #2b6cb0);
}

/* Marque */
.eco-footer-logo { display: inline-block; margin-bottom: 16px; }
.eco-footer-logo img { max-height: 52px; width: auto; border-radius: 6px; }
.eco-footer-about { margin: 0 0 18px; line-height: 1.7; }

/* Réseaux sociaux */
.eco-footer-socials { display: flex; gap: 10px; }
.eco-footer-socials a {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.18); color: #a8adb3;
    transition: all .25s ease;
}
.eco-footer-socials a:hover {
    background: var(--eco-accent, #2b6cb0); border-color: var(--eco-accent, #2b6cb0);
    color: #fff; transform: translateY(-3px);
}
.eco-footer-socials svg { width: 17px; height: 17px; }

/* Menus footer */
.eco-footer-menu, .eco-footer-contact { list-style: none; margin: 0; padding: 0; }
.eco-footer-menu li + li { margin-top: 10px; }
.eco-footer-menu a {
    color: #a8adb3; text-decoration: none; transition: color .2s ease, padding-left .25s ease;
}
.eco-footer-menu a:hover { color: #fff; padding-left: 6px; }

/* Contact */
.eco-footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 12px; line-height: 1.5;
}
.eco-footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--eco-accent, #2b6cb0); }
.eco-footer-contact a { color: #a8adb3; text-decoration: none; }
.eco-footer-contact a:hover { color: #fff; }

/* Newsletter */
.eco-newsletter { margin-top: 22px; }
.eco-newsletter-text { margin: 0 0 10px; font-size: 13px; line-height: 1.5; color: #d3d6da; }
.eco-newsletter-form { display: flex; }
.eco-newsletter-form input {
    flex: 1; min-width: 0;
    background: #22262c; border: 1px solid #33383f; border-right: 0;
    color: #fff; padding: 11px 14px; font-size: 14px;
    border-radius: 8px 0 0 8px; outline: none;
    transition: border-color .2s ease;
}
.eco-newsletter-form input::placeholder { color: #7a8087; }
.eco-newsletter-form input:focus { border-color: var(--eco-accent, #2b6cb0); }
.eco-newsletter-form button {
    background: var(--eco-accent, #2b6cb0); color: #fff; border: 0;
    padding: 0 18px; cursor: pointer; border-radius: 0 8px 8px 0;
    display: flex; align-items: center;
    transition: background .2s ease;
}
.eco-newsletter-form button:hover { background: #1e4e8a; }
.eco-newsletter-form button svg { width: 18px; height: 18px; }

/* Barre inférieure */
.eco-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.eco-footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.eco-footer-copy { margin: 0; font-size: 13px; color: #7a8087; }

/* Badges paiement */
.eco-footer-payments { display: flex; gap: 8px; align-items: center; }
.eco-pay {
    height: 28px; min-width: 46px; padding: 0 10px;
    background: #fff; border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; font-style: italic;
}
.eco-pay svg { width: 32px; height: 20px; }
.eco-pay--cb     { background: #163e8c; color: #fff; font-style: normal; }
.eco-pay--visa   { color: #1a1f71; letter-spacing: .5px; }
.eco-pay--paypal { color: #003087; }
.eco-pay--paypal::first-letter { color: #009cde; }

/* Responsive */
@media (max-width: 1024px) {
    .eco-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 782px) {
    .eco-footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 34px; }
    .eco-footer-bottom-inner { flex-direction: column; justify-content: center; text-align: center; }
}