/* ========================================
   VW RADER – DÁREK K NÁKUPU
   ======================================== */

.vw_rader {
    margin: 14px 0 18px;
    padding: 13px 15px;
    background: #faf9f7;
    border: 1px solid #e5e1db;
    border-radius: 4px;
    box-sizing: border-box;
}

.vw_rader__content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vw_rader__icon {
    flex: 0 0 auto;
    font-size: 19px;
    line-height: 1;
}

.vw_rader__text {
    font-size: 14px;
    line-height: 1.45;
}

.vw_rader__text strong {
    font-weight: 700;
}

.vw_rader__progress {
    height: 4px;
    margin-top: 10px;
    overflow: hidden;
    background: #e7e4df;
    border-radius: 10px;
}

.vw_rader__progress-bar {
    width: 0;
    height: 100%;
    background: #222;
    border-radius: 10px;
    transition: width .3s ease;
}

.vw_rader.is-complete {
    background: #f5f8f3;
    border-color: #dbe5d7;
}

.vw_rader.is-complete .vw_rader__progress-bar {
    background: #52694d;
}

@media (max-width: 767px) {
    .vw_rader {
        margin: 12px 0 16px;
        padding: 12px 13px;
    }

    .vw_rader__text {
        font-size: 13px;
    }
}
