.codex-qty-offer {
    clear: both;
    width: 100%;
    max-width: 100%;
    margin: 20px 0 18px;
    box-sizing: border-box;
    color: #24211f;
}

.codex-qty-offer__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 7px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f7eadc;
    color: #9a541d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    line-height: 1.2;
    text-transform: uppercase;
}

.codex-qty-offer__title {
    margin-bottom: 11px;
    color: #231f1d;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.codex-qty-offer__choices {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 8px;
}

.codex-qty-offer__choice {
    display: block;
    min-width: 0;
    margin: 0;
    cursor: pointer;
}

.codex-qty-offer__choice > input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.codex-qty-offer__card {
    display: grid;
    grid-template-columns: minmax(56px, 72px) minmax(68px, .75fr) minmax(0, 1.35fr) 22px;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 66px;
    padding: 10px;
    column-gap: 8px;
    box-sizing: border-box;
    border: 1px solid #ded8d2;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(33, 27, 23, .03);
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.codex-qty-offer__choice:hover .codex-qty-offer__card {
    border-color: #c9a37f;
}

.codex-qty-offer__choice > input:focus-visible + .codex-qty-offer__card {
    outline: 2px solid #b76829;
    outline-offset: 2px;
}

.codex-qty-offer__choice > input:checked + .codex-qty-offer__card {
    border-color: #bd6f2b;
    background: #fff8f1;
    box-shadow: 0 0 0 1px rgba(189, 111, 43, .28), 0 3px 10px rgba(79, 48, 24, .06);
}

.codex-qty-offer__badge {
    justify-self: start;
    min-width: 55px;
    padding: 5px 8px;
    border-radius: 6px;
    background: #bd6f2b;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.codex-qty-offer__badge.is-regular {
    background: #eee8e2;
    color: #675d55;
    font-size: 10px;
}

.codex-qty-offer__quantity {
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.codex-qty-offer__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    min-width: 0;
    gap: 3px 7px;
    text-align: right;
}

.codex-qty-offer__prices strong {
    color: #221d1a;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.codex-qty-offer__prices small {
    flex-basis: 100%;
    color: #766b63;
    font-size: 11px;
    line-height: 1.2;
}

.codex-qty-offer__old-price {
    color: #9b928b;
    font-size: 12px;
    text-decoration: line-through;
    white-space: nowrap;
}

.codex-qty-offer__check {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid #d3cac2;
    border-radius: 50%;
    color: transparent;
    font-size: 12px;
    font-weight: 900;
}

.codex-qty-offer__choice > input:checked + .codex-qty-offer__card .codex-qty-offer__check {
    border-color: #bd6f2b;
    background: #bd6f2b;
    color: #fff;
}

@media (max-width: 520px) {
    .codex-qty-offer {
        margin-top: 16px;
    }

    .codex-qty-offer__card {
        grid-template-columns: 62px minmax(0, 1fr) 22px;
        grid-template-rows: auto auto;
        min-height: 72px;
        padding: 10px;
        column-gap: 9px;
        row-gap: 3px;
    }

    .codex-qty-offer__badge {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: center;
        min-width: 50px;
        padding-inline: 6px;
    }

    .codex-qty-offer__quantity {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        font-size: 13px;
    }

    .codex-qty-offer__prices {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        justify-content: flex-start;
        text-align: left;
    }

    .codex-qty-offer__prices strong {
        font-size: 14px;
    }

    .codex-qty-offer__prices small {
        font-size: 10.5px;
    }

    .codex-qty-offer__check {
        grid-column: 3;
        grid-row: 1 / span 2;
        align-self: center;
    }
}

@media (max-width: 360px) {
    .codex-qty-offer__card {
        grid-template-columns: 56px minmax(0, 1fr) 20px;
        padding: 9px 8px;
        column-gap: 7px;
    }

    .codex-qty-offer__badge {
        min-width: 46px;
        font-size: 11px;
    }

    .codex-qty-offer__quantity {
        font-size: 12px;
    }

    .codex-qty-offer__prices {
        column-gap: 5px;
    }
}
