.caffia-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0 0;
    font-size: 14px;
    line-height: 1.5;
}



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

.footer-column {
    flex: 1;
    margin-bottom: 30px;
    padding-right: 20px;

}
.contact-column{
    max-width: 250px;
}
.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info p {
    margin: 0 0 8px;
}

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

.machines-list li {
    margin-bottom: 8px;
}

.machines-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.machines-list a:hover {
    color: #cccccc;
}

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

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.sustainability-badge {
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

.sustainability-badge img {
    max-width: 100px;
    max-height: 100px;
}

.payment-methods {
    margin-bottom: 40px;
}

.payment-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

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

.payment-icon img {
    height: 30px;
    width: auto;
}

.footer-bottom-bar {
    background-color: #d50032;
    padding: 15px 0;
    color: #ffffff;
}

.footer-bottom-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px   ;
}


.footer-bottom-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-menu a:hover {
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    .footer-column.logo-column{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-column.logo-column .footer-logo{
        max-width: 200px;
    }
    .footer-container .payment-methods{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
    .footer-bottom-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-menu li {
        margin: 5px 0;
    }
}
