/* footer.css - Footer compatto */

.footer {
    padding: 24px 32px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.footer a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.15s;
}

.footer a:hover {
    color: var(--gray-900);
}

.footer-mini-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-mini-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.15s;
}

.footer-mini-links a:hover {
    color: var(--gray-900);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-mini-links {
        justify-content: center;
    }

    /* Spazio per mobile-nav + btt */
    .footer {
        padding-bottom: 120px;
    }

    /* Spazio extra per mobile-bar + btt */
    .has-mobile-bar .footer {
        padding-bottom: 180px;
    }
}
