/* Zajistit viditelnost sidebaru v kroku 2 a 3 */

/* Zobrazit sidebar když je aktivní krok 2 nebo 3 */
#step-doprava-platba:not([style*="display: none"]) ~ #rekapitulace-sidebar,
#step-udaje:not([style*="display: none"]) ~ #rekapitulace-sidebar,
.checkout-main-content:has(#step-doprava-platba.active) ~ #rekapitulace-sidebar,
.checkout-main-content:has(#step-udaje.active) ~ #rekapitulace-sidebar {
    display: block !important;
}

/* Alternativa - zobrazit sidebar vždy kromě prvního kroku */
.checkout-grid-container:has(.checkout-main-content-step:not(#step-kafe).active) #rekapitulace-sidebar,
.checkout-grid-container:has(.checkout-main-content-step:not(#step-kafe)[style*="display: block"]) #rekapitulace-sidebar {
    display: block !important;
}

/* Odstranit všechny styly z checkout-sidebar */
.checkout-sidebar {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Odstranit všechny styly z step-rekapitulace */
#step-rekapitulace {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}