/* cbb-frontend.css */

.cbb-bundle-container {
    margin-bottom: 20px;
    padding: 15px;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.cbb-title {
    margin-top: 0;
}

.cbb-step {
    margin-bottom: 15px;
}

.cbb-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.cbb-select {
    width: 100%;
    max-width: 300px;
}

.cbb-products-area {
    margin-top: 20px;
}

.cbb-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border-radius: 4px;
}

.cbb-product-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s, border-left 0.2s;
    border-left: 4px solid transparent;
}

.cbb-product-item:last-child {
    border-bottom: none;
}

.cbb-product-item:hover {
    background-color: #f9f9f9;
}

.cbb-product-item.selected {
    background-color: #e6f7ff;
    border-left-color: #007cba;
}

.cbb-item-img {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.cbb-item-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.cbb-item-info {
    flex-grow: 1;
}

.cbb-item-name {
    font-weight: bold;
    font-size: 0.9em;
    line-height: 1.2;
}

.cbb-item-price {
    color: #555;
    font-size: 0.85em;
    display: inline-block;
    margin-top: 3px;
}

.cbb-price-box {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
    background: #e8f5e9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.cbb-empty-msg {
    color: #d32f2f;
    font-style: italic;
}

/* Additional products section */
.cbb-additional-products-section {
    border-top: 1px solid #eaeaea;
    margin-top: 25px;
    padding-top: 20px;
}

.cbb-subtitle {
    margin-top: 0;
    font-size: 1.1em;
    color: #333;
}

.cbb-additional-product-item {
    transition: all 0.2s ease;
}

.cbb-additional-product-item:hover {
    border-color: #ccd0d4 !important;
    background-color: #f6f6f6 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cbb-additional-product-checkbox {
    accent-color: #007cba;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    flex-shrink: 0;
    cursor: pointer;
}

.cbb-ap-img img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
    display: block;
}

.cbb-qty-picker {
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.cbb-qty-picker.cbb-disabled {
    opacity: 0.55;
    background: #eaeaea !important;
    border-color: #ddd !important;
}

.cbb-qty-picker.cbb-disabled .cbb-qty-btn {
    pointer-events: none;
    background: #eaeaea !important;
}

.cbb-qty-picker.cbb-disabled input {
    background: #eaeaea !important;
}

.cbb-qty-btn:hover {
    background: #eaeaea !important;
}

.cbb-additional-product-qty:focus,
.cbb-additional-product-variation-select:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
    outline: none;
}

/* Stylizowanie pozycji zestawu w koszyku (Cart Table Child Items) */
.woocommerce-cart-form tr.cbb-cart-parent-item {
    background-color: #ffffff !important;
}

.woocommerce-cart-form tr.cbb-cart-child-item {
    background-color: #fbfcfd !important;
    font-size: 0.88em !important;
    border-top: 1px dashed #e8ecef !important;
}

.woocommerce-cart-form tr.cbb-cart-child-item td {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    color: #555 !important;
}

/* Wcięcie i zmniejszenie miniaturki elementu podrzędnego */
.woocommerce-cart-form tr.cbb-cart-child-item td.product-thumbnail {
    padding-left: 30px !important;
}

.woocommerce-cart-form tr.cbb-cart-child-item td.product-thumbnail img {
    max-width: 38px !important;
    max-height: 38px !important;
    border-radius: 4px !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

/* Stylizacja nazwy produktu i zagiętej strzałki */
.woocommerce-cart-form tr.cbb-cart-child-item td.product-name a {
    color: #444 !important;
    font-weight: 500 !important;
    font-size: 0.95em !important;
}

.cbb-cart-arrow {
    display: inline-block;
    color: #007cba;
    font-weight: bold;
    font-size: 1.15em;
    margin-right: 5px;
}

/* Subtelny mniejszy tekst dla cen i podsumy elementu podrzędnego */
.woocommerce-cart-form tr.cbb-cart-child-item td.product-price,
.woocommerce-cart-form tr.cbb-cart-child-item td.product-subtotal {
    font-size: 0.9em !important;
    color: #666 !important;
}

.woocommerce-cart-form tr.cbb-cart-child-item td.product-quantity {
    font-size: 0.9em !important;
    color: #777 !important;
}
