/* Footer Styles - Modern White Theme */
.site-footer {
    background-color: #ffffff;
    color: #555;
    padding: 70px 0 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.brand-column {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    /* No filter needed for white theme usually, or adjust if logo is white */
}

.brand-desc {
    margin-bottom: 25px;
    color: #666;
    max-width: 300px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 500;
}

.contact-item i {
    color: #ff4757;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ff4757;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f3f4f6;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #ff4757;
    color: #fff;
    transform: translateY(-3px);
}

.footer-column h3 {
    color: #222;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ff4757;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #ff4757;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}
.copyright-text a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
}
.copyright-text a:hover {
    color: #ff4757;
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icons img {
    height: 24px;
    width: auto;
    filter: none;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #22c15e;
}

@media (max-width: 992px) {
    .footer-top {
        gap: 30px;
    }
    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex: 1 1 100%;
    }
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
    .footer-column h3::after {
        left: 0;
    }
}
