/*
 * TSI Light Cart – mobile hard fix
 * Dotyczy koszyka generującego klasy .tsi-lc-*.
 */
:root {
    --tsi-lc-foot-top: auto;
    --tsi-lc-foot-space: 132px;
}

@media (max-width: 767px) {
    .tsi-lc-foot.tsi-lc-mobile-foot-fixed {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: var(--tsi-lc-foot-top) !important;
        bottom: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)) !important;
        box-sizing: border-box !important;
        background: #fff !important;
        border-top: 1px solid #e8e8e8 !important;
        box-shadow: 0 -10px 30px rgba(0,0,0,.10) !important;
        z-index: 2147483000 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .tsi-lc-foot.tsi-lc-mobile-foot-fixed .tsi-lc-summary {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        margin: 0 0 8px !important;
        min-height: 28px !important;
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    .tsi-lc-foot.tsi-lc-mobile-foot-fixed .tsi-lc-summary strong {
        white-space: nowrap !important;
    }

    .tsi-lc-foot.tsi-lc-mobile-foot-fixed .tsi-lc-actions {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .tsi-lc-foot.tsi-lc-mobile-foot-fixed .tsi-lc-cart,
    .tsi-lc-foot.tsi-lc-mobile-foot-fixed .tsi-lc-checkout {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 0 !important;
        min-height: 44px !important;
        height: 44px !important;
        padding: 8px 8px !important;
        margin: 0 !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
        text-decoration: none !important;
        white-space: normal !important;
    }

    /* Zostawiamy przestrzeń pod przyklejoną stopkę, żeby ostatni produkt nie był zasłonięty. */
    .tsi-lc-body,
    .tsi-lc-content,
    .tsi-lc-items,
    .tsi-lc-list,
    .tsi-lc-products {
        padding-bottom: var(--tsi-lc-foot-space) !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 360px) {
    .tsi-lc-foot.tsi-lc-mobile-foot-fixed {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .tsi-lc-foot.tsi-lc-mobile-foot-fixed .tsi-lc-actions {
        gap: 6px !important;
    }
    .tsi-lc-foot.tsi-lc-mobile-foot-fixed .tsi-lc-cart,
    .tsi-lc-foot.tsi-lc-mobile-foot-fixed .tsi-lc-checkout {
        font-size: 12px !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}
