.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 15px;
    background-color: #f1f1f1;
    font-size: 14px;
    text-align: center;
    overflow-x: hidden; /* ✅ Prevent horizontal scrollbar */
    max-width: 100vw;    /* ✅ Contain layout */
    box-sizing: border-box;
}

.footer-left,
.footer-center,
.footer-whatsapp {
    flex: 1 1 33%;
    padding: 5px;
    box-sizing: border-box;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    white-space: nowrap; /* ✅ Prevent wrapping */
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

.whatsapp-link:hover {
    text-decoration: underline;
    color: #88A2DD;
}

@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-whatsapp {
        flex: 1 1 100%;
        padding: 5px 0;
    }
}
