.bundle-suggestion {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px dashed #7dd3fc;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
    color: #0369a1;
}

.category-tag {
    background: #0ea5e9;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
}

.bundle-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 15px;
}

.item-pill {
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.plus-sign {
    font-weight: bold;
    color: #0ea5e9;
}

.btn-bundle {
    width: 100%;
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-bundle:hover {
    background: #0284c7;
}