/* frontend/public/css/footer.css */
/* 📦 Footer */
footer {
    background-color: #f0f0f0;
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
    /* Footer bleibt beim Scrollen unten stehen (wie im Shop) */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #004080;
    text-decoration: none;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: #666;
    font-size: 0.8rem;
}
