/* Bundle & Save Cart Styles */

.fs_bundle-cart-item {
    position: relative;
}

.fs_bundle-cart-item::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 5px;
    font-size: 16px;
}

.fs_bundle-discounted .product-price {
    color: #28a745 !important;
    font-weight: 600;
}

.fs_bundle-free-shipping .product-name::after {
    content: "";
    color: #28a745;
}

.fs_bundle-discount-total th,
.fs_bundle-discount-total td {
    color: #28a745;
    font-weight: 600;
}

.fs_bundle-free-shipping-notice th,
.fs_bundle-free-shipping-notice td {
    color: #28a745;
}

.cart_item.fs_bundle-cart-item {
    background-color: #f8f9fa;
    border-left: 3px solid #28a745;
}

.fs_bundle-summary {
    background: #f8f9fa; 
    padding: 15px; 
    margin: 15px 0; 
    border-radius: 5px; 
    border-left: 4px solid #28a745;
}

.fs_bundle-summary h4 {
    margin: 0 0 10px 0; 
    color: #28a745;
    font-size: 16px;
}

.fs_bundle-summary p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

/* Checkout page product images */
.checkout-product-image {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.woocommerce-checkout-review-order-table .product-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fs_bundle-cart-item::before {
        left: -20px;
        font-size: 14px;
    }
    
    .fs_bundle-summary {
        margin: 10px 0;
        padding: 12px;
    }
    
    .checkout-product-image {
        width: 40px !important;
        height: 40px !important;
    }
} 