.kzca-offers {
    margin: 20px 0;
    padding: 12px 0;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    clear: both;
    box-sizing: border-box;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    background: transparent;
    color: #222;
}

.kzca-offers__title {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    color: #2b2b2b;
}

.kzca-offer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 9px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color .16s ease;
}

.kzca-offer:hover {
    background: #fff;
}

.kzca-offer__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kzca-offer__box {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1.5px solid #9a9a9a;
    border-radius: 4px;
    background: #fff;
}

.kzca-offer__input:focus-visible + .kzca-offer__box {
    outline: 2px solid #555;
    outline-offset: 2px;
}

.kzca-offer__input:checked + .kzca-offer__box {
    border-color: #222;
    background: #222;
}

.kzca-offer__input:checked + .kzca-offer__box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.kzca-offer:has(.kzca-offer__input:checked) {
    background: #fff;
}

.kzca-offer__content {
    flex: 1;
    min-width: 0;
}

.kzca-offer__line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.35;
}

.kzca-offer__name {
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.kzca-offer__price {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
    color: #222;
}

.kzca-offer__regular {
    display: inline-block;
    color: #8a8a8a;
    font-size: 12px !important;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.kzca-offer__current {
    display: inline-block;
    color: #222;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.35;
}

.kzca-offer__badge {
    display: inline-block;
    margin-left: 5px;
    padding: 1px 5px;
    border-radius: 4px;
    background: #e6e6e6;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    vertical-align: 1px;
}

.kzca-offer__desc {
    display: block;
    margin-top: 2px;
    color: #666;
    font-size: 13px;
    line-height: 1.35;
}

@media (max-width: 520px) {
    .kzca-offer {
        padding-left: 0;
        padding-right: 0;
    }

    .kzca-offer__line {
        display: block;
    }

    .kzca-offer__price {
        display: block;
        margin-top: 2px;
    }
}
