.footer {
    background-color: #f4f4f4;
    color: #666;
    font-size: 0.875rem;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--base-color-border);
}

.footer-container {
    max-width: 1128px;
    margin: 0 auto;
    display: block;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    align-items: center;
    gap: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    transform: translateY(5px);
}

.footer-link:hover {
    color: var(--base-color-primary);
}

#footer-cookie-settings-btn {
    color: #666;
    background-color: #e3e3e3;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

#footer-cookie-settings-btn:hover {
    background-color: var(--base-color-secondary);
    color: #fff;
    transform: translateY(-2px);
}

#footer-cookie-settings-btn:active {
    transform: translateY(0);
}

.footer-address {
    margin-top: 24px;
    text-align: center;
    color: #666;
    line-height: 1.4;
}

.footer-address p {
    margin: 0;
}

.footer-copyright {
    margin-top: 16px;
    color: #999;
    text-align: center;
    font-size: 0.75rem;
    /* border-top: 1px solid #ddd; */
    padding-top: 16px;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

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