/* Hepsi-Markt Sitewide-Footer - site-footer.css
 * Neubau 2026: dunkelgruener Grund, vier Spalten mit klarer Hierarchie,
 * schlanke Bottom-Bar. Laedt auf allen Seiten (eigene Farbwerte, keine
 * Abhaengigkeit von den Home-Tokens).
 */

@font-face {
    font-family: 'MyriadProBold';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('/wp-content/uploads/2024/11/MyriadPro-Bold-1.woff') format('woff');
}

.hepsi-footer {
    background: #24583e;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
}

.hepsi-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 5% 28px;
    box-sizing: border-box;
}

.hepsi-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hepsi-footer__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

/* Marke */

.hepsi-footer__logo {
    width: 190px;
    height: auto;
    /* Logo-Datei enthaelt dunkle Anteile: hart auf Weiss ziehen */
    filter: brightness(0) invert(1);
}

.hepsi-footer__claim {
    margin: 0;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.72);
}

.hepsi-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.hepsi-footer__social a {
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hepsi-footer__social a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

/* Spalten */

.hepsi-footer__heading {
    margin: 0 0 4px;
    font-family: 'MyriadProBold', 'Segoe UI', -apple-system, sans-serif;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9dc043;
}

.hepsi-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hepsi-footer__list a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
}

.hepsi-footer__list a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.hepsi-footer__list--filialen {
    gap: 14px;
}

.hepsi-footer__list--filialen li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hepsi-footer__ort {
    font-weight: 600;
    color: #fff;
}

.hepsi-footer__adresse {
    color: rgba(255, 255, 255, 0.72);
}

.hepsi-footer__tel {
    color: #9dc043 !important;
    text-decoration: none;
    width: fit-content;
}

.hepsi-footer__tel:hover {
    text-decoration: underline;
}

.hepsi-footer__zeiten {
    margin: 4px 0 0;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 13px;
    color: #fff;
}

.hepsi-footer__halal {
    margin-top: 4px;
    padding: 8px 14px;
    border: 1px solid #9dc043;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #9dc043;
}

/* Bottom-Bar; rechts Platz fuer das Live-Chat-Widget lassen */

.hepsi-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 22px 120px 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.hepsi-footer__legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hepsi-footer__legal a,
.hepsi-footer__legal button {
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    cursor: pointer;
}

.hepsi-footer__legal a:hover,
.hepsi-footer__legal button:hover {
    color: #fff !important;
    text-decoration: underline;
}

/* ---------- Mobile ---------- */

@media (max-width: 992px) {
    .hepsi-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .hepsi-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Platz fuer Live-Chat-Bubble und (auf der Startseite) Bottom-Bar */
    .hepsi-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 0 84px 0;
    }
}
