.custom-inline-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.custom-option-btn {
    padding: 8px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-option-btn:hover {
    background: #eee;
}

.custom-option-btn.active {
    background: #DCD7C9;
    color: black;
    border-color: #DCD7C9;
}

.custom-price-info {
    margin-top: 12px;
    font-weight: 500;
    color: #444;
}

#content>div>div.shp-tabs-wrapper.p-detail-tabs-wrapper>div {
    margin-top: 80px !important;
}

a.social-icon {
    color: white;
}

@media (max-width: 767px) {
    body.type-detail #content-wrapper {
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {
    .next-to-carousel-banners {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .next-to-carousel-banners .banner-wrapper {
        width: 50%;
        box-sizing: border-box;
    }

    /* Prohození pořadí */
    .next-to-carousel-banners .banner-wrapper:first-child {
        order: 2;
    }

    .next-to-carousel-banners .banner-wrapper:last-child {
        order: 1;
    }
}

.plus-gallery-item {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* --- společné: vzhled obrázku ve footeru --- */
footer .banner-wrapper img {
    display: block;
    height: auto;
    max-width: 220px;
    /* desktop velikost */
    border-radius: 10px;
}

/* --- DESKTOP ≥ 1024px: fotka vpravo --- */
@media (min-width:1024px) {
    footer .custom-footer__banner3961 {
        display: flex;
        justify-content: flex-end;
        /* pošle banner doprava */
        align-items: flex-start;
    }

    footer .banner-wrapper img {
        max-width: 120px;
        /* menší velikost na desktopu */
        height: auto;
        margin-left: auto;
        /* dorovná úplně doprava */
    }

    footer .custom-footer__banner3961 img {
        margin-left: auto !important;
    }
}

/* --- TABLET 768–1023px: fotka na střed --- */
@media (min-width:768px) and (max-width:1023px) {
    footer .custom-footer__banner3961 {
        display: flex;
        justify-content: center;
    }

    footer .banner-wrapper img {
        max-width: 180px;
    }
}

/* --- MOBIL ≤ 575px: kontakt + fotka NAHOŘE vedle sebe --- */
@media (max-width:575.98px) {

    /* řádek jako flex a možnost měnit pořadí */
    footer .row.custom-footer.elements-4 {
        display: flex;
        flex-wrap: wrap;
    }

    /* pořadí sloupců: 1) kontakt, 2) fotka, 3) info články, 4) platby */
    footer .custom-footer__contact {
        order: 1 !important;
    }

    footer .custom-footer__banner3961 {
        order: 2 !important;
    }

    footer .custom-footer__articles {
        order: 3 !important;
    }

    footer .custom-footer__onlinePayments {
        order: 4 !important;
    }

    /* šířky: kontakt 60 %, fotka 40 % */
    footer .custom-footer__contact {
        flex: 0 0 60% !important;
        max-width: 60% !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        padding-right: 8px !important;
    }

    footer .custom-footer__banner3961 {
        flex: 0 0 40% !important;
        max-width: 40% !important;
        display: flex;
        justify-content: flex-end;
        /* fotka doprava */
        align-items: flex-start;
    }

    /* fotka menší na mobilu */
    footer .banner-wrapper img {
        max-width: 110px;
    }

    /* zmenšení mezer v kontaktu */
    footer .custom-footer__contact * {
        margin-bottom: 6px;
    }

    /* telefon držet v jednom řádku (ať se neláme na „… 58“) */
    footer .custom-footer__contact a[href^="tel:"] {
        white-space: nowrap;
    }
}