/* ==== CONTAINER GENERAL ==== */
.mn-bundles.white_box {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 22px;
    margin-top: 25px;
    border: 1px solid #e6e6e6;
}

/* ==== BUNDLE ROW ==== */
.mn-bundles .discount_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 2px solid #e6e6e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
    background: #fff;
}

/* ==== LEFT SIDE WRAPPER ==== */
.mn-bundles .discount_box_left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== SELECTED BOX ===== */
.mn-bundles .discount_box.selected_box {
    border-color: #386356;
    background: #f2fffb;
    box-shadow: 0 0 0 2px rgba(13, 124, 116, 0.15);
}

/* ===== HOVER ===== */
.mn-bundles .discount_box:hover {
    border-color: #386356;
}

/* ==== RADIO CUSTOM ==== */
.discount_checkbox {
    display: flex;
    align-items: center;
    margin-right: 16px;
}

.discount_checkbox input[type="radio"] {
    display: none;
}

.discount_checkbox .checkbox_input {
    width: 20px;
    height: 20px;
    border: 2px solid #b8b8b8;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all .2s ease;
    cursor: pointer;
}

.discount_box.selected_box .checkbox_input {
    border-color: #386356;
}

.discount_box.selected_box .checkbox_input::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #386356;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

/* ===== LEFT SIDE (TITLE + PRICE PER ITEM) ===== */
.combo_title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #222;
}

.per_item_price {
    font-size: 14px;
    color: #386356;
    font-weight: 600;
}

/* ===== RIGHT SIDE — PRICE BLOCK ===== */
.combo_prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 140px;
}

.combo_price {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.combo_full_price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-top: 2px;
}

/* ===== ADD BUTTON ===== */
.mn-bundles .add_btn.add_packet {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: #386356;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: background .2s ease;
}

.mn-bundles .add_btn.add_packet:hover {
    background: #2b4e44;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 480px) {

    .mn-bundles .discount_box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .combo_prices {
        align-items: flex-start;
    }

    .mn-bundles .add_btn.add_packet {
        font-size: 15px;
    }
}
