/* Standard-Footer (Erstellt mit WooCommerce) ausblenden */
.site-info {
    display: none !important;
}

/* Custom Footer Bereich */
.custom-footer-wrapper {
    text-align: center;
    padding: 40px 0 30px;
}

/* Logo */
.custom-footer-logo img {
    max-width: 220px;
    height: auto;
    margin-bottom: 10px;
}

/* Footer-Text */
.custom-footer-text {
    font-size: 15px;
    color: #736635; /* Costa Gold */
    font-weight: 400;
    margin-top: 8px;
}
/* Wusstest-du-Box für Kategorien (Costa) */
.cs-tip-box {
    background: #fdf9e6;
    border-left: 4px solid #736635;
    padding: 15px 18px;
    border-radius: 6px;
    margin: 24px auto 0 auto;
    max-width: 800px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.cs-tip-box strong {
    display: block;
    margin-bottom: 4px;
}
/* Wusstest-du-Box für Kategorie-Beschreibung (letzter Absatz) */
.woocommerce .term-description p:last-of-type {
    background: #e9e8e2;
    border-left: 4px solid #736635;
    padding: 15px 18px;
    border-radius: 6px;
    max-width: 800px;
    margin: 24px auto 0 auto;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.woocommerce .term-description p:last-of-type strong {
    display: block;
    margin-bottom: 4px;
}
/* -----------------------------------
   Header: Suche + Warenkorb ausrichten
   Gilt fuer Desktop & Mobile
----------------------------------- */

/* Grundlayout: Suche und Warenkorb nebeneinander erlauben */
.site-header .site-search,
.site-header .site-header-cart {
    display: inline-block;
    vertical-align: middle;
}

/* Desktop / groessere Bildschirme */
@media (min-width: 769px) {

    /* Logo links, Suche + Warenkorb rechts sauber ausrichten */
    .site-header .site-branding {
        float: left;
    }

    .site-header .site-search {
        float: right;
        max-width: 260px;
        margin-right: 0;
    }

    .site-header .site-header-cart {
        float: right;
        clear: none;          /* verhindert, dass der Warenkorb unter die Suche rutscht */
        margin-left: 12px;    /* kleiner Abstand zur Suche */
    }

    /* Warenkorb-Button etwas kompakter und elegant */
    .site-header-cart .cart-contents {
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 14px;
    }
}

/* Mobile / Tablet */
@media (max-width: 768px) {

    /* Logo bleibt oben, darunter Suche, darunter Warenkorb – aber nah zusammen */
    .site-header .site-search {
        display: block;
        float: none;
        margin: 12px auto 4px auto;
        max-width: 90%;
    }

    .site-header .site-header-cart {
        display: block;
        float: none;
        clear: both;
        text-align: left;     /* wenn du ihn mittig willst: center */
        margin: 4px auto 0 auto;
        max-width: 90%;
    }

    .site-header-cart .cart-contents {
        width: auto;
        display: inline-block;
    }
}
