/* ============================================================
   footer.css — stopka serwisowa (footer_site.php)
   Ładowany na stronach serwisowych (home, sklep, legal, auth).
   ============================================================ */

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 20px 0;
    font-size: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.copyright {
    color: var(--white);
    font-weight: 600;
}

.copyright p {
    margin: 0;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    text-align: right;
}

.footer-links a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-content a:hover {
    color: var(--accent);
}

/* Desktop */
@media (min-width: 700px) {
    .footer-content {
        align-items: center;
    }

    .footer-links ul {
        flex-direction: row;
        gap: 30px;
    }
}
