/*košík*/
@media (min-width: 1440px) {
body.in-kosik, .in-krok-1, .in-krok-2 {
    background: black;
}

.custom-cart-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    margin-bottom: 20px;
    border-radius: 20px;
    font-family: inherit;
    flex-wrap: wrap;
}

/* Vlevo */
.custom-cart-topbar .cct-left {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    flex: 1 1 150px;
}

/* Vpravo */
.custom-cart-topbar .cct-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1 1 300px;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: right;
    background: #fff2e9;
    padding: 15px;
}

.custom-cart-topbar .cct-title {
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.custom-cart-topbar .cct-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-cart-topbar .cct-item a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* Ikony */
.custom-cart-topbar .cct-icon {
    min-width: 22px;
    min-height: 22px;
}

/* Mobilní responsivita */
@media (max-width: 768px) {
    .custom-cart-topbar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .custom-cart-topbar .cct-right {
        justify-content: center;
    }
}

ol.cart-header li a span:after, ol.cart-header li strong span:after {
    border-top-color: #ffffff;
    border: unset;
}

.cart-inner {
    background-image: linear-gradient(to top, #e2efcf 0%, #f4f4f4 100%);
    padding: 30px;
}

ol.cart-header {
    margin-bottom: 0;
}

li.step.step-1.active {
    background: #f4f4f3;
    border-radius: 10px 10px 0 0;
    padding: 20px 0px;
}

li.step.step-1.active span {
    font-weight: 700;
}

ol.cart-header li.active strong:before {
    background: #ff5b01;
    border-color: #ff5b01;
    color: white;
    font-weight: 700;
}

/* Číslo kroku + text NA JEDNOM ŘÁDKU pro všechny kroky */
.cart-header .step > strong,
.cart-header .step > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;              /* mezera mezi číslem a textem */
    flex-direction: row !important; /* jistota, že nejede column */
}

/* Kruh s číslem – ať se chová jako inline prvek vedle textu */
.cart-header .step > strong::before,
.cart-header .step > a::before {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: static !important;  /* zruší případné absolute */
    margin: 0 8px 0 0;            /* mezera vpravo od kruhu */
}

/* Text kroku – ať se nechová jako blok pod kruhem */
.cart-header .step span {
    display: inline;
    white-space: nowrap; /* pokud chceš, aby se to nelámalo na dva řádky */
}

ol.cart-header li.active a, ol.cart-header li.active strong, ol.cart-header li.completed a, ol.cart-header li.completed strong {
    background-color: unset;
}

.cart-table-header {
    color: #000000;
    font-weight: 600;
}

li.step.step-2, li.step.step-3, li.step.step-1 {
    padding: 20px 0;
}



}



