/**
 * Bundle Offers Styles
 */

.wc-cpp-bundle-offer {
    margin: 30px 0;
    padding: 25px;
    border: 2px solid #0073aa;
    border-radius: 8px;
    background: #f8f9fa;
}

.wc-cpp-bundle-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #0073aa;
    font-weight: bold;
}

.wc-cpp-bundle-description {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.wc-cpp-bundle-discount {
    margin-bottom: 20px;
}

.discount-badge {
    display: inline-block;
    padding: 10px 20px;
    background: #e74c3c;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}

.wc-cpp-bundle-products {
    margin: 20px 0;
}

.wc-cpp-bundle-product-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.wc-cpp-bundle-product-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.wc-cpp-bundle-product-item input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.wc-cpp-bundle-product-item label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    flex: 1;
}

.wc-cpp-bundle-product-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.wc-cpp-bundle-product-item .product-name {
    flex: 1;
    font-weight: 600;
    color: #333;
}

.wc-cpp-bundle-product-item .product-price {
    font-size: 16px;
    font-weight: bold;
    color: #0073aa;
}

.wc-cpp-bundle-pricing {
    margin: 25px 0;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border: 2px dashed #0073aa;
}

.bundle-total {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bundle-total .original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.bundle-total .discounted-price {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
}

.bundle-total .savings {
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
}

.wc-cpp-add-bundle-to-cart {
    width: 100%;
    padding: 15px 30px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-cpp-add-bundle-to-cart:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,115,170,0.3);
}

.wc-cpp-add-bundle-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-cpp-bundle-product-item label {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bundle-total {
        flex-direction: column;
        align-items: flex-start;
    }
}

