/* 
 * Styles dla systemu zestawów produktów
 * Equipment Rental System - Product Bundles
 */

.product-bundle-options {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
}

.product-bundle-options h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: #333;
}

.bundle-description {
    color: #666;
    margin-bottom: 20px;
}

.bundle-products-list {
    margin-bottom: 20px;
}

.bundle-product-item {
    padding: 15px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s;
}

.bundle-product-item:hover {
    border-color: #DA6E4B;
}

.bundle-product-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

.bundle-product-checkbox {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.bundle-product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bundle-product-name {
    font-weight: 600;
    color: #333;
}

.bundle-product-price {
    color: #DA6E4B;
    font-weight: 500;
}

.bundle-product-price .price-free {
    color: #DA6E4B;
    font-weight: bold;
    font-size: 1.1em;
}

.bundle-product-price .price-normal {
    color: #DA6E4B;
}

.bundle-product-description {
    margin: 10px 0 0 35px;
    font-size: 0.9em;
    color: #666;
}

.bundle-total-info {
    padding: 15px;
    background: #fff;
    border: 2px solid #DA6E4B;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bundle-total-price {
    font-size: 1.2em;
    color: #DA6E4B;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .bundle-product-info {
        flex-direction: column;
    }

    .bundle-total-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}