/* shop/public/css/footer.css */
.shop-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: #dededf;
    color: #000000;
    padding: 0.75rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 0.75rem;
    font-size: 1rem;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #f0c040;
    text-decoration: underline;
}

.shop-footer p {
    margin: 0;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}