/* Footer Component Styles - Optimized */
.footer-wrapper {
    background-color: #F9F8EF;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-container {
    display: flex;
    gap: 40px;
    /* padding: 0 20px 20px; */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    width: 400px;
    flex-shrink: 0;
    padding-top: 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    height: 18px;
}

.footer-logo img {
    width: 110px;
    height: 24px;
}

.footer-contact-info {
    color: var(--Bianca-500, #B5B3AE);
    font-family: "Fira Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer-contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #6E6C6A;
}

.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #F9F8EF;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link img {
    width: 18px;
    height: 18px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.footer-column-heading {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #333231;
    margin: 0;
}

.footer-link {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    color: var(--Bianca-500, #B5B3AE);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #333231;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #EFEEE5;
    max-width: 1200px;
    margin: 0 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-copyright {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    color: #B5B3AE;
    margin: 0;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.footer-legal-links a,
.footer-legal-link,
.legal-link {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    color: var(--Bianca-500, #B5B3AE) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover,
.legal-link:hover {
    color: #6E6C6A !important;
}

.footer-payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-payment-methods img {
    width: 347px;
    height: 60px;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

/* Footer responsive styles */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding-left: 20px;
    }
    
    .footer-logo-container {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-wrapper {
        padding: 40px 0;
    }
    
    .footer-container {
        gap: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-logo-container {
        gap: 15px;
    }
    
    .footer-contact-info {
        font-size: 12px;
    }
    
    .footer-column-heading {
        font-size: 14px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-payment-methods img {
        width: 280px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .footer-wrapper {
        padding: 30px 0;
    }
    
    .footer-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .footer-logo img {
        width: 90px;
        height: 20px;
    }
    
    .footer-contact-info {
        font-size: 11px;
    }
    
    .footer-payment-methods img {
        width: 240px;
        height: 40px;
    }
}