/* Simple Bundle Cart Styles - Style existing bundled-items-list */

/* Bundle parent styling */
.bundle-parent-item {
    background: #f8f9fa;
    border-left: 3px solid #0073aa;
}

.bundle-parent-item td {
    background: #f8f9fa;
}

/* Style the existing bundled-items-list */
.bundled-items-list {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    list-style: none;
    margin-left: 0;
}

.bundled-items-list li {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.bundled-items-list li:last-child {
    margin-bottom: 0;
}

.bundled-items-list li:before {
    content: "└";
    position: absolute;
    left: 0;
    color: #0073aa;
    font-weight: bold;
}

.bundled-item-qty {
    font-weight: 500;
    color: #333;
}

.bundled-item-title {
    color: #333;
}

.bundled-item-attributes {
    margin-left: 15px;
    margin-top: 3px;
}

.bundled-item-attributes li {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 2px;
}

.bundled-item-attributes li:before {
    content: "•";
    color: #ccc;
    margin-right: 5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .bundled-items-list {
        padding: 8px;
        margin-top: 8px;
    }
    
    .bundled-items-list li {
        font-size: 0.85em;
        padding-left: 12px;
    }
}

/* Mini cart bundle items */
.bundled-mini-cart-items {
    margin-top: 5px;
    padding: 5px 0;
    border-top: 1px solid #eee;
}

.bundled-mini-item {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 2px;
    padding-left: 10px;
    position: relative;
}

.bundled-mini-item:before {
    content: "└";
    position: absolute;
    left: 0;
    color: #0073aa;
    font-size: 0.9em;
}

.bundled-mini-qty {
    font-weight: 500;
    color: #333;
}

.bundled-mini-name {
    color: #666;
}