/**
 * Bundle Product Styles
 * 
 * @package Geovonic\MyAccount
 */

/* Bundle quantity styling */
.bundle-quantity {
    font-weight: bold;
    color: #0073aa;
    background: #f0f8ff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #0073aa;
    font-size: 0.9em;
}

/* Bundle item styling in cart */
.bundle-item {
    color: #666;
    font-style: italic;
    font-size: 0.85em;
    margin-top: 5px;
    display: block;
}

/* Bundle includes styling */
.bundle-includes {
    color: #0073aa;
    font-weight: 500;
    font-size: 0.85em;
    margin-top: 5px;
    display: block;
}

/* Bundle products list styling */
.bundle-products-list {
    margin-top: 10px;
    font-size: 0.85em;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #0073aa;
}

.bundle-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}

.bundle-product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.bundle-product-name {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.bundle-product-quantity {
    font-weight: bold;
    color: #0073aa;
    background: #e6f3ff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

/* Responsive design */
@media (max-width: 768px) {
    .bundle-product-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bundle-product-quantity {
        margin-top: 4px;
    }
    
    .bundle-products-list {
        padding: 8px;
    }
} 