/* Wrapper */
.pbo-bundle-options {
    margin-bottom: 1em;
}

.pbo-bundle-options__title {
    font-weight: 600;
    margin-bottom: 0.5em;
}

.pbo-bundle-options__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pbo-bundle-options__item {
    margin: 0 0 8px;
}

/* Card */
.pbo-bundle-options__card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
}

/* Radio */
.pbo-bundle-options__card input[type="radio"] {
    margin-top: 3px;
}

/* Body */
.pbo-bundle-options__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* TOP ROW: label + prices same line */
.pbo-bundle-options__top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.pbo-bundle-options__label {
    font-weight: 600;
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}

/* Prices row */
.pbo-bundle-options__prices-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Original price (struck) */
.pbo-bundle-options__price-original {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Discounted price */
.pbo-bundle-options__price-discounted {
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background: #d4f5dd;
}

/* Price without discount */
.pbo-bundle-options__price-single {
    font-weight: 600;
}

/* Savings note BELOW */
.pbo-bundle-options__discount-note {
    margin-top: 4px;
    display: block; /* forces new line */
    font-size: 0.85em;
    opacity: 0.8;
}

/* Full quantity UI disabled */
.pbo-bundle-child .wc-block-components-quantity-selector,
.pbo-bundle-child .wc-block-components-quantity-selector * {
    cursor: not-allowed !important;
    opacity: 0.5;
}

/* Prevent hover color changes */
.pbo-bundle-child .wc-block-components-quantity-selector button:hover {
    background: inherit !important;
}

.mini_cart_item.pbo-bundle-child .quantity,
.mini_cart_item.pbo-bundle-child .quantity * {
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}