/* Standard Footer CSS */
.xs-footer-section {
    background-color: #2A2A2A;
    color: #ffffff;
}

.xs-footer-section .footer-widget {
    margin-bottom: 30px;
}

.xs-footer-section .widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.xs-footer-section .xs-list li a,
.contact-info-widget li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.3s;
}

.xs-footer-section .xs-list li a:hover,
.contact-info-widget li a:hover {
    color: #ffffff;
}

.contact-info-widget li {
    color: #cfcfcf;
}

.payment-icons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 15px;
}

.payment-icons img {
    width: 45px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-icons img:hover {
    opacity: 1;
}

.footer-bottom {
    background-color: #1F1F1F;
    padding: 20px 0;
    text-align: center;
    color: #cfcfcf;
    font-size: 14px;
}

/* Social Media Icons */
.social-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 28px;
    color: #ffffff;
    background-color: #444;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #555;
}
/* Seal Icons - Centered Under Categories */
.seal-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.seal-icons i {
    font-size: 32px;
    color: #ffffff;
    background-color: #444;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.seal-icons i:hover {
    background-color: #555;
}

/* Adjusted Review Button */
.btn-feedback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    color: #ffffff;
    background-color: #28a745;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
    max-width: 250px;
    width: auto;
}

.btn-feedback:hover {
    background-color: #218838;
}

/* Mobile Optimization */
@media (max-width: 767px) {
    /* Zentriert alle Abschnitte in der Fußzeile auf Mobilgeräten */
    .footer-main .row > div {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Zentriert die Social Media Icons auf Mobilgeräten */
    .social-buttons {
        justify-content: center;
        gap: 10px; /* Weniger Abstand zwischen Icons auf kleinen Bildschirmen */
    }

    /* Zahlungssymbole zentrieren */
    .payment-icons {
        justify-content: center;
    }

    /* Zentriert und optimiert die Links in der Liste */
    .xs-list, .contact-info-widget {
        display: flex;
        flex-direction: column;
        align-items: center; /* Zentriert die Links */
        gap: 10px; /* Abstand zwischen Links */
    }

    /* Überarbeitet den Review Button für eine mobile Darstellung */
    .btn-feedback {
        margin: 10px auto; /* Zentriert den Button */
    }

    /* Sicherstellen, dass das Siegel zentriert ist */
    .seal-icons {
        justify-content: center;
    }
}
/* Mobile Ansicht (<768px) - Nur für den Footer */
@media (max-width: 767px) {
    .footer-main .row {
        display: flex;
        flex-direction: column; /* Spalten untereinander anordnen */
        align-items: center; /* Zentriert die Spalten horizontal */
    }

    .footer-main .footer-widget {
        width: 100%; /* Jede Spalte nimmt die volle Breite ein */
        text-align: center; /* Zentriert den Inhalt */
        margin-bottom: 20px; /* Abstand zwischen den Spalten */
    }

    .footer-main .footer-widget:last-child {
        margin-bottom: 0; /* Kein zusätzlicher Abstand beim letzten Widget */
    }
}

